diff --git a/libs/libarchfpga/src/physical_types.h b/libs/libarchfpga/src/physical_types.h index e0fdcfdfe5d..8177fe1abe2 100644 --- a/libs/libarchfpga/src/physical_types.h +++ b/libs/libarchfpga/src/physical_types.h @@ -1293,7 +1293,6 @@ class t_pb_graph_node { int total_pb_pins; /* only valid for top-level */ void* temp_scratch_pad; /* temporary data, useful for keeping track of things when traversing data structure */ - t_cluster_placement_primitive* cluster_placement_primitive; /* pointer to indexing structure useful during packing stage */ int* input_pin_class_size; /* Stores the number of pins that belong to a particular input pin class */ int num_input_pin_class; /* number of input pin classes that this pb_graph_node has */ diff --git a/vpr/src/base/vpr_types.cpp b/vpr/src/base/vpr_types.cpp index 8a802a3a234..ff0755b58b0 100644 --- a/vpr/src/base/vpr_types.cpp +++ b/vpr/src/base/vpr_types.cpp @@ -452,100 +452,3 @@ void t_pb::set_atom_pin_bit_index(const t_pb_graph_pin* gpin, BitIndex atom_pin_ pin_rotations_[gpin] = atom_pin_bit_idx; } -/** - * Free linked lists found in cluster_placement_stats_list - */ -void free_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats_list) { - auto& device_ctx = g_vpr_ctx.device(); - - for (const auto& type : device_ctx.logical_block_types) { - int index = type.index; - cluster_placement_stats_list[index].free_primitives(); - } - delete[] cluster_placement_stats_list; -} - -void t_cluster_placement_stats::move_inflight_to_tried() { - tried.insert(*in_flight.begin()); - in_flight.clear(); -} - -void t_cluster_placement_stats::invalidate_primitive_and_increment_iterator(int pb_type_index, std::unordered_multimap::iterator& it) { - invalid.insert(*it); - valid_primitives[pb_type_index].erase(it++); -} - -void t_cluster_placement_stats::move_primitive_to_inflight(int pb_type_index, std::unordered_multimap::iterator& it) { - in_flight.insert(*it); - valid_primitives[pb_type_index].erase(it); -} - -/** - * @brief Put primitive back on the correct location of valid primitives vector based on the primitive pb type - * - * @note that valid status is not changed because if the primitive is not valid, it will get properly collected later - */ -void t_cluster_placement_stats::insert_primitive_in_valid_primitives(std::pair cluster_placement_primitive) { - int i; - bool success = false; - int null_index = OPEN; - t_cluster_placement_primitive* input_cluster_placement_primitive = cluster_placement_primitive.second; - - for (i = 0; i < num_pb_types && !success; i++) { - if (valid_primitives[i].empty()) { - null_index = i; - continue; - } - t_cluster_placement_primitive* cur_cluster_placement_primitive = valid_primitives[i].begin()->second; - if (input_cluster_placement_primitive->pb_graph_node->pb_type - == cur_cluster_placement_primitive->pb_graph_node->pb_type) { - success = true; - valid_primitives[i].insert(cluster_placement_primitive); - } - } - if (!success) { - VTR_ASSERT(null_index != OPEN); - valid_primitives[null_index].insert(cluster_placement_primitive); - } -} - -void t_cluster_placement_stats::flush_queue(std::unordered_multimap& queue) { - for (auto& it : queue) { - insert_primitive_in_valid_primitives(it); - } - queue.clear(); -} - -void t_cluster_placement_stats::flush_intermediate_queues() { - flush_queue(in_flight); - flush_queue(tried); -} - -void t_cluster_placement_stats::flush_invalid_queue() { - flush_queue(invalid); -} - -bool t_cluster_placement_stats::in_flight_empty() { - return in_flight.empty(); -} - -t_pb_type* t_cluster_placement_stats::in_flight_type() { - return in_flight.begin()->second->pb_graph_node->pb_type; -} - -void t_cluster_placement_stats::free_primitives() { - for (auto& primitive : tried) - delete primitive.second; - - for (auto& primitive : in_flight) - delete primitive.second; - - for (auto& primitive : invalid) - delete primitive.second; - - for (int j = 0; j < num_pb_types; j++) { - for (auto& primitive : valid_primitives[j]) { - delete primitive.second; - } - } -} diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 9900596a20e..604251b08cd 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -430,90 +430,6 @@ struct t_chain_info { t_pack_molecule* first_packed_molecule = nullptr; }; -/** - * @brief Stats keeper for placement information during packing - * - * Contains data structure of placement locations based on status of primitive - */ -class t_cluster_placement_stats { - public: - int num_pb_types; ///> valid_primitives; - - public: - // Moves primitives that are inflight to the tried map - void move_inflight_to_tried(); - - /** - * @brief Move the primitive at (it) to inflight and increment the current iterator. - * - * Because the element at (it) is deleted from valid_primitives, (it) is incremented to keep it valid and pointing at the next element. - * - * @param pb_type_index: is the index of this pb_type in valid_primitives vector - * @param it: is the iterator pointing at the element that needs to be moved to inflight - */ - void move_primitive_to_inflight(int pb_type_index, std::unordered_multimap::iterator& it); - - /** - * @brief Move the primitive at (it) to invalid and increment the current iterator - * - * Because the element at (it) is deleted from valid_primitives, (it) is incremented to keep it valid and pointing at the next element. - * - * @param pb_type_index: is the index of this pb_type in valid_primitives vector - * @param it: is the iterator pointing at the element that needs to be moved to invalid - */ - void invalidate_primitive_and_increment_iterator(int pb_type_index, std::unordered_multimap::iterator& it); - - /** - * @brief Add a primitive in its correct location in valid_primitives vector based on its pb_type - * - * @param cluster_placement_primitive: a pair of the cluster_placement_primtive and its corresponding index(for reference in pb_graph_node) - */ - void insert_primitive_in_valid_primitives(std::pair cluster_placement_primitive); - - /** - * @brief Move all the primitives from (in_flight and tried) maps to valid primitives and clear (in_flight and tried) - */ - void flush_intermediate_queues(); - - /** - * @brief Move all the primitives from invalid to valid_primitives and clear the invalid map - */ - void flush_invalid_queue(); - - /** - * @brief Return true if the in_flight map is empty (no primitive is in_flight currently) - */ - bool in_flight_empty(); - - /** - * @brief Return the type of the first element of the primitives currently being considered - */ - t_pb_type* in_flight_type(); - - /** - * @brief free the dynamically allocated memory for primitives - */ - void free_primitives(); - - private: - std::unordered_multimap in_flight; /// tried; /// invalid; ///& queue); -}; - /****************************************************************** * Timing data types *******************************************************************/ @@ -1841,11 +1757,6 @@ typedef vtr::vector>> t_clb_op typedef std::vector> t_arch_switch_fanin; -/** - * @brief Free the linked lists to placement locations based on status of primitive inside placement stats data structure. - */ -void free_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats); - struct pair_hash { std::size_t operator()(const std::pair& p) const noexcept { return std::hash()(p.first) ^ (std::hash()(p.second) << 1); diff --git a/vpr/src/pack/cluster.cpp b/vpr/src/pack/cluster.cpp index 607e4b530f3..93683858f3f 100644 --- a/vpr/src/pack/cluster.cpp +++ b/vpr/src/pack/cluster.cpp @@ -116,7 +116,6 @@ std::map do_clustering(const t_packer_opts& pa enum e_block_pack_status block_pack_status; - t_cluster_placement_stats* cur_cluster_placement_stats_ptr = nullptr; t_pack_molecule *istart, *next_molecule, *prev_molecule; auto& atom_ctx = g_vpr_ctx.atom(); @@ -275,7 +274,6 @@ std::map do_clustering(const t_packer_opts& pa /*it doesn't make sense to do a timing analysis here since there* *is only one atom block clustered it would not change anything */ } - cur_cluster_placement_stats_ptr = cluster_legalizer.get_cluster_placement_stats(legalization_cluster_id); cluster_stats.num_unrelated_clustering_attempts = 0; next_molecule = get_molecule_for_cluster(cluster_legalizer.get_cluster_pb(legalization_cluster_id), attraction_groups, @@ -284,7 +282,6 @@ std::map do_clustering(const t_packer_opts& pa packer_opts.transitive_fanout_threshold, packer_opts.feasible_block_array_size, &cluster_stats.num_unrelated_clustering_attempts, - cur_cluster_placement_stats_ptr, prepacker, cluster_legalizer, clb_inter_blk_nets, @@ -317,7 +314,6 @@ std::map do_clustering(const t_packer_opts& pa try_fill_cluster(cluster_legalizer, prepacker, packer_opts, - cur_cluster_placement_stats_ptr, prev_molecule, next_molecule, num_repeated_molecules, diff --git a/vpr/src/pack/cluster_legalizer.cpp b/vpr/src/pack/cluster_legalizer.cpp index 51d79744672..a37e541ae7a 100644 --- a/vpr/src/pack/cluster_legalizer.cpp +++ b/vpr/src/pack/cluster_legalizer.cpp @@ -1171,8 +1171,7 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul // molecules to be placed in this cluster. To avoid possibly creating cluster level // blocks that have incompatible placement constraints or form very long placement // macros that limit placement flexibility. - t_cluster_placement_stats* cluster_placement_stats_ptr = &(cluster_placement_stats_[cluster.type->index]); - if (cluster_placement_stats_ptr->has_long_chain && molecule->is_chain() && molecule->chain_info->is_long_chain) { + if (cluster.placement_stats->has_long_chain && molecule->is_chain() && molecule->chain_info->is_long_chain) { VTR_LOGV(log_verbosity_ > 4, "\t\t\tFAILED Placement Feasibility Filter: Only one long chain per cluster is allowed\n"); //Record the failure of this molecule in the current pb stats record_molecule_failure(molecule, cluster.pb); @@ -1230,7 +1229,7 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul std::vector primitives_list(max_molecule_size_, nullptr); e_block_pack_status block_pack_status = e_block_pack_status::BLK_STATUS_UNDEFINED; while (block_pack_status != e_block_pack_status::BLK_PASSED) { - if (!get_next_primitive_list(cluster_placement_stats_ptr, + if (!get_next_primitive_list(cluster.placement_stats, molecule, primitives_list.data())) { VTR_LOGV(log_verbosity_ > 3, "\t\tFAILED No candidate primitives available\n"); @@ -1257,7 +1256,7 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul max_cluster_size_, cluster_id, atom_cluster_, - cluster_placement_stats_ptr, + cluster.placement_stats, molecule, cluster.router_data, log_verbosity_, @@ -1341,7 +1340,7 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul // molecules will be packed to the same chain id and can reach each other using // the chain direct links between clusters if (molecule->chain_info->is_long_chain) { - cluster_placement_stats_ptr->has_long_chain = true; + cluster.placement_stats->has_long_chain = true; if (molecule->chain_info->chain_id == -1) { update_molecule_chain_info(molecule, primitives_list[molecule->root]); } @@ -1374,7 +1373,7 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul // confusing. cur_molecule->valid = false; - commit_primitive(cluster_placement_stats_ptr, primitives_list[i]); + commit_primitive(cluster.placement_stats, primitives_list[i]); atom_cluster_[atom_blk_id] = cluster_id; @@ -1419,6 +1418,11 @@ e_block_pack_status ClusterLegalizer::try_pack_molecule(t_pack_molecule* molecul VTR_LOGV(log_verbosity_ > 3, "\t\tPASSED pack molecule\n"); } } + + // Reset the cluster placement stats after packing a molecule. + // TODO: Not sure if this has to go here, but it makes sense to do it. + reset_tried_but_unused_cluster_placements(cluster.placement_stats); + return block_pack_status; } @@ -1434,8 +1438,7 @@ ClusterLegalizer::start_new_cluster(t_pack_molecule* molecule, VTR_ASSERT_SAFE(molecule_cluster_.find(molecule) == molecule_cluster_.end() || !molecule_cluster_[molecule].is_valid()); // Safety asserts to ensure that the API was initialized properly. - VTR_ASSERT_DEBUG(cluster_placement_stats_ != nullptr && - lb_type_rr_graphs_ != nullptr); + VTR_ASSERT_DEBUG(lb_type_rr_graphs_ != nullptr); const AtomNetlist& atom_nlist = g_vpr_ctx.atom().nlist; @@ -1450,10 +1453,8 @@ ClusterLegalizer::start_new_cluster(t_pack_molecule* molecule, t_lb_router_data* router_data = alloc_and_load_router_data(&lb_type_rr_graphs_[cluster_type->index], cluster_type); - // Reset the cluster placement stats - t_cluster_placement_stats* cluster_placement_stats_ptr = &(cluster_placement_stats_[cluster_type->index]); - reset_cluster_placement_stats(cluster_placement_stats_ptr); - set_mode_cluster_placement_stats(cluster_pb->pb_graph_node, cluster_pb->mode); + // Allocate and load the cluster's placement stats + t_cluster_placement_stats* cluster_placement_stats = alloc_and_load_cluster_placement_stats(cluster_type, cluster_mode); // Create the new cluster LegalizationCluster new_cluster; @@ -1462,6 +1463,7 @@ ClusterLegalizer::start_new_cluster(t_pack_molecule* molecule, new_cluster.pr = PartitionRegion(); new_cluster.noc_grp_id = NocGroupId::INVALID(); new_cluster.type = cluster_type; + new_cluster.placement_stats = cluster_placement_stats; // Try to pack the molecule into the new_cluster. // When starting a new cluster, we set the external pin utilization to full @@ -1491,6 +1493,7 @@ ClusterLegalizer::start_new_cluster(t_pack_molecule* molecule, free_pb(new_cluster.pb); delete new_cluster.pb; free_router_data(new_cluster.router_data); + free_cluster_placement_stats(new_cluster.placement_stats); new_cluster_id = LegalizationClusterId::INVALID(); } @@ -1506,12 +1509,12 @@ e_block_pack_status ClusterLegalizer::add_mol_to_cluster(t_pack_molecule* molecu VTR_ASSERT(molecule_cluster_.find(molecule) == molecule_cluster_.end() || !molecule_cluster_[molecule].is_valid()); // Safety asserts to ensure that the API was initialized properly. - VTR_ASSERT_DEBUG(cluster_placement_stats_ != nullptr && - lb_type_rr_graphs_ != nullptr); + VTR_ASSERT_DEBUG(lb_type_rr_graphs_ != nullptr); // Get the cluster. LegalizationCluster& cluster = legalization_clusters_[cluster_id]; - VTR_ASSERT(cluster.router_data != nullptr && "Cannot add molecule to cleaned cluster!"); + VTR_ASSERT(cluster.router_data != nullptr && cluster.placement_stats != nullptr + && "Cannot add molecule to cleaned cluster!"); // Set the target_external_pin_util. t_ext_pin_util target_ext_pin_util = target_external_pin_util_.get_pin_util(cluster.type->name); // Try to pack the molecule into the cluster. @@ -1561,6 +1564,8 @@ void ClusterLegalizer::destroy_cluster(LegalizationClusterId cluster_id) { free_router_data(cluster.router_data); cluster.router_data = nullptr; cluster.pr = PartitionRegion(); + free_cluster_placement_stats(cluster.placement_stats); + cluster.placement_stats = nullptr; // Mark the cluster as invalid. legalization_cluster_ids_[cluster_id] = LegalizationClusterId::INVALID(); @@ -1597,7 +1602,8 @@ void ClusterLegalizer::clean_cluster(LegalizationClusterId cluster_id) { VTR_ASSERT_SAFE(cluster_id.is_valid() && (size_t)cluster_id < legalization_clusters_.size()); // Get the cluster. LegalizationCluster& cluster = legalization_clusters_[cluster_id]; - VTR_ASSERT(cluster.router_data != nullptr && "Should not clean an already cleaned cluster!"); + VTR_ASSERT(cluster.router_data != nullptr && cluster.placement_stats != nullptr + && "Should not clean an already cleaned cluster!"); // Free the pb stats. free_pb_stats_recursive(cluster.pb); // Load the pb_route so we can free the cluster router data. @@ -1608,6 +1614,9 @@ void ClusterLegalizer::clean_cluster(LegalizationClusterId cluster_id) { // Free the router data. free_router_data(cluster.router_data); cluster.router_data = nullptr; + // Free the cluster placement stats. + free_cluster_placement_stats(cluster.placement_stats); + cluster.placement_stats = nullptr; } // TODO: This is fine for the current implementation of the legalizer. But if @@ -1638,22 +1647,11 @@ ClusterLegalizer::ClusterLegalizer(const AtomNetlist& atom_netlist, VTR_ASSERT_SAFE(lb_type_rr_graphs != nullptr); // Get the target external pin utilization - // NOTE: This has to be initialized first due to the fact that VPR_FATA_ERROR - // may be called within the constructor of t_ext_pin_util_targets. If - // this occurs, the destructor may or may not be called (honestly I have - // no idea why it does or does not, but it changes based on how VPR - // is compiled...). If the destructor is not called, it is important - // that nothing was allocated before this line is called. If the - // destructor is called, we just need to be careful of double freeing - // (check if the allocated member variables are nullptr). - // FIXME: This can be fixed by removing all allocations from the constructor - // (see cluster_placement_stats_). + // NOTE: Be careful with this constructor, it may throw a VPR_FATAL_ERROR. target_external_pin_util_ = t_ext_pin_util_targets(target_external_pin_util_str); // Resize the atom_cluster lookup to make the accesses much cheaper. atom_cluster_.resize(atom_netlist.blocks().size(), LegalizationClusterId::INVALID()); - // Allocate the cluster_placement_stats - cluster_placement_stats_ = alloc_and_load_cluster_placement_stats(); // Pre-compute the max size of any molecule. max_molecule_size_ = prepacker.get_max_molecule_size(); // Calculate the max cluster size @@ -1687,9 +1685,6 @@ void ClusterLegalizer::reset() { compress(); // Reset the molecule_cluster map molecule_cluster_.clear(); - // Reset the cluster placement stats. - free_cluster_placement_stats(cluster_placement_stats_); - cluster_placement_stats_ = alloc_and_load_cluster_placement_stats(); } void ClusterLegalizer::verify() { @@ -1760,6 +1755,39 @@ void ClusterLegalizer::verify() { } } +bool ClusterLegalizer::is_molecule_compatible(t_pack_molecule* molecule, + LegalizationClusterId cluster_id) const { + VTR_ASSERT_SAFE(molecule != nullptr); + VTR_ASSERT_SAFE(cluster_id.is_valid() && (size_t)cluster_id < legalization_clusters_.size()); + // Go through each atom in the molecule and check if there exists a free + // primitive for that atom block. + // TODO: This should probably also check if there are enough free primitives + // to support the given molecule. For example, a molecule of two FFs, + // but the cluster only has one free FF. This was something that Jason + // Luu was debating. Checking if placement exists for full molecule + // would be more robust, but checking individual atoms is faster. + const LegalizationCluster& cluster = legalization_clusters_[cluster_id]; + + for (AtomBlockId atom_blk_id : molecule->atom_block_ids) { + // FIXME: Why is it possible that molecules contain invalid block IDs? + // This should be fixed! + if (!atom_blk_id.is_valid()) + continue; + // FIXME: This assert does not make sense. Can still check this even + // if the atom was clustered. + VTR_ASSERT(!is_atom_clustered(atom_blk_id)); + if (!exists_free_primitive_for_atom_block(cluster.placement_stats, + atom_blk_id)) { + return false; + } + } + // If every atom in the molecule has a free primitive it could theoretically + // be placed in, then it is compatible. + // TODO: Maybe add some more quick checks to save time, such as PR or NoC + // groups. + return true; +} + void ClusterLegalizer::finalize() { for (LegalizationClusterId cluster_id : legalization_cluster_ids_) { if (!cluster_id.is_valid()) @@ -1779,8 +1807,5 @@ ClusterLegalizer::~ClusterLegalizer() { continue; destroy_cluster(cluster_id); } - // Free the cluster_placement_stats - if (cluster_placement_stats_ != nullptr) - free_cluster_placement_stats(cluster_placement_stats_); } diff --git a/vpr/src/pack/cluster_legalizer.h b/vpr/src/pack/cluster_legalizer.h index e3aee27be57..ddf4288a220 100644 --- a/vpr/src/pack/cluster_legalizer.h +++ b/vpr/src/pack/cluster_legalizer.h @@ -24,6 +24,7 @@ #include "vtr_vector_map.h" class Prepacker; +class t_cluster_placement_stats; class t_pb_graph_node; struct t_lb_router_data; @@ -91,6 +92,11 @@ struct LegalizationCluster { /// Contains information about the atoms in the cluster and how they /// can be routed within. t_lb_router_data* router_data; + + /// @brief The stats on where the different atoms in the cluster are currently + /// placed in the cluster. This is used when the legalizer decides + /// what sites it should try to put a new molecule into. + t_cluster_placement_stats* placement_stats; }; /* @@ -377,6 +383,21 @@ class ClusterLegalizer { */ void reset(); + /* + * @brief Checks if the given molecule is compatible with the given cluster. + * + * A molecule is compatible with a cluster if there exists a free primitive + * (a primitive that is not currently occupied by other atoms) of the correct + * type to accomodate each type of atom in the molecule. + * + * This is a quick check to see if a molecule can go in the given cluster. + * "This is a necessary but not sufficient test for a molecule to be able to + * go in a cluster. By calling it you can save runtime for impossible cases + * vs. calling the full checks. + */ + bool is_molecule_compatible(t_pack_molecule* molecule, + LegalizationClusterId cluster_id) const; + /// @brief Gets the top-level pb of the given cluster. inline t_pb* get_cluster_pb(LegalizationClusterId cluster_id) const { VTR_ASSERT_SAFE(cluster_id.is_valid() && (size_t)cluster_id < legalization_clusters_.size()); @@ -405,20 +426,6 @@ class ClusterLegalizer { return atom_cluster_[blk_id]; } - /// @brief Gets the cluster placement stats of the given cluster. - /// - /// The cluster placement stats are statistics used to monitor which atoms - /// have been physically clustered into the pb (more specifically what site - /// they will go). This can be used externally to the legalizer to detect - /// if an atom could physically go into a cluster (exists_free_primitive_for_atom_block). - /// - /// TODO: Releasing the whole stats can be dangerous. Ideally there should - /// just be a method to see if an atom could physically go in a cluster. - inline t_cluster_placement_stats* get_cluster_placement_stats(LegalizationClusterId cluster_id) const { - VTR_ASSERT_SAFE(cluster_id.is_valid() && (size_t)cluster_id < legalization_clusters_.size()); - return &(cluster_placement_stats_[get_cluster_type(cluster_id)->index]); - } - /// @brief Returns true if the given atom block has been packed into a /// cluster, false otherwise. inline bool is_atom_clustered(AtomBlockId blk_id) const { @@ -495,14 +502,6 @@ class ClusterLegalizer { /// NoC traffic. vtr::vector atom_noc_grp_id_; - /// @brief Stats keeper for placement information during packing/clustering. - /// TODO: This should be a vector. - /// FIXME: This keeps the stats for each cluster type. This is fine within - /// the clusterer, however it yields a limitation where two clusters - /// of the same type cannot be constructed at the same time. This - /// should stored per cluster. - t_cluster_placement_stats* cluster_placement_stats_ = nullptr; - /// @brief The maximum fractional utilization of cluster external /// input/output pins during packing (between 0 and 1). t_ext_pin_util_targets target_external_pin_util_; diff --git a/vpr/src/pack/cluster_placement.cpp b/vpr/src/pack/cluster_placement.cpp index 0c82da042cc..da5c169aa9e 100644 --- a/vpr/src/pack/cluster_placement.cpp +++ b/vpr/src/pack/cluster_placement.cpp @@ -17,30 +17,42 @@ * November 17, 2022 */ -#include "vtr_assert.h" -#include "vtr_memory.h" - +#include "cluster_placement.h" +#include "hash.h" +#include "physical_types.h" #include "vpr_types.h" -#include "globals.h" #include "vpr_utils.h" -#include "hash.h" -#include "cluster_placement.h" +#include "vtr_assert.h" /****************************************/ /*Local Function Declaration */ /****************************************/ + static void load_cluster_placement_stats_for_pb_graph_node(t_cluster_placement_stats* cluster_placement_stats, t_pb_graph_node* pb_graph_node); -static void update_primitive_cost_or_status(const t_pb_graph_node* pb_graph_node, + +static void reset_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats); + +static void set_mode_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats, + const t_pb_graph_node* pb_graph_node, + int mode); + +static void update_primitive_cost_or_status(t_cluster_placement_stats* cluster_placement_stats, + const t_pb_graph_node* pb_graph_node, float incremental_cost, bool valid); -static float try_place_molecule(const t_pack_molecule* molecule, + +static float try_place_molecule(t_cluster_placement_stats* cluster_placement_stats, + const t_pack_molecule* molecule, t_pb_graph_node* root, t_pb_graph_node** primitives_list); -static bool expand_forced_pack_molecule_placement(const t_pack_molecule* molecule, + +static bool expand_forced_pack_molecule_placement(t_cluster_placement_stats* cluster_placement_stats, + const t_pack_molecule* molecule, const t_pack_pattern_block* pack_pattern_block, t_pb_graph_node** primitives_list, float* cost); + static t_pb_graph_pin* expand_pack_molecule_pin_edge(int pattern_id, const t_pb_graph_pin* cur_pin, bool forward); @@ -49,47 +61,117 @@ static t_pb_graph_pin* expand_pack_molecule_pin_edge(int pattern_id, /*Function Definitions */ /****************************************/ +void t_cluster_placement_stats::move_inflight_to_tried() { + tried.insert(*in_flight.begin()); + in_flight.clear(); +} + +void t_cluster_placement_stats::invalidate_primitive_and_increment_iterator(int pb_type_index, std::unordered_multimap::iterator& it) { + invalid.insert(*it); + valid_primitives[pb_type_index].erase(it++); +} + +void t_cluster_placement_stats::move_primitive_to_inflight(int pb_type_index, std::unordered_multimap::iterator& it) { + in_flight.insert(*it); + valid_primitives[pb_type_index].erase(it); +} + /** - * [0..num_pb_types-1] array of cluster placement stats, one for each device_ctx.block_types + * @brief Put primitive back on the correct location of valid primitives vector based on the primitive pb type + * + * @note that valid status is not changed because if the primitive is not valid, it will get properly collected later */ -t_cluster_placement_stats* alloc_and_load_cluster_placement_stats() { - t_cluster_placement_stats* cluster_placement_stats_list; +void t_cluster_placement_stats::insert_primitive_in_valid_primitives(std::pair cluster_placement_primitive) { + int i; + bool success = false; + int null_index = OPEN; + t_cluster_placement_primitive* input_cluster_placement_primitive = cluster_placement_primitive.second; + + for (i = 0; i < num_pb_types && !success; i++) { + if (valid_primitives[i].empty()) { + null_index = i; + continue; + } + t_cluster_placement_primitive* cur_cluster_placement_primitive = valid_primitives[i].begin()->second; + if (input_cluster_placement_primitive->pb_graph_node->pb_type + == cur_cluster_placement_primitive->pb_graph_node->pb_type) { + success = true; + valid_primitives[i].insert(cluster_placement_primitive); + } + } + if (!success) { + VTR_ASSERT(null_index != OPEN); + valid_primitives[null_index].insert(cluster_placement_primitive); + } +} + +void t_cluster_placement_stats::flush_queue(std::unordered_multimap& queue) { + for (auto& it : queue) { + insert_primitive_in_valid_primitives(it); + } + queue.clear(); +} + +void t_cluster_placement_stats::flush_intermediate_queues() { + flush_queue(in_flight); + flush_queue(tried); +} + +void t_cluster_placement_stats::flush_invalid_queue() { + flush_queue(invalid); +} + +bool t_cluster_placement_stats::in_flight_empty() { + return in_flight.empty(); +} + +t_pb_type* t_cluster_placement_stats::in_flight_type() { + return in_flight.begin()->second->pb_graph_node->pb_type; +} + +void t_cluster_placement_stats::free_primitives() { + for (auto& primitive : tried) + delete primitive.second; - auto& device_ctx = g_vpr_ctx.device(); + for (auto& primitive : in_flight) + delete primitive.second; - // Allocate array of cluster placement stats, one for each device_ctx.block_types - cluster_placement_stats_list = new t_cluster_placement_stats[device_ctx.logical_block_types.size()]; + for (auto& primitive : invalid) + delete primitive.second; - // For each block type, initialize the cluster_placement_stats and load it with the primitives in this type - for (const auto& type : device_ctx.logical_block_types) { - cluster_placement_stats_list[type.index] = t_cluster_placement_stats(); - if (!is_empty_type(&type)) { - cluster_placement_stats_list[type.index].curr_molecule = nullptr; - load_cluster_placement_stats_for_pb_graph_node(&cluster_placement_stats_list[type.index], - type.pb_graph_head); + for (int j = 0; j < num_pb_types; j++) { + for (auto& primitive : valid_primitives[j]) { + delete primitive.second; } } - return cluster_placement_stats_list; } -/** - * get next list of primitives for list of atom blocks - * - * primitives is the list of ptrs to primitives that matches with the list of atom block, assumes memory is preallocated - * - if this is a new block, requeue tried primitives and return a in-flight primitive list to try - * - if this is an old block, put root primitive to tried queue, requeue rest of primitives. try another set of primitives - * - * return true if can find next primitive, false otherwise - * - * cluster_placement_stats - ptr to the current cluster_placement_stats of open complex block - * molecule - molecule to pack into open complex block - * primitives_list - a list of primitives indexed to match atom_block_ids of molecule. - * Expects an allocated array of primitives ptrs as inputs. - * This function loads the array with the lowest cost primitives that implement molecule - * force_site - optional user-specified primitive site on which to place the molecule; if a force_site - * argument is provided, the function either selects the specified site or reports failure. - * If the force_site argument is set to its default value (-1), vpr selects an available site. - */ +t_cluster_placement_stats* alloc_and_load_cluster_placement_stats(t_logical_block_type_ptr cluster_type, + int cluster_mode) { + t_cluster_placement_stats* cluster_placement_stats = new t_cluster_placement_stats; + *cluster_placement_stats = t_cluster_placement_stats(); + // TODO: This initialization may be able to be made more efficient. + // The reset and setting the mode can be done while loading the placement + // stats. + if (!is_empty_type(cluster_type)) { + cluster_placement_stats->curr_molecule = nullptr; + load_cluster_placement_stats_for_pb_graph_node(cluster_placement_stats, + cluster_type->pb_graph_head); + } + reset_cluster_placement_stats(cluster_placement_stats); + set_mode_cluster_placement_stats(cluster_placement_stats, + cluster_type->pb_graph_head, + cluster_mode); + return cluster_placement_stats; +} + +void free_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats) { + if (cluster_placement_stats != nullptr) { + cluster_placement_stats->free_primitives(); + delete cluster_placement_stats; + } +} + bool get_next_primitive_list(t_cluster_placement_stats* cluster_placement_stats, const t_pack_molecule* molecule, t_pb_graph_node** primitives_list, @@ -150,7 +232,10 @@ bool get_next_primitive_list(t_cluster_placement_stats* cluster_placement_stats, break; } if (force_site == it->second->pb_graph_node->flat_site_index) { - cost = try_place_molecule(molecule, it->second->pb_graph_node, primitives_list); + cost = try_place_molecule(cluster_placement_stats, + molecule, + it->second->pb_graph_node, + primitives_list); if (cost < HUGE_POSITIVE_FLOAT) { cluster_placement_stats->move_primitive_to_inflight(i, it); return true; @@ -164,7 +249,10 @@ bool get_next_primitive_list(t_cluster_placement_stats* cluster_placement_stats, } /* try place molecule at root location cur */ - cost = try_place_molecule(molecule, it->second->pb_graph_node, primitives_list); + cost = try_place_molecule(cluster_placement_stats, + molecule, + it->second->pb_graph_node, + primitives_list); // if the cost is lower than the best, or is equal to the best but this // primitive is more available in the cluster mark it as the best primitive @@ -192,7 +280,10 @@ bool get_next_primitive_list(t_cluster_placement_stats* cluster_placement_stats, } } else { /* populate primitive list with best */ - cost = try_place_molecule(molecule, best->second->pb_graph_node, primitives_list); + cost = try_place_molecule(cluster_placement_stats, + molecule, + best->second->pb_graph_node, + primitives_list); VTR_ASSERT(cost == lowest_cost); /* take out best node and put it in flight */ @@ -208,7 +299,7 @@ bool get_next_primitive_list(t_cluster_placement_stats* cluster_placement_stats, /** * Resets one cluster placement stats by clearing incremental costs and returning all primitives to valid queue */ -void reset_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats) { +static void reset_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats) { int i; /* Requeue primitives */ @@ -240,7 +331,7 @@ static void load_cluster_placement_stats_for_pb_graph_node(t_cluster_placement_s placement_primitive = new t_cluster_placement_primitive(); placement_primitive->pb_graph_node = pb_graph_node; placement_primitive->valid = true; - pb_graph_node->cluster_placement_primitive = placement_primitive; + cluster_placement_stats->set_pb_graph_node_placement_primitive(pb_graph_node, placement_primitive); placement_primitive->base_cost = compute_primitive_base_cost(pb_graph_node); bool success = false; @@ -284,13 +375,6 @@ static void load_cluster_placement_stats_for_pb_graph_node(t_cluster_placement_s } } -/** - * Commit primitive, invalidate primitives blocked by mode assignment and update costs for primitives in same cluster as current - * Costing is done to try to pack blocks closer to existing primitives - * actual value based on closest common ancestor to committed placement, the farther the ancestor, the less reduction in cost there is - * Side effects: All cluster_placement_primitives may be invalidated/costed in this algorithm - * Al intermediate queues are requeued - */ void commit_primitive(t_cluster_placement_stats* cluster_placement_stats, const t_pb_graph_node* primitive) { t_pb_graph_node *pb_graph_node, *skip; @@ -303,7 +387,7 @@ void commit_primitive(t_cluster_placement_stats* cluster_placement_stats, cluster_placement_stats->flush_intermediate_queues(); /* commit primitive as used, invalidate it */ - cur = primitive->cluster_placement_primitive; + cur = cluster_placement_stats->get_pb_graph_node_placement_primitive(primitive); VTR_ASSERT(cur->valid == true); cur->valid = false; @@ -319,7 +403,8 @@ void commit_primitive(t_cluster_placement_stats* cluster_placement_stats, for (j = 0; j < pb_graph_node->pb_type->modes[i].num_pb_type_children; j++) { for (k = 0; k < pb_graph_node->pb_type->modes[i].pb_type_children[j].num_pb; k++) { if (&pb_graph_node->child_pb_graph_nodes[i][j][k] != skip) { - update_primitive_cost_or_status(&pb_graph_node->child_pb_graph_nodes[i][j][k], + update_primitive_cost_or_status(cluster_placement_stats, + &pb_graph_node->child_pb_graph_nodes[i][j][k], incr_cost, (bool)(i == valid_mode)); } } @@ -332,13 +417,18 @@ void commit_primitive(t_cluster_placement_stats* cluster_placement_stats, /** * Set mode of cluster */ -void set_mode_cluster_placement_stats(const t_pb_graph_node* pb_graph_node, int mode) { +static void set_mode_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats, + const t_pb_graph_node* pb_graph_node, + int mode) { int i, j, k; for (i = 0; i < pb_graph_node->pb_type->num_modes; i++) { if (i != mode) { for (j = 0; j < pb_graph_node->pb_type->modes[i].num_pb_type_children; j++) { for (k = 0; k < pb_graph_node->pb_type->modes[i].pb_type_children[j].num_pb; k++) { - update_primitive_cost_or_status(&pb_graph_node->child_pb_graph_nodes[i][j][k], 0, false); + update_primitive_cost_or_status(cluster_placement_stats, + &pb_graph_node->child_pb_graph_nodes[i][j][k], + 0, + false); } } } @@ -350,14 +440,15 @@ void set_mode_cluster_placement_stats(const t_pb_graph_node* pb_graph_node, int * For modes invalidated by pb_graph_node, invalidate primitive * int distance is the distance of current pb_graph_node from original */ -static void update_primitive_cost_or_status(const t_pb_graph_node* pb_graph_node, +static void update_primitive_cost_or_status(t_cluster_placement_stats* cluster_placement_stats, + const t_pb_graph_node* pb_graph_node, const float incremental_cost, const bool valid) { int i, j, k; t_cluster_placement_primitive* placement_primitive; if (pb_graph_node->is_primitive()) { /* is primitive */ - placement_primitive = (t_cluster_placement_primitive*)pb_graph_node->cluster_placement_primitive; + placement_primitive = cluster_placement_stats->get_pb_graph_node_placement_primitive(pb_graph_node); if (valid) { placement_primitive->incremental_cost += incremental_cost; } else { @@ -367,7 +458,8 @@ static void update_primitive_cost_or_status(const t_pb_graph_node* pb_graph_node for (i = 0; i < pb_graph_node->pb_type->num_modes; i++) { for (j = 0; j < pb_graph_node->pb_type->modes[i].num_pb_type_children; j++) { for (k = 0; k < pb_graph_node->pb_type->modes[i].pb_type_children[j].num_pb; k++) { - update_primitive_cost_or_status(&pb_graph_node->child_pb_graph_nodes[i][j][k], + update_primitive_cost_or_status(cluster_placement_stats, + &pb_graph_node->child_pb_graph_nodes[i][j][k], incremental_cost, valid); } } @@ -378,7 +470,8 @@ static void update_primitive_cost_or_status(const t_pb_graph_node* pb_graph_node /** * Try place molecule at root location, populate primitives list with locations of placement if successful */ -static float try_place_molecule(const t_pack_molecule* molecule, +static float try_place_molecule(t_cluster_placement_stats* cluster_placement_stats, + const t_pack_molecule* molecule, t_pb_graph_node* root, t_pb_graph_node** primitives_list) { int list_size, i; @@ -387,16 +480,19 @@ static float try_place_molecule(const t_pack_molecule* molecule, if (primitive_type_feasible(molecule->atom_block_ids[molecule->root], root->pb_type)) { - if (root->cluster_placement_primitive->valid) { + t_cluster_placement_primitive* root_placement_primitive = cluster_placement_stats->get_pb_graph_node_placement_primitive(root); + if (root_placement_primitive->valid) { for (i = 0; i < list_size; i++) { primitives_list[i] = nullptr; } - cost = root->cluster_placement_primitive->base_cost - + root->cluster_placement_primitive->incremental_cost; + cost = root_placement_primitive->base_cost + + root_placement_primitive->incremental_cost; primitives_list[molecule->root] = root; if (molecule->type == MOLECULE_FORCED_PACK) { - if (!expand_forced_pack_molecule_placement(molecule, - molecule->pack_pattern->root_block, primitives_list, + if (!expand_forced_pack_molecule_placement(cluster_placement_stats, + molecule, + molecule->pack_pattern->root_block, + primitives_list, &cost)) { return HUGE_POSITIVE_FLOAT; } @@ -420,7 +516,8 @@ static float try_place_molecule(const t_pack_molecule* molecule, * Expand molecule at pb_graph_node * Assumes molecule and pack pattern connections have fan-out 1 */ -static bool expand_forced_pack_molecule_placement(const t_pack_molecule* molecule, +static bool expand_forced_pack_molecule_placement(t_cluster_placement_stats* cluster_placement_stats, + const t_pack_molecule* molecule, const t_pack_pattern_block* pack_pattern_block, t_pb_graph_node** primitives_list, float* cost) { @@ -467,10 +564,11 @@ static bool expand_forced_pack_molecule_placement(const t_pack_molecule* molecul next_primitive = next_pin->parent_node; /* Check for legality of placement, if legal, expand from legal placement, if not, return false */ if (molecule->atom_block_ids[next_block->block_id] && primitives_list[next_block->block_id] == nullptr) { - if (next_primitive->cluster_placement_primitive->valid && primitive_type_feasible(molecule->atom_block_ids[next_block->block_id], next_primitive->pb_type)) { + t_cluster_placement_primitive* next_placement_primitive = cluster_placement_stats->get_pb_graph_node_placement_primitive(next_primitive); + if (next_placement_primitive->valid && primitive_type_feasible(molecule->atom_block_ids[next_block->block_id], next_primitive->pb_type)) { primitives_list[next_block->block_id] = next_primitive; - *cost += next_primitive->cluster_placement_primitive->base_cost + next_primitive->cluster_placement_primitive->incremental_cost; - if (!expand_forced_pack_molecule_placement(molecule, next_block, primitives_list, cost)) { + *cost += next_placement_primitive->base_cost + next_placement_primitive->incremental_cost; + if (!expand_forced_pack_molecule_placement(cluster_placement_stats, molecule, next_block, primitives_list, cost)) { return false; } } else { diff --git a/vpr/src/pack/cluster_placement.h b/vpr/src/pack/cluster_placement.h index 611593bcfa5..083fd17df04 100644 --- a/vpr/src/pack/cluster_placement.h +++ b/vpr/src/pack/cluster_placement.h @@ -5,23 +5,182 @@ #ifndef CLUSTER_PLACEMENT_H #define CLUSTER_PLACEMENT_H -#include "arch_types.h" + +#include +#include +#include "physical_types.h" #include "vpr_types.h" -t_cluster_placement_stats* alloc_and_load_cluster_placement_stats(); +/** + * @brief Stats keeper for placement within the cluster during packing + * + * Contains data structure of placement locations based on status of primitive + */ +class t_cluster_placement_stats { + public: + int num_pb_types; ///> valid_primitives; + + public: + // Moves primitives that are inflight to the tried map + void move_inflight_to_tried(); + + /** + * @brief Move the primitive at (it) to inflight and increment the current iterator. + * + * Because the element at (it) is deleted from valid_primitives, (it) is incremented to keep it valid and pointing at the next element. + * + * @param pb_type_index: is the index of this pb_type in valid_primitives vector + * @param it: is the iterator pointing at the element that needs to be moved to inflight + */ + void move_primitive_to_inflight(int pb_type_index, std::unordered_multimap::iterator& it); + + /** + * @brief Move the primitive at (it) to invalid and increment the current iterator + * + * Because the element at (it) is deleted from valid_primitives, (it) is incremented to keep it valid and pointing at the next element. + * + * @param pb_type_index: is the index of this pb_type in valid_primitives vector + * @param it: is the iterator pointing at the element that needs to be moved to invalid + */ + void invalidate_primitive_and_increment_iterator(int pb_type_index, std::unordered_multimap::iterator& it); + + /** + * @brief Add a primitive in its correct location in valid_primitives vector based on its pb_type + * + * @param cluster_placement_primitive: a pair of the cluster_placement_primtive and its corresponding index(for reference in pb_graph_node) + */ + void insert_primitive_in_valid_primitives(std::pair cluster_placement_primitive); + + /** + * @brief Move all the primitives from (in_flight and tried) maps to valid primitives and clear (in_flight and tried) + */ + void flush_intermediate_queues(); + + /** + * @brief Move all the primitives from invalid to valid_primitives and clear the invalid map + */ + void flush_invalid_queue(); + + /** + * @brief Return true if the in_flight map is empty (no primitive is in_flight currently) + */ + bool in_flight_empty(); + + /** + * @brief Return the type of the first element of the primitives currently being considered + */ + t_pb_type* in_flight_type(); + + /** + * @brief Set the placement primitive of the given pb_graph_node. + * + * The cluster placement primitive contains information about the molecules + * which currently occupy the pb_graph_node. + */ + inline void set_pb_graph_node_placement_primitive(const t_pb_graph_node* pb_graph_node, + t_cluster_placement_primitive* placement_primitive) { + VTR_ASSERT_SAFE(pb_graph_node != nullptr); + VTR_ASSERT_SAFE(placement_primitive != nullptr); + pb_graph_node_placement_primitive[pb_graph_node] = placement_primitive; + } + + /** + * @brief Get the placement primitive of the given pb_graph_node. + * + * Assumes that the pb_graph_node was set previously. + */ + inline t_cluster_placement_primitive* get_pb_graph_node_placement_primitive(const t_pb_graph_node* pb_graph_node) { + VTR_ASSERT_SAFE(pb_graph_node != nullptr); + VTR_ASSERT(pb_graph_node_placement_primitive.count(pb_graph_node) != 0); + return pb_graph_node_placement_primitive[pb_graph_node]; + } + + /** + * @brief free the dynamically allocated memory for primitives + */ + void free_primitives(); + + private: + std::unordered_multimap in_flight; /// tried; /// invalid; /// pb_graph_node_placement_primitive; + + /** + * @brief iterate over elements of a queue and move its elements to valid_primitives + * + * @param queue the unordered_multimap to work on (e.g. in_flight, tried, or invalid) + */ + void flush_queue(std::unordered_multimap& queue); +}; + +/** + * @brief Allocates and loads the cluster placement stats for a cluster of the + * given cluster type and mode. + * + * The pointer returned by this method must be freed. + */ +t_cluster_placement_stats* alloc_and_load_cluster_placement_stats(t_logical_block_type_ptr cluster_type, + int cluster_mode); + +/** + * @brief Frees the cluster placement stats of a cluster. + */ +void free_cluster_placement_stats(t_cluster_placement_stats* cluster_placement_stats); + +/** + * get next list of primitives for list of atom blocks + * + * primitives is the list of ptrs to primitives that matches with the list of atom block, assumes memory is preallocated + * - if this is a new block, requeue tried primitives and return a in-flight primitive list to try + * - if this is an old block, put root primitive to tried queue, requeue rest of primitives. try another set of primitives + * + * return true if can find next primitive, false otherwise + * + * cluster_placement_stats - ptr to the current cluster_placement_stats of open complex block + * molecule - molecule to pack into open complex block + * primitives_list - a list of primitives indexed to match atom_block_ids of molecule. + * Expects an allocated array of primitives ptrs as inputs. + * This function loads the array with the lowest cost primitives that implement molecule + * force_site - optional user-specified primitive site on which to place the molecule; if a force_site + * argument is provided, the function either selects the specified site or reports failure. + * If the force_site argument is set to its default value (-1), vpr selects an available site. + */ bool get_next_primitive_list( t_cluster_placement_stats* cluster_placement_stats, const t_pack_molecule* molecule, t_pb_graph_node** primitives_list, int force_site = -1); + +/** + * @brief Commit primitive, invalidate primitives blocked by mode assignment and update costs for primitives in same cluster as current + * Costing is done to try to pack blocks closer to existing primitives + * actual value based on closest common ancestor to committed placement, the farther the ancestor, the less reduction in cost there is + * Side effects: All cluster_placement_primitives may be invalidated/costed in this algorithm + * Al intermediate queues are requeued + */ void commit_primitive(t_cluster_placement_stats* cluster_placement_stats, const t_pb_graph_node* primitive); -void set_mode_cluster_placement_stats(const t_pb_graph_node* complex_block, - int mode); -void reset_cluster_placement_stats( - t_cluster_placement_stats* cluster_placement_stats); +/** + * @brief Determine max index + 1 of molecule + */ int get_array_size_of_molecule(const t_pack_molecule* molecule); + +/** + * @brief Given atom block, determines if a free primitive exists for it, + */ bool exists_free_primitive_for_atom_block( t_cluster_placement_stats* cluster_placement_stats, const AtomBlockId blk_id); diff --git a/vpr/src/pack/cluster_util.cpp b/vpr/src/pack/cluster_util.cpp index 39940410b40..25b4af68441 100644 --- a/vpr/src/pack/cluster_util.cpp +++ b/vpr/src/pack/cluster_util.cpp @@ -386,32 +386,19 @@ void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, t_pack_molecule* get_molecule_by_num_ext_inputs(const int ext_inps, const enum e_removal_policy remove_flag, - t_cluster_placement_stats* cluster_placement_stats_ptr, - t_molecule_link* unclustered_list_head) { - - t_molecule_link *ptr, *prev_ptr; - int i; - bool success; + t_molecule_link* unclustered_list_head, + LegalizationClusterId legalization_cluster_id, + const ClusterLegalizer& cluster_legalizer) { - prev_ptr = &unclustered_list_head[ext_inps]; - ptr = unclustered_list_head[ext_inps].next; + t_molecule_link* prev_ptr = &unclustered_list_head[ext_inps]; + t_molecule_link* ptr = unclustered_list_head[ext_inps].next; while (ptr != nullptr) { /* TODO: Get better candidate atom block in future, eg. return most timing critical or some other smarter metric */ if (ptr->moleculeptr->valid) { - success = true; - for (i = 0; i < get_array_size_of_molecule(ptr->moleculeptr); i++) { - if (ptr->moleculeptr->atom_block_ids[i]) { - auto blk_id = ptr->moleculeptr->atom_block_ids[i]; - if (!exists_free_primitive_for_atom_block(cluster_placement_stats_ptr, blk_id)) { - /* TODO: I should be using a better filtering check especially when I'm - * dealing with multiple clock/multiple global reset signals where the clock/reset - * packed in matters, need to do later when I have the circuits to check my work */ - success = false; - break; - } - } - } - if (success == true) { + /* TODO: I should be using a better filtering check especially when I'm + * dealing with multiple clock/multiple global reset signals where the clock/reset + * packed in matters, need to do later when I have the circuits to check my work */ + if (cluster_legalizer.is_molecule_compatible(ptr->moleculeptr, legalization_cluster_id)) { return ptr->moleculeptr; } prev_ptr = ptr; @@ -430,9 +417,10 @@ t_pack_molecule* get_molecule_by_num_ext_inputs(const int ext_inps, /*****************************************/ t_pack_molecule* get_free_molecule_with_most_ext_inputs_for_cluster(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, t_molecule_link* unclustered_list_head, - const int& unclustered_list_head_size) { + const int& unclustered_list_head_size, + LegalizationClusterId legalization_cluster_id, + const ClusterLegalizer& cluster_legalizer) { /* * TODO: Analyze if this function is useful in more detail, also, should probably not include clock in input count */ @@ -450,7 +438,11 @@ t_pack_molecule* get_free_molecule_with_most_ext_inputs_for_cluster(t_pb* cur_pb } for (int ext_inps = inputs_avail; ext_inps >= 0; ext_inps--) { - molecule = get_molecule_by_num_ext_inputs(ext_inps, LEAVE_CLUSTERED, cluster_placement_stats_ptr, unclustered_list_head); + molecule = get_molecule_by_num_ext_inputs(ext_inps, + LEAVE_CLUSTERED, + unclustered_list_head, + legalization_cluster_id, + cluster_legalizer); if (molecule != nullptr) { break; } @@ -532,7 +524,6 @@ void update_connection_gain_values(const AtomNetId net_id, void try_fill_cluster(ClusterLegalizer& cluster_legalizer, const Prepacker& prepacker, const t_packer_opts& packer_opts, - t_cluster_placement_stats* cur_cluster_placement_stats_ptr, t_pack_molecule*& prev_molecule, t_pack_molecule*& next_molecule, int& num_same_molecules, @@ -590,7 +581,6 @@ void try_fill_cluster(ClusterLegalizer& cluster_legalizer, packer_opts.transitive_fanout_threshold, packer_opts.feasible_block_array_size, &cluster_stats.num_unrelated_clustering_attempts, - cur_cluster_placement_stats_ptr, prepacker, cluster_legalizer, clb_inter_blk_nets, @@ -648,7 +638,6 @@ void try_fill_cluster(ClusterLegalizer& cluster_legalizer, packer_opts.transitive_fanout_threshold, packer_opts.feasible_block_array_size, &cluster_stats.num_unrelated_clustering_attempts, - cur_cluster_placement_stats_ptr, prepacker, cluster_legalizer, clb_inter_blk_nets, @@ -1118,7 +1107,6 @@ void start_new_cluster(ClusterLegalizer& cluster_legalizer, t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, AttractionInfo& attraction_groups, const enum e_gain_type gain_mode, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, @@ -1140,7 +1128,7 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 1. Find unpacked molecules based on criticality and strong connectedness (connected by low fanout nets) with current cluster if (cur_pb->pb_stats->num_feasible_blocks == NOT_VALID) { add_cluster_molecule_candidates_by_connectivity_and_timing(cur_pb, - cluster_placement_stats_ptr, + legalization_cluster_id, prepacker, cluster_legalizer, feasible_block_array_size, @@ -1151,7 +1139,6 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 2. Find unpacked molecules based on transitive connections (eg. 2 hops away) with current cluster if (cur_pb->pb_stats->num_feasible_blocks == 0 && cur_pb->pb_stats->explore_transitive_fanout) { add_cluster_molecule_candidates_by_transitive_connectivity(cur_pb, - cluster_placement_stats_ptr, prepacker, cluster_legalizer, clb_inter_blk_nets, @@ -1164,7 +1151,7 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 3. Find unpacked molecules based on weak connectedness (connected by high fanout nets) with current cluster if (cur_pb->pb_stats->num_feasible_blocks == 0 && cur_pb->pb_stats->tie_break_high_fanout_net) { add_cluster_molecule_candidates_by_highfanout_connectivity(cur_pb, - cluster_placement_stats_ptr, + legalization_cluster_id, prepacker, cluster_legalizer, feasible_block_array_size, @@ -1174,7 +1161,7 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 3. Find unpacked molecules based on weak connectedness (connected by high fanout nets) with current cluster if (cur_pb->pb_stats->num_feasible_blocks == 0 && cur_pb->pb_stats->tie_break_high_fanout_net) { add_cluster_molecule_candidates_by_highfanout_connectivity(cur_pb, - cluster_placement_stats_ptr, + legalization_cluster_id, prepacker, cluster_legalizer, feasible_block_array_size, @@ -1184,7 +1171,6 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 2. Find unpacked molecules based on transitive connections (eg. 2 hops away) with current cluster if (cur_pb->pb_stats->num_feasible_blocks == 0 && cur_pb->pb_stats->explore_transitive_fanout) { add_cluster_molecule_candidates_by_transitive_connectivity(cur_pb, - cluster_placement_stats_ptr, prepacker, cluster_legalizer, clb_inter_blk_nets, @@ -1198,7 +1184,6 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, // 4. Find unpacked molecules based on attraction group of the current cluster (if the cluster has an attraction group) if (cur_pb->pb_stats->num_feasible_blocks == 0) { add_cluster_molecule_candidates_by_attraction_group(cur_pb, - cluster_placement_stats_ptr, prepacker, cluster_legalizer, attraction_groups, @@ -1220,7 +1205,7 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, } void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, + LegalizationClusterId legalization_cluster_id, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, const int feasible_block_array_size, @@ -1234,8 +1219,7 @@ void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, if (!cluster_legalizer.is_atom_clustered(blk_id)) { t_pack_molecule* molecule = prepacker.get_atom_molecule(blk_id); if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr, cluster_legalizer); - if (success) { + if (cluster_legalizer.is_molecule_compatible(molecule, legalization_cluster_id)) { add_molecule_to_pb_stats_candidates(molecule, cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } @@ -1245,7 +1229,7 @@ void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, } void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, + LegalizationClusterId legalization_cluster_id, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, const int feasible_block_array_size, @@ -1255,8 +1239,6 @@ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, * related blocks */ const AtomNetlist& atom_nlist = g_vpr_ctx.atom().nlist; - reset_tried_but_unused_cluster_placements(cluster_placement_stats_ptr); - AtomNetId net_id = cur_pb->pb_stats->tie_break_high_fanout_net; int count = 0; @@ -1270,8 +1252,7 @@ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, if (!cluster_legalizer.is_atom_clustered(blk_id)) { t_pack_molecule* molecule = prepacker.get_atom_molecule(blk_id); if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr, cluster_legalizer); - if (success) { + if (cluster_legalizer.is_molecule_compatible(molecule, legalization_cluster_id)) { add_molecule_to_pb_stats_candidates(molecule, cur_pb->pb_stats->gain, cur_pb, std::min(feasible_block_array_size, AAPACK_MAX_HIGH_FANOUT_EXPLORE), attraction_groups); count++; @@ -1283,7 +1264,6 @@ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, } void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, AttractionInfo& attraction_groups, @@ -1349,8 +1329,7 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, && std::find(candidate_types.begin(), candidate_types.end(), cluster_type) != candidate_types.end()) { t_pack_molecule* molecule = prepacker.get_atom_molecule(atom_id); if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr, cluster_legalizer); - if (success) { + if (cluster_legalizer.is_molecule_compatible(molecule, legalization_cluster_id)) { add_molecule_to_pb_stats_candidates(molecule, cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } @@ -1381,10 +1360,7 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, && std::find(candidate_types.begin(), candidate_types.end(), cluster_type) != candidate_types.end()) { t_pack_molecule* molecule = prepacker.get_atom_molecule(blk_id); if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, - cluster_placement_stats_ptr, - cluster_legalizer); - if (success) { + if (cluster_legalizer.is_molecule_compatible(molecule, legalization_cluster_id)) { add_molecule_to_pb_stats_candidates(molecule, cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } @@ -1394,7 +1370,6 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, } void add_cluster_molecule_candidates_by_transitive_connectivity(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, @@ -1416,10 +1391,7 @@ void add_cluster_molecule_candidates_by_transitive_connectivity(t_pb* cur_pb, for (const auto& transitive_candidate : cur_pb->pb_stats->transitive_fanout_candidates) { t_pack_molecule* molecule = transitive_candidate.second; if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, - cluster_placement_stats_ptr, - cluster_legalizer); - if (success) { + if (cluster_legalizer.is_molecule_compatible(molecule, legalization_cluster_id)) { add_molecule_to_pb_stats_candidates(molecule, cur_pb->pb_stats->gain, cur_pb, std::min(feasible_block_array_size, AAPACK_MAX_TRANSITIVE_EXPLORE), attraction_groups); } @@ -1427,27 +1399,6 @@ void add_cluster_molecule_candidates_by_transitive_connectivity(t_pb* cur_pb, } } -bool check_free_primitives_for_molecule_atoms(t_pack_molecule* molecule, - t_cluster_placement_stats* cluster_placement_stats_ptr, - const ClusterLegalizer& cluster_legalizer) { - bool success = true; - - for (int i_atom = 0; i_atom < get_array_size_of_molecule(molecule); i_atom++) { - if (molecule->atom_block_ids[i_atom]) { - VTR_ASSERT(!cluster_legalizer.is_atom_clustered(molecule->atom_block_ids[i_atom])); - auto blk_id2 = molecule->atom_block_ids[i_atom]; - if (!exists_free_primitive_for_atom_block(cluster_placement_stats_ptr, blk_id2)) { - /* TODO (Jason Luu): debating whether to check if placement exists for molecule - * (more robust) or individual atom blocks (faster)*/ - success = false; - break; - } - } - } - - return success; -} - /*****************************************/ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, AttractionInfo& attraction_groups, @@ -1456,7 +1407,6 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, const int transitive_fanout_threshold, const int feasible_block_array_size, int* num_unrelated_clustering_attempts, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, @@ -1475,7 +1425,7 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, /* If cannot pack into primitive, try packing into cluster */ auto best_molecule = get_highest_gain_molecule(cur_pb, attraction_groups, - NOT_HILL_CLIMBING, cluster_placement_stats_ptr, + NOT_HILL_CLIMBING, prepacker, cluster_legalizer, clb_inter_blk_nets, legalization_cluster_id, prioritize_transitive_connectivity, transitive_fanout_threshold, feasible_block_array_size, primitive_candidate_block_types); @@ -1488,9 +1438,10 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, if (best_molecule == nullptr) { if (*num_unrelated_clustering_attempts == 0) { best_molecule = get_free_molecule_with_most_ext_inputs_for_cluster(cur_pb, - cluster_placement_stats_ptr, unclustered_list_head, - unclustered_list_head_size); + unclustered_list_head_size, + legalization_cluster_id, + cluster_legalizer); (*num_unrelated_clustering_attempts)++; VTR_LOGV(best_molecule && verbosity > 2, "\tFound unrelated molecule to cluster\n"); } diff --git a/vpr/src/pack/cluster_util.h b/vpr/src/pack/cluster_util.h index d25a3b1ab44..c55dcab2922 100644 --- a/vpr/src/pack/cluster_util.h +++ b/vpr/src/pack/cluster_util.h @@ -170,8 +170,9 @@ void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, */ t_pack_molecule* get_molecule_by_num_ext_inputs(const int ext_inps, const enum e_removal_policy remove_flag, - t_cluster_placement_stats* cluster_placement_stats_ptr, - t_molecule_link* unclustered_list_head); + t_molecule_link* unclustered_list_head, + LegalizationClusterId legalization_cluster_id, + const ClusterLegalizer& cluster_legalizer); /* @brief This routine is used to find new blocks for clustering when there are * no feasible blocks with any attraction to the current cluster (i.e. @@ -181,9 +182,10 @@ t_pack_molecule* get_molecule_by_num_ext_inputs(const int ext_inps, * suitable atom block is found, the routine returns nullptr. */ t_pack_molecule* get_free_molecule_with_most_ext_inputs_for_cluster(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, t_molecule_link* unclustered_list_head, - const int& unclustered_list_head_size); + const int& unclustered_list_head_size, + LegalizationClusterId legalization_cluster_id, + const ClusterLegalizer& cluster_legalizer); /* * @brief Print the header for the clustering progress table. @@ -219,7 +221,6 @@ void rebuild_attraction_groups(AttractionInfo& attraction_groups, void try_fill_cluster(ClusterLegalizer& cluster_legalizer, const Prepacker& prepacker, const t_packer_opts& packer_opts, - t_cluster_placement_stats* cur_cluster_placement_stats_ptr, t_pack_molecule*& prev_molecule, t_pack_molecule*& next_molecule, int& num_same_molecules, @@ -343,7 +344,6 @@ void start_new_cluster(ClusterLegalizer& cluster_legalizer, t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, AttractionInfo& attraction_groups, const enum e_gain_type gain_mode, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, @@ -358,7 +358,7 @@ t_pack_molecule* get_highest_gain_molecule(t_pb* cur_pb, * list of feasible blocks. */ void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, + LegalizationClusterId legalization_cluster_id, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, const int feasible_block_array_size, @@ -369,7 +369,7 @@ void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, * nets) with current cluster. */ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, + LegalizationClusterId legalization_cluster_id, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, const int feasible_block_array_size, @@ -387,7 +387,6 @@ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, * call this function. */ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, AttractionInfo& attraction_groups, @@ -400,7 +399,6 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, * current cluster. */ void add_cluster_molecule_candidates_by_transitive_connectivity(t_pb* cur_pb, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, @@ -409,14 +407,6 @@ void add_cluster_molecule_candidates_by_transitive_connectivity(t_pb* cur_pb, const int feasible_block_array_size, AttractionInfo& attraction_groups); -/* - * @brief Check whether a free primitive exists for each atom block in the - * molecule. - */ -bool check_free_primitives_for_molecule_atoms(t_pack_molecule* molecule, - t_cluster_placement_stats* cluster_placement_stats_ptr, - const ClusterLegalizer& cluster_legalizer); - t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, AttractionInfo& attraction_groups, const bool allow_unrelated_clustering, @@ -424,7 +414,6 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, const int transitive_fanout_threshold, const int feasible_block_array_size, int* num_unrelated_clustering_attempts, - t_cluster_placement_stats* cluster_placement_stats_ptr, const Prepacker& prepacker, const ClusterLegalizer& cluster_legalizer, vtr::vector>& clb_inter_blk_nets, diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt index c5913be18a1..7d583e4c3f4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt @@ -1,5 +1,5 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time 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 -k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 5.61 vpr 63.25 MiB -1 -1 0.54 21584 3 0.17 -1 -1 36764 -1 -1 69 99 1 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64772 99 130 353 483 1 220 299 13 13 169 clb auto 24.9 MiB 0.08 540 29270 3582 8022 17666 63.3 MiB 0.05 0.00 26 1466 14 3.33e+06 2.19e+06 360896. 2135.48 1.66 -k4_N10_memSize16384_memData64.xml diffeq1.v common 7.52 vpr 67.18 MiB -1 -1 0.93 26616 23 0.75 -1 -1 38172 -1 -1 71 162 0 5 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68792 162 96 1200 1141 1 688 334 13 13 169 clb auto 29.0 MiB 0.33 4622 86026 24278 56070 5678 67.2 MiB 0.25 0.00 52 9757 19 3.33e+06 2.58e+06 671819. 3975.26 2.27 -k4_N10_memSize16384_memData64.xml single_wire.v common 1.82 vpr 61.08 MiB -1 -1 0.22 20368 1 0.14 -1 -1 33456 -1 -1 0 1 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 62544 1 1 1 2 0 1 2 3 3 9 -1 auto 22.5 MiB 0.00 2 3 3 0 0 61.1 MiB 0.00 0.00 2 2 1 30000 0 1489.46 165.495 0.00 -k4_N10_memSize16384_memData64.xml single_ff.v common 1.90 vpr 61.09 MiB -1 -1 0.17 20672 1 0.13 -1 -1 33160 -1 -1 1 2 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 62560 2 1 3 4 1 3 4 3 3 9 -1 auto 22.6 MiB 0.00 4 9 6 0 3 61.1 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 +k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 2.61 vpr 61.47 MiB -1 -1 0.41 18112 3 0.09 -1 -1 33112 -1 -1 69 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 99 130 353 483 1 220 299 13 13 169 clb auto 22.6 MiB 0.04 540 29270 3582 8022 17666 61.5 MiB 0.02 0.00 36 1178 8 3.33e+06 2.19e+06 481319. 2848.04 0.89 +k4_N10_memSize16384_memData64.xml diffeq1.v common 4.95 vpr 64.53 MiB -1 -1 0.72 23016 23 0.29 -1 -1 34312 -1 -1 71 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66076 162 96 1200 1141 1 688 334 13 13 169 clb auto 25.7 MiB 0.17 4622 86026 24278 56070 5678 64.5 MiB 0.16 0.00 50 10124 42 3.33e+06 2.58e+06 641417. 3795.37 1.79 +k4_N10_memSize16384_memData64.xml single_wire.v common 1.00 vpr 58.46 MiB -1 -1 0.15 16036 1 0.02 -1 -1 29872 -1 -1 0 1 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 59864 1 1 1 2 0 1 2 3 3 9 -1 auto 20.0 MiB 0.00 2 3 3 0 0 58.5 MiB 0.00 0.00 2 2 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 1.02 vpr 58.49 MiB -1 -1 0.16 16284 1 0.02 -1 -1 29928 -1 -1 1 2 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 59892 2 1 3 4 1 3 4 3 3 9 -1 auto 19.7 MiB 0.00 4 9 6 0 3 58.5 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.01 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt index 114c32a01a7..8ae7a3375a7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 adder_003bits.v common 5.38 vpr 61.79 MiB -1 -1 0.17 20216 1 0.10 -1 -1 35844 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63268 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 23.2 MiB 0.00 71 268 69 183 16 61.8 MiB 0.00 0.00 0.701249 -7.22873 -0.701249 0.701249 1.21 1.9941e-05 1.0625e-05 0.000588909 0.000332651 20 164 10 6.55708e+06 24110 394039. 1363.46 0.70 0.00139611 0.000918998 19870 87366 -1 150 8 56 56 3527 967 0.821448 0.821448 -8.31053 -0.821448 0 0 477104. 1650.88 0.20 0.00 0.06 -1 -1 0.20 0.000758241 0.000584084 10 4 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 5.43 vpr 61.82 MiB -1 -1 0.15 20672 2 0.07 -1 -1 35680 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63304 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 23.2 MiB 0.04 135 76 35 40 1 61.8 MiB 0.00 0.00 0.900447 -11.7037 -0.900447 0.900447 1.20 2.6423e-05 1.5616e-05 0.000272073 0.000202567 20 236 7 6.55708e+06 24110 394039. 1363.46 0.61 0.0016096 0.00130633 19870 87366 -1 219 9 65 70 4938 1249 0.83871 0.83871 -12.0384 -0.83871 0 0 477104. 1650.88 0.19 0.00 0.06 -1 -1 0.19 0.00106749 0.000797429 13 6 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 5.34 vpr 61.86 MiB -1 -1 0.13 20368 2 0.13 -1 -1 35408 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63348 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 23.4 MiB 0.01 55 569 131 359 79 61.9 MiB 0.00 0.00 0.900447 -11.5834 -0.900447 0.900447 1.13 2.8569e-05 1.7314e-05 0.000929752 0.000618461 26 210 18 6.55708e+06 24110 477104. 1650.88 0.78 0.00604896 0.00422244 21022 109990 -1 168 10 131 136 5947 2149 0.821448 0.821448 -11.9096 -0.821448 0 0 585099. 2024.56 0.23 0.01 0.07 -1 -1 0.23 0.00132124 0.00101161 16 7 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 5.66 vpr 61.90 MiB -1 -1 0.26 20216 3 0.11 -1 -1 35572 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63388 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 23.5 MiB 0.01 85 567 111 433 23 61.9 MiB 0.00 0.00 1.58811 -16.0101 -1.58811 1.58811 1.16 3.2575e-05 2.0258e-05 0.000909538 0.000609743 20 281 10 6.55708e+06 36165 394039. 1363.46 0.76 0.00242852 0.00184424 19870 87366 -1 238 10 108 128 6249 1969 1.50711 1.50711 -17.0526 -1.50711 0 0 477104. 1650.88 0.23 0.00 0.06 -1 -1 0.23 0.00133934 0.00108087 19 9 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 5.89 vpr 61.94 MiB -1 -1 0.28 20672 3 0.18 -1 -1 35820 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63428 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 23.5 MiB 0.01 208 862 165 657 40 61.9 MiB 0.01 0.00 1.23151 -19.784 -1.23151 1.23151 1.17 3.7235e-05 2.4013e-05 0.00117286 0.000814717 20 451 13 6.55708e+06 36165 394039. 1363.46 0.80 0.00314342 0.00240565 19870 87366 -1 409 8 146 164 9675 2532 1.05785 1.05785 -21.0828 -1.05785 0 0 477104. 1650.88 0.26 0.00 0.08 -1 -1 0.26 0.00139678 0.00117942 23 10 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 6.87 vpr 61.85 MiB -1 -1 0.42 20368 3 0.14 -1 -1 35616 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63336 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 23.4 MiB 0.06 126 720 180 518 22 61.9 MiB 0.00 0.00 1.70831 -21.378 -1.70831 1.70831 1.25 4.3648e-05 2.8462e-05 0.00114916 0.000840919 26 318 9 6.55708e+06 48220 477104. 1650.88 0.87 0.00711556 0.00544199 21022 109990 -1 294 14 168 178 8995 2876 1.70831 1.70831 -22.4328 -1.70831 0 0 585099. 2024.56 0.29 0.01 0.14 -1 -1 0.29 0.00466294 0.00196426 25 14 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 12.19 vpr 62.03 MiB -1 -1 0.21 20520 4 0.24 -1 -1 35648 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63520 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 23.5 MiB 0.01 138 1593 371 925 297 62.0 MiB 0.00 0.00 1.58811 -24.9956 -1.58811 1.58811 2.52 1.8144e-05 1.2182e-05 0.000809484 0.000583379 30 391 15 6.55708e+06 48220 526063. 1820.29 2.04 0.00741544 0.00578279 21886 126133 -1 301 11 188 226 8989 3008 1.50711 1.50711 -24.1514 -1.50711 0 0 666494. 2306.21 0.71 0.01 0.17 -1 -1 0.71 0.00195239 0.00166637 29 13 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 12.87 vpr 62.11 MiB -1 -1 0.36 20672 4 0.12 -1 -1 35476 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63604 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 23.5 MiB 0.01 155 2355 551 1281 523 62.1 MiB 0.01 0.00 1.68077 -27.5084 -1.68077 1.68077 2.45 4.929e-05 3.3847e-05 0.00231772 0.00167044 32 463 10 6.55708e+06 60275 554710. 1919.41 2.31 0.15701 0.1549 22174 131602 -1 387 11 223 268 19676 5833 1.46791 1.46791 -27.5478 -1.46791 0 0 701300. 2426.64 0.75 0.01 0.28 -1 -1 0.75 0.00246106 0.00210154 33 17 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 12.59 vpr 62.16 MiB -1 -1 0.32 20672 5 0.26 -1 -1 35676 -1 -1 6 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63652 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 23.5 MiB 0.01 238 4031 1480 1575 976 62.2 MiB 0.01 0.00 2.07857 -33.206 -2.07857 2.07857 2.70 2.2853e-05 1.5587e-05 0.00162352 0.00116695 28 591 13 6.55708e+06 72330 500653. 1732.36 2.13 0.00837298 0.00645275 21310 115450 -1 529 14 259 335 21502 5832 1.77504 1.77504 -34.2403 -1.77504 0 0 612192. 2118.31 0.66 0.03 0.19 -1 -1 0.66 0.0221081 0.0217231 37 19 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.68 vpr 62.21 MiB -1 -1 0.26 20520 5 0.25 -1 -1 35532 -1 -1 6 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63700 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 23.7 MiB 0.01 377 3894 1439 2026 429 62.2 MiB 0.04 0.00 1.80097 -39.3697 -1.80097 1.80097 2.62 7.9738e-05 6.1457e-05 0.0277289 0.02663 26 789 18 6.55708e+06 72330 477104. 1650.88 1.88 0.0369521 0.0338877 21022 109990 -1 724 15 307 437 25143 6412 1.73584 1.73584 -42.2656 -1.73584 0 0 585099. 2024.56 0.57 0.01 0.45 -1 -1 0.57 0.00315337 0.00271158 40 21 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 12.76 vpr 62.26 MiB -1 -1 0.48 20672 5 0.13 -1 -1 35688 -1 -1 7 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63752 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 23.7 MiB 0.02 311 3963 1152 2039 772 62.3 MiB 0.01 0.00 1.72548 -36.9438 -1.72548 1.72548 2.79 6.0214e-05 4.2761e-05 0.00359942 0.00269558 26 772 15 6.55708e+06 84385 477104. 1650.88 1.86 0.0135503 0.0107861 21022 109990 -1 704 13 255 357 21633 5754 1.70831 1.70831 -39.6993 -1.70831 0 0 585099. 2024.56 0.77 0.03 0.21 -1 -1 0.77 0.00322475 0.00280852 42 24 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 12.82 vpr 62.28 MiB -1 -1 0.36 20824 6 0.12 -1 -1 35516 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63776 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 23.7 MiB 0.02 458 5503 1602 3150 751 62.3 MiB 0.13 0.00 2.39596 -48.8547 -2.39596 2.39596 2.81 6.5391e-05 4.7683e-05 0.00471541 0.00356477 26 928 17 6.55708e+06 84385 477104. 1650.88 1.75 0.0151589 0.0120377 21022 109990 -1 822 10 255 357 25216 5776 2.15556 2.15556 -48.4222 -2.15556 0 0 585099. 2024.56 0.59 0.05 0.24 -1 -1 0.59 0.00301393 0.00266837 45 23 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 12.46 vpr 62.34 MiB -1 -1 0.37 20520 6 0.22 -1 -1 35768 -1 -1 10 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63832 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 23.7 MiB 0.13 439 6052 2332 3296 424 62.3 MiB 0.03 0.00 1.96388 -48.153 -1.96388 1.96388 2.70 9.2362e-05 6.987e-05 0.00504376 0.00383516 28 925 12 6.55708e+06 120550 500653. 1732.36 2.72 0.0157328 0.012446 21310 115450 -1 855 10 297 457 31695 7952 1.9467 1.9467 -50.3217 -1.9467 0 0 612192. 2118.31 0.69 0.03 0.43 -1 -1 0.69 0.0199009 0.019307 50 27 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 12.77 vpr 62.37 MiB -1 -1 0.38 20672 7 0.14 -1 -1 35780 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63864 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 23.8 MiB 0.13 289 5943 1914 2723 1306 62.4 MiB 0.17 0.00 2.57253 -52.3053 -2.57253 2.57253 2.25 7.549e-05 5.5173e-05 0.149983 0.148737 26 1068 34 6.55708e+06 84385 477104. 1650.88 2.34 0.161297 0.157978 21022 109990 -1 798 11 396 536 39199 11676 2.43516 2.43516 -55.6876 -2.43516 0 0 585099. 2024.56 0.79 0.11 0.21 -1 -1 0.79 0.0747217 0.0740949 52 30 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.17 vpr 62.50 MiB -1 -1 0.19 20824 7 0.41 -1 -1 35688 -1 -1 10 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64000 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 24.1 MiB 0.07 515 7248 1983 4155 1110 62.5 MiB 0.12 0.00 3.08562 -68.3297 -3.08562 3.08562 2.72 8.2667e-05 6.2316e-05 0.00591627 0.00458978 28 1076 10 6.55708e+06 120550 500653. 1732.36 2.32 0.0185783 0.0151974 21310 115450 -1 998 9 326 459 26259 6837 2.84522 2.84522 -70.0641 -2.84522 0 0 612192. 2118.31 0.84 0.05 0.32 -1 -1 0.84 0.00418888 0.00365409 59 35 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 12.09 vpr 62.62 MiB -1 -1 0.24 20976 8 0.44 -1 -1 35732 -1 -1 11 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64128 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 24.0 MiB 0.10 468 9497 2136 5919 1442 62.6 MiB 0.03 0.00 3.11516 -75.6589 -3.11516 3.11516 2.78 9.6981e-05 7.4114e-05 0.00760574 0.005975 26 1241 16 6.55708e+06 132605 477104. 1650.88 2.57 0.0231752 0.0190804 21022 109990 -1 1135 17 482 675 45245 11599 2.9023 2.9023 -77.7159 -2.9023 0 0 585099. 2024.56 0.76 0.11 0.23 -1 -1 0.76 0.00549306 0.00485951 67 37 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.59 vpr 62.73 MiB -1 -1 0.28 20672 9 0.12 -1 -1 35896 -1 -1 13 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64240 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 24.1 MiB 0.95 635 10406 3278 5552 1576 62.7 MiB 0.15 0.00 3.26996 -84.3895 -3.26996 3.26996 2.91 0.000141007 0.00011384 0.00746392 0.0058863 26 1386 13 6.55708e+06 156715 477104. 1650.88 2.21 0.0238052 0.0197161 21022 109990 -1 1258 17 479 598 43278 12179 3.14976 3.14976 -88.4909 -3.14976 0 0 585099. 2024.56 1.02 0.04 0.21 -1 -1 1.02 0.00488544 0.00429784 74 41 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 11.22 vpr 62.65 MiB -1 -1 0.17 20976 10 0.17 -1 -1 35604 -1 -1 12 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64156 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 24.1 MiB 0.17 683 5378 1001 3837 540 62.7 MiB 0.09 0.00 3.75902 -99.229 -3.75902 3.75902 2.58 0.000114406 8.7206e-05 0.00457321 0.00368865 26 1511 32 6.55708e+06 144660 477104. 1650.88 2.50 0.173084 0.0230037 21022 109990 -1 1392 11 501 667 47166 11692 3.63882 3.63882 -102.215 -3.63882 0 0 585099. 2024.56 0.72 0.02 0.14 -1 -1 0.72 0.00529511 0.00477308 79 44 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 14.02 vpr 63.03 MiB -1 -1 0.22 21128 11 0.14 -1 -1 35760 -1 -1 14 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64540 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 24.3 MiB 0.42 922 12860 3205 8260 1395 63.0 MiB 0.06 0.00 4.12928 -123.876 -4.12928 4.12928 3.42 0.000142566 0.000113375 0.0293584 0.00748923 32 1876 39 6.55708e+06 168770 554710. 1919.41 2.84 0.0576435 0.0317671 22174 131602 -1 1719 14 578 751 57347 13289 3.88888 3.88888 -120.008 -3.88888 0 0 701300. 2426.64 0.68 0.02 0.20 -1 -1 0.68 0.00754264 0.00685213 93 56 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.48 vpr 63.17 MiB -1 -1 0.36 20824 13 0.19 -1 -1 36244 -1 -1 16 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64684 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 24.4 MiB 0.85 822 10602 2133 8245 224 63.2 MiB 0.06 0.00 4.39522 -142.214 -4.39522 4.39522 2.47 0.000177514 0.000143994 0.0334604 0.031958 30 2035 28 6.55708e+06 192880 526063. 1820.29 3.41 0.0645034 0.0592321 21886 126133 -1 1654 13 698 939 54547 14327 4.06216 4.06216 -140.833 -4.06216 0 0 666494. 2306.21 0.83 0.09 0.26 -1 -1 0.83 0.00812073 0.0074049 107 62 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 14.73 vpr 64.07 MiB -1 -1 0.39 20976 19 0.16 -1 -1 36008 -1 -1 24 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 25.3 MiB 0.52 1220 34480 11205 18771 4504 64.1 MiB 0.43 0.00 7.30925 -279.81 -7.30925 7.30925 2.67 0.000314684 0.000267419 0.194503 0.157467 34 2965 19 6.55708e+06 289320 585099. 2024.56 4.20 0.587692 0.544211 22462 138074 -1 2448 12 954 1328 87149 23405 6.97619 6.97619 -277.114 -6.97619 0 0 742403. 2568.87 0.73 0.03 0.18 -1 -1 0.73 0.0118705 0.0109768 161 98 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 15.16 vpr 64.91 MiB -1 -1 0.23 21736 26 0.14 -1 -1 35956 -1 -1 35 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66464 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 25.9 MiB 0.40 1949 52029 16089 30447 5493 64.9 MiB 0.63 0.00 10.0778 -486.366 -10.0778 10.0778 2.54 0.000184566 0.00015737 0.200287 0.196713 36 3892 37 6.55708e+06 421925 612192. 2118.31 6.05 1.03311 0.99668 22750 144809 -1 3447 12 1162 1593 104559 25785 9.15536 9.15536 -452.326 -9.15536 0 0 782063. 2706.10 0.48 0.06 0.21 -1 -1 0.48 0.0345673 0.0334765 213 131 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.95 abc 32.82 MiB -1 -1 0.13 20672 1 0.06 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.44 abc 32.36 MiB -1 -1 0.18 20520 1 0.03 -1 -1 33140 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23600 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.61 abc 32.83 MiB -1 -1 0.20 20520 1 0.03 -1 -1 33620 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.70 abc 32.79 MiB -1 -1 0.23 20520 1 0.18 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23900 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.03 abc 32.82 MiB -1 -1 0.32 20672 1 0.01 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.30 abc 32.71 MiB -1 -1 0.34 20520 1 0.07 -1 -1 33496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23748 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.70 abc 32.86 MiB -1 -1 0.22 20672 1 0.06 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.45 abc 32.89 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33684 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.11 abc 32.70 MiB -1 -1 0.15 20672 1 0.07 -1 -1 33488 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.55 abc 33.20 MiB -1 -1 0.13 20976 1 0.04 -1 -1 33992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.41 abc 32.88 MiB -1 -1 0.20 20672 1 0.05 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.59 abc 32.71 MiB -1 -1 0.14 20520 1 0.13 -1 -1 33500 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.56 abc 32.69 MiB -1 -1 0.14 20824 1 0.05 -1 -1 33472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.72 abc 32.83 MiB -1 -1 0.14 20824 1 0.05 -1 -1 33620 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.82 abc 33.11 MiB -1 -1 0.21 20672 1 0.03 -1 -1 33904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.52 abc 33.11 MiB -1 -1 0.13 20672 1 0.03 -1 -1 33908 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 1.62 abc 32.81 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33600 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 1.77 abc 33.02 MiB -1 -1 0.16 20976 1 0.19 -1 -1 33816 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 1.42 abc 32.90 MiB -1 -1 0.15 20976 1 0.03 -1 -1 33688 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24508 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 1.32 abc 32.54 MiB -1 -1 0.17 20672 1 0.06 -1 -1 33324 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24508 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 1.41 abc 32.92 MiB -1 -1 0.17 21128 1 0.05 -1 -1 33708 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24660 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.47 abc 33.13 MiB -1 -1 0.21 21128 1 0.06 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 25116 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.29 abc 32.84 MiB -1 -1 0.18 20672 1 0.03 -1 -1 33628 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23808 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.48 abc 32.65 MiB -1 -1 0.12 20368 1 0.03 -1 -1 33432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.55 abc 32.66 MiB -1 -1 0.14 20368 1 0.03 -1 -1 33444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23832 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.49 abc 32.79 MiB -1 -1 0.15 20824 1 0.03 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.87 abc 32.86 MiB -1 -1 0.30 20520 1 0.09 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23896 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.63 abc 32.88 MiB -1 -1 0.19 20824 1 0.01 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.71 abc 32.72 MiB -1 -1 0.17 20064 1 0.04 -1 -1 33508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.99 abc 33.01 MiB -1 -1 0.17 20672 1 0.04 -1 -1 33804 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23908 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.88 abc 32.89 MiB -1 -1 0.26 20672 1 0.12 -1 -1 33680 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.69 abc 32.72 MiB -1 -1 0.20 20672 1 0.07 -1 -1 33508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.04 abc 32.74 MiB -1 -1 0.41 20672 1 0.20 -1 -1 33524 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.86 abc 32.73 MiB -1 -1 0.32 20976 1 0.19 -1 -1 33520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.86 abc 32.66 MiB -1 -1 0.31 20824 1 0.03 -1 -1 33448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24072 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.28 abc 32.75 MiB -1 -1 0.25 20976 1 0.17 -1 -1 33532 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24260 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.60 abc 33.11 MiB -1 -1 0.24 20520 1 0.02 -1 -1 33904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24104 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.90 abc 33.08 MiB -1 -1 0.42 20824 1 0.04 -1 -1 33876 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23652 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.88 abc 33.08 MiB -1 -1 0.33 20672 1 0.07 -1 -1 33872 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 abc 33.09 MiB -1 -1 0.23 20976 1 0.06 -1 -1 33888 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23652 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.04 abc 32.61 MiB -1 -1 0.28 20672 1 0.18 -1 -1 33388 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24264 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.26 abc 32.68 MiB -1 -1 0.27 20976 1 0.08 -1 -1 33460 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24260 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.28 abc 33.07 MiB -1 -1 0.32 20976 1 0.09 -1 -1 33864 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24564 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.71 abc 33.40 MiB -1 -1 0.46 21128 1 0.03 -1 -1 34200 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24868 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 8.48 vpr 62.21 MiB -1 -1 0.18 20672 1 0.01 -1 -1 33296 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63700 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.8 MiB 0.07 45 88 36 48 4 62.2 MiB 0.00 0.00 0.824016 -7.40657 -0.824016 0.824016 2.28 2.6609e-05 1.5386e-05 0.000323065 0.000227864 12 106 9 6.64007e+06 25116 231691. 801.699 0.76 0.00127935 0.000958079 19090 58805 -1 116 7 43 43 3050 941 0.770048 0.770048 -8.25533 -0.770048 0 0 318358. 1101.58 0.27 0.00 0.13 -1 -1 0.27 0.000750281 0.000596892 10 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 8.99 vpr 62.23 MiB -1 -1 0.07 20520 1 0.08 -1 -1 33448 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63724 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.01 43 476 113 309 54 62.2 MiB 0.00 0.00 0.792048 -9.40096 -0.792048 0.792048 2.15 2.3096e-05 1.2901e-05 0.000816489 0.000517897 18 169 9 6.64007e+06 25116 355633. 1230.56 0.94 0.00416804 0.00286688 20242 81429 -1 123 16 122 122 5330 1771 1.03245 1.03245 -10.208 -1.03245 0 0 448715. 1552.65 0.30 0.01 0.09 -1 -1 0.30 0.00124613 0.000927081 13 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 9.94 vpr 62.27 MiB -1 -1 0.23 20520 1 0.40 -1 -1 33644 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63768 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 23.8 MiB 0.07 57 869 279 533 57 62.3 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 2.26 2.7969e-05 1.6891e-05 0.00130377 0.000862017 26 188 38 6.64007e+06 25116 477104. 1650.88 1.69 0.00695897 0.00488533 21682 110474 -1 164 12 124 124 5487 1920 0.923248 0.923248 -12.587 -0.923248 0 0 585099. 2024.56 0.50 0.00 0.21 -1 -1 0.50 0.00128359 0.00103239 16 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 10.25 vpr 62.31 MiB -1 -1 0.23 20672 1 0.05 -1 -1 33708 -1 -1 4 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63804 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 23.8 MiB 0.01 117 1010 285 572 153 62.3 MiB 0.01 0.00 0.825048 -14.462 -0.825048 0.825048 2.18 3.2537e-05 2.0454e-05 0.00124569 0.000806046 26 311 18 6.64007e+06 50232 477104. 1650.88 1.91 0.00631761 0.00443865 21682 110474 -1 262 12 142 142 9033 2342 0.923248 0.923248 -16.2227 -0.923248 0 0 585099. 2024.56 0.57 0.01 0.17 -1 -1 0.57 0.00159324 0.00124695 20 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 10.31 vpr 62.19 MiB -1 -1 0.56 20520 1 0.01 -1 -1 33672 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63680 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 23.6 MiB 0.02 110 1508 446 794 268 62.2 MiB 0.01 0.00 1.18536 -16.9991 -1.18536 1.18536 2.42 3.4464e-05 2.1951e-05 0.00175811 0.00119432 26 285 16 6.64007e+06 37674 477104. 1650.88 1.78 0.0071198 0.00514232 21682 110474 -1 254 11 159 159 8209 2600 0.965248 0.965248 -17.9696 -0.965248 0 0 585099. 2024.56 0.52 0.01 0.24 -1 -1 0.52 0.00158506 0.00130224 22 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 11.15 vpr 62.23 MiB -1 -1 0.12 20520 1 0.18 -1 -1 33356 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63720 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 23.9 MiB 0.17 120 1870 496 982 392 62.2 MiB 0.02 0.00 1.19636 -19.4451 -1.19636 1.19636 2.40 3.7551e-05 2.448e-05 0.00208367 0.00148115 32 304 13 6.64007e+06 50232 554710. 1919.41 2.17 0.109511 0.10745 22834 132086 -1 278 13 195 195 9562 2967 0.965248 0.965248 -20.0952 -0.965248 0 0 701300. 2426.64 0.88 0.01 0.20 -1 -1 0.88 0.00184136 0.00152593 25 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 11.67 vpr 62.44 MiB -1 -1 0.42 20672 1 0.14 -1 -1 33344 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63936 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 23.9 MiB 0.03 130 2165 691 1177 297 62.4 MiB 0.01 0.00 1.20736 -22.2309 -1.20736 1.20736 2.12 4.6206e-05 3.0499e-05 0.00223431 0.0015646 30 305 14 6.64007e+06 50232 526063. 1820.29 2.10 0.00848877 0.00621376 22546 126617 -1 263 12 166 166 8586 2519 0.943248 0.943248 -21.1902 -0.943248 0 0 666494. 2306.21 0.99 0.15 0.28 -1 -1 0.99 0.00455345 0.004251 28 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 12.00 vpr 62.50 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33820 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64004 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.9 MiB 0.02 165 2599 732 1310 557 62.5 MiB 0.15 0.00 1.21836 -25.3249 -1.21836 1.21836 2.45 5.1644e-05 3.5057e-05 0.00158046 0.00114333 26 437 16 6.64007e+06 62790 477104. 1650.88 1.77 0.00852253 0.00636628 21682 110474 -1 397 11 212 212 17327 4546 1.12945 1.12945 -27.9248 -1.12945 0 0 585099. 2024.56 0.61 0.01 0.12 -1 -1 0.61 0.00213001 0.00179936 31 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 10.65 vpr 62.37 MiB -1 -1 0.22 20824 1 0.03 -1 -1 33668 -1 -1 5 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63868 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 23.9 MiB 0.11 164 2828 891 1242 695 62.4 MiB 0.01 0.00 1.22936 -27.5958 -1.22936 1.22936 2.21 4.854e-05 3.2426e-05 0.00262652 0.00190085 30 454 16 6.64007e+06 62790 526063. 1820.29 1.99 0.0105108 0.007891 22546 126617 -1 362 10 222 222 11096 3326 1.08545 1.08545 -26.8407 -1.08545 0 0 666494. 2306.21 0.59 0.01 0.26 -1 -1 0.59 0.00186369 0.00158508 34 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.05 vpr 62.55 MiB -1 -1 0.45 20824 1 0.12 -1 -1 33536 -1 -1 5 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64052 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.1 MiB 0.02 222 3193 974 1551 668 62.6 MiB 0.06 0.00 1.24036 -30.5145 -1.24036 1.24036 2.22 6.2061e-05 4.5181e-05 0.0541061 0.0142985 32 529 11 6.64007e+06 62790 554710. 1919.41 2.38 0.0616625 0.0202159 22834 132086 -1 454 13 240 240 14680 3911 1.02025 1.02025 -30.7205 -1.02025 0 0 701300. 2426.64 0.75 0.01 0.64 -1 -1 0.75 0.00245049 0.00204726 37 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 10.25 vpr 62.60 MiB -1 -1 0.21 20824 1 0.14 -1 -1 33236 -1 -1 6 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64100 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.1 MiB 0.04 213 3743 1348 1918 477 62.6 MiB 0.02 0.00 1.25136 -33.0163 -1.25136 1.25136 2.24 5.4144e-05 3.7637e-05 0.00292877 0.0021081 30 572 23 6.64007e+06 75348 526063. 1820.29 1.85 0.0102157 0.00792042 22546 126617 -1 469 19 343 343 21111 5985 1.06545 1.06545 -32.6715 -1.06545 0 0 666494. 2306.21 0.78 0.01 0.37 -1 -1 0.78 0.003265 0.00270897 40 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 11.18 vpr 62.63 MiB -1 -1 0.20 20672 1 0.10 -1 -1 33600 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64136 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.2 MiB 0.01 274 4093 1352 1973 768 62.6 MiB 0.02 0.00 1.26236 -36.4784 -1.26236 1.26236 2.68 6.5983e-05 4.8108e-05 0.00326386 0.00239844 28 682 16 6.64007e+06 87906 500653. 1732.36 2.23 0.0122412 0.00949591 21970 115934 -1 555 16 298 298 19833 5185 1.04225 1.04225 -36.9076 -1.04225 0 0 612192. 2118.31 0.89 0.01 0.21 -1 -1 0.89 0.00150915 0.00128545 44 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 11.20 vpr 62.67 MiB -1 -1 0.19 20824 1 0.05 -1 -1 33884 -1 -1 7 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64172 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 24.1 MiB 0.12 288 4848 1950 2799 99 62.7 MiB 0.02 0.00 1.62267 -39.6749 -1.62267 1.62267 2.18 6.4137e-05 4.5299e-05 0.00367333 0.00267953 32 653 15 6.64007e+06 87906 554710. 1919.41 2.47 0.0137278 0.0106569 22834 132086 -1 593 14 356 356 24127 6463 1.08425 1.08425 -39.5936 -1.08425 0 0 701300. 2426.64 0.74 0.01 0.28 -1 -1 0.74 0.0032119 0.00270729 46 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 10.72 vpr 62.70 MiB -1 -1 0.36 20520 1 0.03 -1 -1 33728 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64208 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.2 MiB 0.02 322 6597 2432 2696 1469 62.7 MiB 0.02 0.00 1.63367 -43.7768 -1.63367 1.63367 2.09 6.3901e-05 4.5016e-05 0.0046946 0.00344363 32 788 17 6.64007e+06 87906 554710. 1919.41 2.09 0.0477106 0.044447 22834 132086 -1 624 18 413 413 27004 7158 1.20445 1.20445 -43.7796 -1.20445 0 0 701300. 2426.64 0.64 0.08 0.29 -1 -1 0.64 0.070691 0.0700791 49 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.16 vpr 62.67 MiB -1 -1 0.24 20520 1 0.08 -1 -1 33856 -1 -1 8 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64172 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.2 MiB 0.07 339 6795 2758 3901 136 62.7 MiB 0.07 0.00 1.66184 -49.3449 -1.66184 1.66184 1.92 7.7354e-05 5.6776e-05 0.00500355 0.00379048 30 863 20 6.64007e+06 100464 526063. 1820.29 2.13 0.0153654 0.012162 22546 126617 -1 724 12 390 390 31617 8054 0.998248 0.998248 -46.0177 -0.998248 0 0 666494. 2306.21 0.91 0.01 0.49 -1 -1 0.91 0.00350457 0.00304339 55 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 12.16 vpr 63.09 MiB -1 -1 0.40 20672 1 0.12 -1 -1 33868 -1 -1 8 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64608 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.4 MiB 0.15 391 7990 3267 4602 121 63.1 MiB 0.01 0.00 1.67767 -55.9871 -1.67767 1.67767 2.80 3.6776e-05 2.6341e-05 0.00240334 0.00180682 30 1096 34 6.64007e+06 100464 526063. 1820.29 2.46 0.0147805 0.0119198 22546 126617 -1 831 18 561 561 50215 12634 1.15145 1.15145 -52.6253 -1.15145 0 0 666494. 2306.21 0.75 0.04 0.25 -1 -1 0.75 0.00464398 0.00399291 61 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.25 vpr 63.01 MiB -1 -1 0.30 20976 1 0.03 -1 -1 33904 -1 -1 10 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64520 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 24.4 MiB 0.17 547 9208 3773 5318 117 63.0 MiB 0.21 0.00 1.69967 -63.665 -1.69967 1.69967 2.85 9.0679e-05 6.8367e-05 0.00508939 0.00388694 32 1178 21 6.64007e+06 125580 554710. 1919.41 2.40 0.0192278 0.0155975 22834 132086 -1 989 21 594 594 55253 12975 1.16125 1.16125 -61.7686 -1.16125 0 0 701300. 2426.64 1.16 0.02 0.34 -1 -1 1.16 0.0053506 0.00457251 68 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 12.12 vpr 63.10 MiB -1 -1 0.36 20824 1 0.04 -1 -1 33908 -1 -1 10 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 24.5 MiB 0.13 529 5574 1023 4232 319 63.1 MiB 0.02 0.00 2.07098 -70.8466 -2.07098 2.07098 2.69 9.9599e-05 7.7808e-05 0.00433361 0.00342044 30 1203 14 6.64007e+06 125580 526063. 1820.29 2.96 0.147754 0.145397 22546 126617 -1 1047 12 497 497 35292 9410 1.29045 1.29045 -68.5213 -1.29045 0 0 666494. 2306.21 0.65 0.01 0.29 -1 -1 0.65 0.00428024 0.00376914 73 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 11.11 vpr 63.12 MiB -1 -1 0.15 20976 1 0.06 -1 -1 33604 -1 -1 11 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 24.5 MiB 0.20 688 14749 3296 10627 826 63.1 MiB 0.02 0.00 2.11498 -86.7749 -2.11498 2.11498 2.37 5.4104e-05 4.1267e-05 0.00411628 0.0031968 32 1615 13 6.64007e+06 138138 554710. 1919.41 2.05 0.0212947 0.0176605 22834 132086 -1 1377 16 687 687 51144 13035 1.59685 1.59685 -89.1812 -1.59685 0 0 701300. 2426.64 0.82 0.19 0.34 -1 -1 0.82 0.0060186 0.00525838 85 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.16 vpr 63.27 MiB -1 -1 0.35 21128 1 0.07 -1 -1 33308 -1 -1 13 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 24.8 MiB 0.07 791 18731 4146 13545 1040 63.3 MiB 0.03 0.00 2.50829 -102.158 -2.50829 2.50829 2.54 5.9685e-05 4.7213e-05 0.00661618 0.00528175 32 1833 31 6.64007e+06 163254 554710. 1919.41 2.61 0.0327079 0.0275612 22834 132086 -1 1523 16 759 759 67770 16580 1.37645 1.37645 -93.7067 -1.37645 0 0 701300. 2426.64 0.77 0.01 0.23 -1 -1 0.77 0.00414823 0.00372966 97 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 12.43 vpr 64.17 MiB -1 -1 0.26 20976 1 0.12 -1 -1 33804 -1 -1 19 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.4 MiB 0.13 1480 31353 9242 19771 2340 64.2 MiB 0.23 0.00 3.38291 -181.53 -3.38291 3.38291 2.29 0.000286648 0.000244081 0.0191959 0.0161984 32 2902 20 6.64007e+06 238602 554710. 1919.41 2.60 0.0910191 0.0834303 22834 132086 -1 2553 15 1039 1039 95766 22209 1.73465 1.73465 -159.111 -1.73465 0 0 701300. 2426.64 0.87 0.08 0.19 -1 -1 0.87 0.0108483 0.00988063 145 2 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 14.10 vpr 64.82 MiB -1 -1 0.44 21280 1 0.15 -1 -1 34032 -1 -1 25 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66376 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.0 MiB 0.04 2038 51621 17664 30557 3400 64.8 MiB 0.57 0.01 4.25753 -269.429 -4.25753 4.25753 2.16 0.000391401 0.000341118 0.0302312 0.0263916 32 4026 35 6.64007e+06 313950 554710. 1919.41 3.13 0.30837 0.298374 22834 132086 -1 3511 16 1376 1376 131216 29937 1.76645 1.76645 -207.549 -1.76645 0 0 701300. 2426.64 0.93 0.06 0.49 -1 -1 0.93 0.017885 0.0165673 193 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 9.94 vpr 62.03 MiB -1 -1 0.19 20368 1 0.03 -1 -1 33576 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63520 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.7 MiB 0.01 45 88 36 48 4 62.0 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 2.68 2.5873e-05 1.5321e-05 0.000344207 0.000253116 12 109 9 6.65987e+06 25356 231691. 801.699 1.05 0.0013852 0.00105225 19090 58805 -1 106 5 36 36 2491 792 0.770048 0.770048 -7.85853 -0.770048 0 0 318358. 1101.58 0.30 0.00 0.23 -1 -1 0.30 0.000666407 0.000536571 10 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 9.91 vpr 62.05 MiB -1 -1 0.20 20368 1 0.17 -1 -1 33576 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63536 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.01 41 456 116 304 36 62.0 MiB 0.00 0.00 0.781048 -9.22036 -0.781048 0.781048 2.07 2.5837e-05 1.6357e-05 0.000833572 0.000564439 26 134 7 6.65987e+06 25356 477104. 1650.88 1.58 0.00437946 0.00306916 21682 110474 -1 108 10 78 78 3229 1129 0.901248 0.901248 -9.34056 -0.901248 0 0 585099. 2024.56 0.71 0.00 0.23 -1 -1 0.71 0.000526461 0.00043274 13 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 9.56 vpr 62.10 MiB -1 -1 0.28 20520 1 0.12 -1 -1 33456 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63588 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 23.6 MiB 0.05 72 1094 334 508 252 62.1 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 2.17 3.2138e-05 1.9024e-05 0.00167306 0.00107151 26 221 9 6.65987e+06 25356 477104. 1650.88 1.56 0.00397657 0.00277689 21682 110474 -1 151 7 96 96 4519 1385 0.912248 0.912248 -12.0702 -0.912248 0 0 585099. 2024.56 0.93 0.00 0.25 -1 -1 0.93 0.00109464 0.000949485 16 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 10.74 vpr 61.92 MiB -1 -1 0.26 20520 1 0.15 -1 -1 33576 -1 -1 4 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63408 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 23.6 MiB 0.01 113 670 139 437 94 61.9 MiB 0.11 0.00 0.825048 -14.1032 -0.825048 0.825048 2.31 4.0371e-05 2.7466e-05 0.105697 0.105411 26 293 16 6.65987e+06 50712 477104. 1650.88 1.66 0.111124 0.109195 21682 110474 -1 283 18 187 187 18934 4701 1.06545 1.06545 -17.5297 -1.06545 0 0 585099. 2024.56 0.62 0.00 0.39 -1 -1 0.62 0.000892076 0.000709589 20 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 11.58 vpr 62.16 MiB -1 -1 0.27 20368 1 0.04 -1 -1 33496 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63656 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 23.9 MiB 0.01 111 1508 461 714 333 62.2 MiB 0.01 0.00 1.18536 -17.1757 -1.18536 1.18536 2.71 3.4756e-05 2.178e-05 0.00177349 0.00120566 28 279 11 6.65987e+06 38034 500653. 1732.36 1.92 0.00496411 0.00367847 21970 115934 -1 273 16 185 185 16138 4416 1.07445 1.07445 -18.9964 -1.07445 0 0 612192. 2118.31 0.72 0.05 0.15 -1 -1 0.72 0.00215737 0.00173907 22 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 12.71 vpr 62.20 MiB -1 -1 0.44 20672 1 0.11 -1 -1 33804 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63692 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 23.7 MiB 0.01 119 1594 461 883 250 62.2 MiB 0.01 0.00 1.19636 -19.4942 -1.19636 1.19636 2.28 4.5778e-05 3.1279e-05 0.00188789 0.00135454 32 327 16 6.65987e+06 50712 554710. 1919.41 2.27 0.00710385 0.00524397 22834 132086 -1 271 13 162 162 9963 2911 1.08545 1.08545 -21.2972 -1.08545 0 0 701300. 2426.64 0.76 0.01 0.36 -1 -1 0.76 0.00203237 0.00165419 25 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 9.92 vpr 62.28 MiB -1 -1 0.18 20520 1 0.04 -1 -1 33688 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63772 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 23.7 MiB 0.01 130 2165 641 1112 412 62.3 MiB 0.01 0.00 1.20736 -22.0911 -1.20736 1.20736 1.96 4.7354e-05 3.2782e-05 0.00231875 0.00166685 26 403 16 6.65987e+06 50712 477104. 1650.88 1.73 0.0424421 0.0399943 21682 110474 -1 356 14 205 205 21198 5568 1.21665 1.21665 -25.2068 -1.21665 0 0 585099. 2024.56 0.57 0.01 0.26 -1 -1 0.57 0.00261276 0.00192711 28 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 10.29 vpr 62.33 MiB -1 -1 0.14 20672 1 0.24 -1 -1 33552 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63824 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.7 MiB 0.01 146 2599 849 1247 503 62.3 MiB 0.01 0.00 1.21836 -24.7702 -1.21836 1.21836 2.38 4.2587e-05 2.7881e-05 0.00233672 0.0016366 28 457 21 6.65987e+06 63390 500653. 1732.36 1.64 0.00855064 0.00633521 21970 115934 -1 397 13 250 250 19292 5220 1.15659 1.15659 -26.5215 -1.15659 0 0 612192. 2118.31 0.91 0.12 0.24 -1 -1 0.91 0.00244685 0.00205769 31 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 11.46 vpr 62.35 MiB -1 -1 0.34 20368 1 0.10 -1 -1 33388 -1 -1 5 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63844 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 23.7 MiB 0.01 164 2624 822 1205 597 62.3 MiB 0.01 0.00 1.22936 -27.5927 -1.22936 1.22936 2.04 4.4761e-05 2.9588e-05 0.00215993 0.0015069 28 538 16 6.65987e+06 63390 500653. 1732.36 1.94 0.00997708 0.0074881 21970 115934 -1 443 12 262 262 20506 5662 1.26065 1.26065 -31.3625 -1.26065 0 0 612192. 2118.31 0.65 0.07 0.16 -1 -1 0.65 0.0025024 0.00202842 34 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.24 vpr 62.38 MiB -1 -1 0.38 20672 1 0.10 -1 -1 33360 -1 -1 5 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63876 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 23.9 MiB 0.11 223 3193 975 1461 757 62.4 MiB 0.07 0.00 1.24036 -30.6298 -1.24036 1.24036 2.43 8.3661e-05 6.4907e-05 0.00302706 0.00221249 32 562 18 6.65987e+06 63390 554710. 1919.41 2.15 0.154473 0.0557576 22834 132086 -1 445 14 258 258 14819 4163 1.11845 1.11845 -31.385 -1.11845 0 0 701300. 2426.64 0.62 0.01 0.43 -1 -1 0.62 0.00275245 0.00228506 37 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 12.07 vpr 62.43 MiB -1 -1 0.26 20824 1 0.15 -1 -1 33556 -1 -1 6 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63924 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 23.9 MiB 0.01 203 3743 1266 1895 582 62.4 MiB 0.09 0.00 1.25136 -33.0797 -1.25136 1.25136 2.28 5.3706e-05 3.707e-05 0.0776697 0.0768519 28 674 24 6.65987e+06 76068 500653. 1732.36 1.97 0.0880606 0.0847292 21970 115934 -1 571 12 340 340 25970 7253 1.27165 1.27165 -36.6933 -1.27165 0 0 612192. 2118.31 0.70 0.01 0.28 -1 -1 0.70 0.002663 0.00225715 40 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 11.24 vpr 62.31 MiB -1 -1 0.33 20824 1 0.01 -1 -1 33448 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63804 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 23.7 MiB 0.01 264 4093 1437 1752 904 62.3 MiB 0.01 0.00 1.26236 -36.2215 -1.26236 1.26236 2.76 5.9701e-05 4.2076e-05 0.00311758 0.00230239 32 673 33 6.65987e+06 88746 554710. 1919.41 1.47 0.0143733 0.0111753 22834 132086 -1 580 25 380 380 86919 43538 1.12945 1.12945 -37.1478 -1.12945 0 0 701300. 2426.64 1.09 0.01 0.28 -1 -1 1.09 0.00227428 0.00191509 44 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 11.61 vpr 62.51 MiB -1 -1 0.27 20824 1 0.13 -1 -1 33904 -1 -1 7 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64012 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 23.9 MiB 0.01 288 4848 1943 2811 94 62.5 MiB 0.07 0.00 1.62267 -39.7289 -1.62267 1.62267 2.42 6.6313e-05 4.6781e-05 0.00383312 0.00283505 32 695 12 6.65987e+06 88746 554710. 1919.41 2.39 0.0368071 0.0339728 22834 132086 -1 607 16 348 348 26963 7175 1.30265 1.30265 -42.536 -1.30265 0 0 701300. 2426.64 0.77 0.01 0.28 -1 -1 0.77 0.00347577 0.00295807 46 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 12.31 vpr 62.54 MiB -1 -1 0.30 20824 1 0.03 -1 -1 33916 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64040 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 23.9 MiB 0.02 308 6597 2389 2698 1510 62.5 MiB 0.16 0.00 1.63367 -42.5457 -1.63367 1.63367 2.43 6.7348e-05 4.7527e-05 0.00523976 0.00381654 32 747 26 6.65987e+06 88746 554710. 1919.41 2.34 0.0168819 0.0131061 22834 132086 -1 627 16 405 405 28816 7723 1.21545 1.21545 -43.8274 -1.21545 0 0 701300. 2426.64 0.83 0.01 0.30 -1 -1 0.83 0.00388144 0.00334456 49 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.57 vpr 62.64 MiB -1 -1 0.35 20672 1 0.01 -1 -1 33732 -1 -1 8 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64144 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.2 MiB 0.02 338 6795 2757 3910 128 62.6 MiB 0.07 0.00 1.66184 -49.2226 -1.66184 1.66184 2.40 9.962e-05 7.8227e-05 0.00496446 0.00358199 30 838 20 6.65987e+06 101424 526063. 1820.29 2.44 0.0563267 0.0124053 22546 126617 -1 708 12 381 381 27467 7119 1.07445 1.07445 -44.2949 -1.07445 0 0 666494. 2306.21 0.97 0.18 0.19 -1 -1 0.97 0.00705218 0.00303661 55 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 11.79 vpr 62.63 MiB -1 -1 0.26 20520 1 0.10 -1 -1 33744 -1 -1 8 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64132 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.0 MiB 0.01 394 7990 3280 4604 106 62.6 MiB 0.03 0.00 1.67767 -56.0732 -1.67767 1.67767 2.31 8.1895e-05 6.0982e-05 0.00534788 0.00407799 30 1149 23 6.65987e+06 101424 526063. 1820.29 2.41 0.142664 0.015267 22546 126617 -1 842 17 502 502 35108 9421 1.24845 1.24845 -55.1316 -1.24845 0 0 666494. 2306.21 0.73 0.11 0.30 -1 -1 0.73 0.00478639 0.00410821 61 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.28 vpr 62.71 MiB -1 -1 0.24 20976 1 0.10 -1 -1 33464 -1 -1 10 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64216 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 24.0 MiB 0.04 488 9208 3771 5298 139 62.7 MiB 0.06 0.00 1.69967 -62.9619 -1.69967 1.69967 2.54 8.9493e-05 6.7219e-05 0.00617353 0.00472204 32 1334 36 6.65987e+06 126780 554710. 1919.41 2.31 0.153493 0.149185 22834 132086 -1 1016 19 614 614 66838 16306 1.36865 1.36865 -65.1455 -1.36865 0 0 701300. 2426.64 1.01 0.06 0.31 -1 -1 1.01 0.0060192 0.00523462 68 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 11.54 vpr 62.94 MiB -1 -1 0.20 21128 1 0.19 -1 -1 33908 -1 -1 10 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64452 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 24.3 MiB 0.03 522 5025 948 3851 226 62.9 MiB 0.01 0.00 2.07098 -69.6207 -2.07098 2.07098 2.28 4.621e-05 3.5204e-05 0.00166952 0.00132579 30 1255 20 6.65987e+06 126780 526063. 1820.29 2.18 0.164409 0.161379 22546 126617 -1 1034 14 497 497 34056 9178 1.39965 1.39965 -70.1013 -1.39965 0 0 666494. 2306.21 1.01 0.02 0.37 -1 -1 1.01 0.00519093 0.00453321 73 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 13.90 vpr 63.10 MiB -1 -1 0.41 20976 1 0.10 -1 -1 33588 -1 -1 11 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 24.5 MiB 0.10 695 10531 2311 7690 530 63.1 MiB 0.05 0.00 2.11498 -86.4875 -2.11498 2.11498 2.64 0.00011162 8.7188e-05 0.00703304 0.00563395 32 1714 40 6.65987e+06 139458 554710. 1919.41 2.96 0.201159 0.195936 22834 132086 -1 1428 16 660 660 61153 16898 1.93545 1.93545 -97.6703 -1.93545 0 0 701300. 2426.64 0.86 0.04 0.19 -1 -1 0.86 0.00595941 0.00525377 85 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.19 vpr 63.26 MiB -1 -1 0.27 21128 1 0.11 -1 -1 33616 -1 -1 13 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64776 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 24.6 MiB 0.11 796 12613 2902 8977 734 63.3 MiB 0.11 0.00 2.50829 -102.591 -2.50829 2.50829 2.65 0.000132489 0.000105962 0.00772371 0.00620396 30 1803 33 6.65987e+06 164814 526063. 1820.29 3.14 0.234035 0.228446 22546 126617 -1 1449 16 692 692 48282 12614 1.55679 1.55679 -98.4661 -1.55679 0 0 666494. 2306.21 0.98 0.04 0.15 -1 -1 0.98 0.0259064 0.0251043 97 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 12.40 vpr 64.03 MiB -1 -1 0.23 21280 1 0.13 -1 -1 33800 -1 -1 19 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.2 MiB 0.07 1495 31353 9814 19140 2399 64.0 MiB 0.28 0.00 3.38291 -183.11 -3.38291 3.38291 2.45 0.00022691 0.000188495 0.0190887 0.0159866 32 3039 39 6.65987e+06 240882 554710. 1919.41 2.81 0.311739 0.1603 22834 132086 -1 2734 29 1154 1154 178039 56730 1.63645 1.63645 -157.11 -1.63645 0 0 701300. 2426.64 1.03 0.32 0.19 -1 -1 1.03 0.0831962 0.081419 145 2 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 14.14 vpr 64.52 MiB -1 -1 0.46 21432 1 0.04 -1 -1 33980 -1 -1 25 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 25.8 MiB 0.20 2040 51621 17960 30273 3388 64.5 MiB 0.80 0.01 4.25753 -270.446 -4.25753 4.25753 2.69 0.000416243 0.000337086 0.244414 0.240219 32 4148 19 6.65987e+06 316950 554710. 1919.41 3.03 0.419778 0.412328 22834 132086 -1 3561 18 1415 1415 153490 35223 1.81945 1.81945 -208.986 -1.81945 0 0 701300. 2426.64 0.80 0.25 0.27 -1 -1 0.80 0.0187225 0.0172631 193 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 10.66 vpr 62.89 MiB -1 -1 0.24 20672 1 0.01 -1 -1 33328 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64400 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 24.4 MiB 0.08 35 142 65 72 5 62.9 MiB 0.00 0.00 0.712895 -7.85699 -0.712895 0.712895 2.44 3.2632e-05 2.0696e-05 0.000548749 0.000377459 18 80 8 6.95648e+06 14475.7 376052. 1301.22 1.50 0.00404716 0.00278646 22882 88689 -1 89 8 40 40 3634 1190 0.74674 0.74674 -8.48094 -0.74674 0 0 470940. 1629.55 0.40 0.00 0.70 -1 -1 0.40 0.000795156 0.000623747 5 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 10.55 vpr 62.93 MiB -1 -1 0.20 20520 1 0.03 -1 -1 33448 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64444 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 24.4 MiB 0.17 31 339 89 221 29 62.9 MiB 0.00 0.00 0.583992 -8.96727 -0.583992 0.583992 2.30 2.6695e-05 1.6073e-05 0.000918211 0.000664278 18 102 17 6.95648e+06 14475.7 376052. 1301.22 1.60 0.00479794 0.003409 22882 88689 -1 105 15 80 80 5128 1694 0.74674 0.74674 -9.62957 -0.74674 0 0 470940. 1629.55 0.63 0.01 0.17 -1 -1 0.63 0.00128722 0.000986276 7 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 11.21 vpr 62.98 MiB -1 -1 0.20 20672 1 0.03 -1 -1 33452 -1 -1 1 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64496 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 24.4 MiB 0.01 45 386 75 296 15 63.0 MiB 0.01 0.00 0.701895 -11.7042 -0.701895 0.701895 2.85 4.0013e-05 2.5904e-05 0.000977981 0.000707013 20 169 7 6.95648e+06 14475.7 414966. 1435.87 1.23 0.00226014 0.00175429 23170 95770 -1 130 7 58 58 3285 1028 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.54 0.00 0.21 -1 -1 0.54 0.00109864 0.000918175 8 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 10.66 vpr 63.02 MiB -1 -1 0.20 20368 1 0.21 -1 -1 33608 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64532 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 24.4 MiB 0.14 98 502 124 370 8 63.0 MiB 0.00 0.00 0.87204 -15.8068 -0.87204 0.87204 1.93 3.5804e-05 2.0361e-05 0.000930109 0.000652379 26 221 12 6.95648e+06 28951.4 503264. 1741.40 1.90 0.00595463 0.00441321 24322 120374 -1 197 4 46 46 2709 758 0.87204 0.87204 -15.9148 -0.87204 0 0 618332. 2139.56 0.62 0.00 0.34 -1 -1 0.62 0.00111754 0.000984916 10 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 11.81 vpr 62.90 MiB -1 -1 0.32 20520 1 0.13 -1 -1 33640 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64412 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.4 MiB 0.21 182 997 285 587 125 62.9 MiB 0.11 0.00 0.852632 -19.1795 -0.852632 0.852632 2.23 6.2319e-05 4.7356e-05 0.00146538 0.00103503 24 369 10 6.95648e+06 28951.4 470940. 1629.55 2.15 0.00634469 0.00468774 24034 113901 -1 347 11 146 146 12368 2959 0.959892 0.959892 -21.6636 -0.959892 0 0 586450. 2029.24 0.67 0.01 0.33 -1 -1 0.67 0.00192602 0.00142305 11 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 11.05 vpr 62.94 MiB -1 -1 0.40 20672 1 0.01 -1 -1 33512 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64448 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 24.6 MiB 0.22 152 658 188 431 39 62.9 MiB 0.00 0.00 0.87204 -21.3276 -0.87204 0.87204 2.20 3.91e-05 2.54e-05 0.0010076 0.000733675 26 342 11 6.95648e+06 28951.4 503264. 1741.40 1.84 0.00452904 0.00341742 24322 120374 -1 332 10 132 132 9588 2514 1.07503 1.07503 -23.6332 -1.07503 0 0 618332. 2139.56 0.90 0.01 0.29 -1 -1 0.90 0.00193242 0.00146704 13 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 12.74 vpr 63.12 MiB -1 -1 0.20 20824 1 0.03 -1 -1 33684 -1 -1 2 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 24.6 MiB 0.16 108 2527 936 1406 185 63.1 MiB 0.14 0.00 0.874632 -21.915 -0.874632 0.874632 2.62 4.0881e-05 2.6473e-05 0.00268734 0.00186369 32 368 30 6.95648e+06 28951.4 586450. 2029.24 2.31 0.0101365 0.00748996 25474 144626 -1 325 24 315 315 22846 6926 1.08603 1.08603 -24.3469 -1.08603 0 0 744469. 2576.02 0.67 0.01 0.23 -1 -1 0.67 0.00319379 0.00257192 14 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 13.94 vpr 63.17 MiB -1 -1 0.25 20520 1 0.15 -1 -1 33820 -1 -1 2 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64688 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 24.4 MiB 0.12 127 1849 605 914 330 63.2 MiB 0.01 0.00 0.896632 -24.7697 -0.896632 0.896632 2.86 4.3666e-05 2.8667e-05 0.00189492 0.00134427 34 472 39 6.95648e+06 28951.4 618332. 2139.56 3.19 0.0151454 0.0112579 25762 151098 -1 376 32 405 405 24729 7029 1.17833 1.17833 -27.3207 -1.17833 0 0 787024. 2723.27 0.67 0.12 0.31 -1 -1 0.67 0.112474 0.00341092 16 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 12.63 vpr 63.04 MiB -1 -1 0.33 20824 1 0.03 -1 -1 33688 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64556 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 24.7 MiB 0.03 149 1424 335 1059 30 63.0 MiB 0.15 0.00 0.879432 -27.154 -0.879432 0.879432 3.02 2.4106e-05 1.6809e-05 0.000834833 0.000641181 28 542 15 6.95648e+06 43427 531479. 1839.03 1.89 0.00813584 0.00624811 24610 126494 -1 474 14 313 313 23256 6856 1.45713 1.45713 -33.3064 -1.45713 0 0 648988. 2245.63 0.78 0.03 0.22 -1 -1 0.78 0.00256985 0.00217734 17 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 14.03 vpr 63.22 MiB -1 -1 0.31 20520 1 0.01 -1 -1 33544 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 24.7 MiB 0.17 191 1581 337 1210 34 63.2 MiB 0.01 0.00 0.918632 -30.4288 -0.918632 0.918632 2.72 5.1834e-05 3.5418e-05 0.00176222 0.00132711 34 575 14 6.95648e+06 43427 618332. 2139.56 3.46 0.0153258 0.0116927 25762 151098 -1 485 17 337 337 32607 9181 1.26153 1.26153 -35.4987 -1.26153 0 0 787024. 2723.27 0.71 0.16 0.15 -1 -1 0.71 0.0031399 0.00258389 19 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 12.82 vpr 63.25 MiB -1 -1 0.29 20520 1 0.08 -1 -1 33532 -1 -1 3 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 24.7 MiB 0.04 373 2046 513 1237 296 63.2 MiB 0.01 0.00 0.951632 -36.1138 -0.951632 0.951632 2.69 6.0847e-05 4.3391e-05 0.00220523 0.00167138 30 810 22 6.95648e+06 43427 556674. 1926.21 1.95 0.011774 0.00919372 25186 138497 -1 726 16 355 355 34660 7362 1.20223 1.20223 -41.7457 -1.20223 0 0 706193. 2443.58 0.95 0.10 0.51 -1 -1 0.95 0.00315757 0.002646 20 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 14.34 vpr 63.27 MiB -1 -1 0.15 20672 1 0.04 -1 -1 33260 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 24.7 MiB 0.10 471 3180 797 1969 414 63.3 MiB 0.01 0.00 0.951632 -40.3696 -0.951632 0.951632 2.56 5.7782e-05 4.0886e-05 0.00290601 0.00217525 34 992 18 6.95648e+06 57902.7 618332. 2139.56 3.89 0.0182963 0.0142161 25762 151098 -1 894 17 431 431 52703 10430 1.29933 1.29933 -49.9099 -1.29933 0 0 787024. 2723.27 1.05 0.03 0.13 -1 -1 1.05 0.00405726 0.00344125 23 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 14.33 vpr 63.34 MiB -1 -1 0.31 20520 1 0.11 -1 -1 33596 -1 -1 3 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64860 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 24.9 MiB 0.12 264 3822 1541 2241 40 63.3 MiB 0.01 0.00 1.33396 -40.3826 -1.33396 1.33396 2.96 2.7499e-05 1.9194e-05 0.00152132 0.00113978 34 707 21 6.95648e+06 43427 618332. 2139.56 3.69 0.019052 0.0147956 25762 151098 -1 602 14 398 398 32258 8155 1.31933 1.31933 -44.7038 -1.31933 0 0 787024. 2723.27 0.96 0.01 0.30 -1 -1 0.96 0.0040139 0.00347101 24 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 16.19 vpr 63.09 MiB -1 -1 0.27 20672 1 0.03 -1 -1 33728 -1 -1 4 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64608 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 24.7 MiB 0.09 280 4848 1977 2824 47 63.1 MiB 0.02 0.00 1.34496 -43.4863 -1.34496 1.34496 2.58 6.5584e-05 4.6315e-05 0.00395712 0.00296153 38 712 17 6.95648e+06 57902.7 678818. 2348.85 4.08 0.0886831 0.0843662 26626 170182 -1 566 20 377 377 26739 6756 1.33033 1.33033 -46.6098 -1.33033 0 0 902133. 3121.57 1.67 0.01 0.23 -1 -1 1.67 0.00434119 0.00367592 25 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 14.98 vpr 63.44 MiB -1 -1 0.23 20672 1 0.03 -1 -1 33588 -1 -1 4 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64964 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 24.9 MiB 0.46 309 6963 2952 3964 47 63.4 MiB 0.13 0.00 1.36696 -49.676 -1.36696 1.36696 3.20 7.8557e-05 5.7041e-05 0.00550722 0.00410502 34 865 23 6.95648e+06 57902.7 618332. 2139.56 4.05 0.228311 0.222859 25762 151098 -1 729 14 458 458 47297 11443 1.33033 1.33033 -53.903 -1.33033 0 0 787024. 2723.27 0.78 0.14 0.37 -1 -1 0.78 0.00446195 0.00376613 28 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 17.53 vpr 63.75 MiB -1 -1 0.42 20976 1 0.01 -1 -1 33756 -1 -1 4 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.2 MiB 0.34 350 7248 3002 4195 51 63.7 MiB 0.02 0.00 1.38896 -55.9236 -1.38896 1.38896 3.46 8.7823e-05 6.3814e-05 0.00568418 0.00430835 36 926 17 6.95648e+06 57902.7 648988. 2245.63 4.25 0.0260232 0.0209111 26050 158493 -1 791 21 569 569 56867 12664 1.20023 1.20023 -56.5033 -1.20023 0 0 828058. 2865.25 0.92 0.03 0.36 -1 -1 0.92 0.0034268 0.00298962 31 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 15.84 vpr 63.68 MiB -1 -1 0.36 20672 1 0.16 -1 -1 33728 -1 -1 5 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 25.0 MiB 0.26 398 9041 3734 5246 61 63.7 MiB 0.17 0.00 1.41096 -61.6599 -1.41096 1.41096 2.36 9.578e-05 7.16e-05 0.0064002 0.00497489 38 1036 22 6.95648e+06 72378.4 678818. 2348.85 5.68 0.0323448 0.0264989 26626 170182 -1 797 16 578 578 53010 12358 1.39633 1.39633 -65.2027 -1.39633 0 0 902133. 3121.57 1.30 0.02 0.40 -1 -1 1.30 0.00533483 0.0046945 34 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 15.20 vpr 63.60 MiB -1 -1 0.24 20976 1 0.21 -1 -1 33892 -1 -1 5 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65124 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.36 521 10050 4309 5679 62 63.6 MiB 0.12 0.00 1.43296 -70.1603 -1.43296 1.43296 2.35 8.9771e-05 6.7397e-05 0.0065331 0.00510073 34 1511 50 6.95648e+06 72378.4 618332. 2139.56 5.34 0.0368012 0.0302872 25762 151098 -1 1077 12 570 570 53399 12722 1.46853 1.46853 -76.728 -1.46853 0 0 787024. 2723.27 1.09 0.01 0.33 -1 -1 1.09 0.00313314 0.0028636 37 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 16.19 vpr 63.89 MiB -1 -1 0.25 20520 1 0.11 -1 -1 33608 -1 -1 6 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 25.3 MiB 0.17 560 13961 5920 7973 68 63.9 MiB 0.10 0.00 1.47696 -82.5806 -1.47696 1.47696 2.22 0.000119246 9.2437e-05 0.00918984 0.00724911 40 1620 25 6.95648e+06 86854.1 706193. 2443.58 6.18 0.0544661 0.0469377 26914 176310 -1 1315 19 840 840 100303 24559 1.57663 1.57663 -91.5568 -1.57663 0 0 926341. 3205.33 1.06 0.08 0.64 -1 -1 1.06 0.00743475 0.00655431 43 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 17.45 vpr 64.07 MiB -1 -1 0.49 20824 1 0.02 -1 -1 33644 -1 -1 7 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 25.3 MiB 0.41 758 16160 6842 9176 142 64.1 MiB 0.10 0.00 1.88129 -97.0955 -1.88129 1.88129 2.71 0.000140951 0.000102614 0.0105387 0.00846761 44 1764 48 6.95648e+06 101330 787024. 2723.27 6.57 0.056906 0.048188 27778 195446 -1 1312 18 905 905 77762 17648 1.40103 1.40103 -96.7405 -1.40103 0 0 997811. 3452.63 1.77 0.03 0.43 -1 -1 1.77 0.00832057 0.00726346 49 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 17.25 vpr 64.78 MiB -1 -1 0.32 20976 1 0.11 -1 -1 33812 -1 -1 10 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66336 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1331 30743 8901 19960 1882 64.8 MiB 0.32 0.00 2.41762 -163.869 -2.41762 2.41762 1.50 0.000232882 0.000194132 0.05579 0.0527445 50 2695 21 6.95648e+06 144757 902133. 3121.57 7.42 0.464029 0.454269 28642 213929 -1 2422 17 1163 1163 124464 29323 1.74433 1.74433 -166.732 -1.74433 0 0 1.08113e+06 3740.92 1.32 0.21 0.50 -1 -1 1.32 0.198559 0.197391 73 2 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 21.18 vpr 65.45 MiB -1 -1 0.23 21128 1 0.03 -1 -1 34044 -1 -1 13 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67016 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 26.5 MiB 0.26 2090 36315 10749 23078 2488 65.4 MiB 0.28 0.00 2.95395 -243.637 -2.95395 2.95395 3.39 0.000362167 0.00030233 0.0155867 0.0133923 58 3533 18 6.95648e+06 188184 997811. 3452.63 9.14 0.350972 0.3398 30370 251734 -1 3219 22 1421 1421 194643 38773 1.87583 1.87583 -220.234 -1.87583 0 0 1.25153e+06 4330.55 1.08 0.14 0.64 -1 -1 1.08 0.0120357 0.0110394 97 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 10.47 vpr 62.72 MiB -1 -1 0.36 20672 1 0.07 -1 -1 33480 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64224 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.1 MiB 0.01 38 142 63 74 5 62.7 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 2.97 2.2529e-05 1.2545e-05 0.000449283 0.000299178 14 104 8 6.99608e+06 14715.7 292583. 1012.40 1.19 0.00133338 0.000985117 22018 70521 -1 85 6 32 32 1234 425 0.834592 0.834592 -8.74684 -0.834592 0 0 376052. 1301.22 0.42 0.00 0.17 -1 -1 0.42 0.000755263 0.000601649 5 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 10.78 vpr 62.62 MiB -1 -1 0.25 20368 1 0.01 -1 -1 33604 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64120 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 24.3 MiB 0.06 35 375 107 237 31 62.6 MiB 0.00 0.00 0.712895 -9.56286 -0.712895 0.712895 2.60 2.1398e-05 1.1669e-05 0.000692021 0.000450452 22 122 12 6.99608e+06 14715.7 443629. 1535.05 1.41 0.00456317 0.00312246 23458 102101 -1 88 10 56 56 2042 763 0.834592 0.834592 -9.47336 -0.834592 0 0 531479. 1839.03 0.60 0.00 0.19 -1 -1 0.60 0.00121047 0.00100682 7 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 10.97 vpr 62.80 MiB -1 -1 0.34 20368 1 0.03 -1 -1 33640 -1 -1 1 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64312 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 24.4 MiB 0.00 44 409 92 302 15 62.8 MiB 0.01 0.00 0.837432 -12.9697 -0.837432 0.837432 2.83 2.655e-05 1.596e-05 0.000744019 0.000508329 22 151 9 6.99608e+06 14715.7 443629. 1535.05 1.57 0.0364137 0.0349213 23458 102101 -1 153 8 64 64 3866 1186 0.837432 0.837432 -14.2048 -0.837432 0 0 531479. 1839.03 0.58 0.00 0.42 -1 -1 0.58 0.00106283 0.0008683 8 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 10.61 vpr 62.84 MiB -1 -1 0.44 20520 1 0.09 -1 -1 33764 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64352 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 24.3 MiB 0.01 66 472 112 343 17 62.8 MiB 0.00 0.00 0.802432 -14.7849 -0.802432 0.802432 2.48 3.1573e-05 1.9447e-05 0.000949009 0.000710797 18 222 10 6.99608e+06 29431.4 376052. 1301.22 1.32 0.0025847 0.00203339 22882 88689 -1 204 7 90 90 4789 1589 0.816915 0.816915 -16.462 -0.816915 0 0 470940. 1629.55 0.46 0.00 0.12 -1 -1 0.46 0.000627637 0.000544936 10 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 12.39 vpr 62.59 MiB -1 -1 0.35 20368 1 0.03 -1 -1 33648 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64092 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.1 MiB 0.09 80 745 225 479 41 62.6 MiB 0.00 0.00 0.859432 -18.0958 -0.859432 0.859432 2.37 3.4587e-05 2.1427e-05 0.00101806 0.000709844 26 249 21 6.99608e+06 29431.4 503264. 1741.40 2.47 0.00708884 0.00525389 24322 120374 -1 214 9 118 118 7322 2251 1.04203 1.04203 -18.2768 -1.04203 0 0 618332. 2139.56 0.84 0.01 0.25 -1 -1 0.84 0.00147446 0.00122861 11 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 12.28 vpr 62.91 MiB -1 -1 0.42 20824 1 0.14 -1 -1 33836 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64416 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 24.4 MiB 0.16 203 658 170 428 60 62.9 MiB 0.00 0.00 0.87204 -21.2308 -0.87204 0.87204 2.56 3.8018e-05 2.4469e-05 0.000977848 0.000722478 26 451 15 6.99608e+06 29431.4 503264. 1741.40 2.48 0.00677336 0.00510325 24322 120374 -1 392 10 158 158 16021 3888 1.05303 1.05303 -23.7656 -1.05303 0 0 618332. 2139.56 0.92 0.24 0.18 -1 -1 0.92 0.00174968 0.00148061 13 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 15.14 vpr 62.94 MiB -1 -1 0.33 20824 1 0.05 -1 -1 33664 -1 -1 2 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64452 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 24.6 MiB 0.01 110 2479 792 1104 583 62.9 MiB 0.22 0.00 0.846432 -21.9214 -0.846432 0.846432 2.64 3.6388e-05 2.325e-05 0.00241664 0.00163343 34 332 29 6.99608e+06 29431.4 618332. 2139.56 3.30 0.0158963 0.0118566 25762 151098 -1 301 13 234 234 12303 3969 0.940679 0.940679 -22.9435 -0.940679 0 0 787024. 2723.27 0.96 0.00 0.35 -1 -1 0.96 0.00101331 0.000856234 14 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 15.63 vpr 62.99 MiB -1 -1 0.51 20672 1 0.08 -1 -1 33536 -1 -1 2 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64504 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 24.4 MiB 0.01 134 1739 500 978 261 63.0 MiB 0.01 0.00 0.857432 -24.4123 -0.857432 0.857432 2.19 4.3448e-05 2.8916e-05 0.00187035 0.00133527 34 441 36 6.99608e+06 29431.4 618332. 2139.56 3.11 0.0153559 0.0114292 25762 151098 -1 341 18 304 304 17226 5175 1.09703 1.09703 -25.3097 -1.09703 0 0 787024. 2723.27 0.84 0.01 0.34 -1 -1 0.84 0.0027254 0.00223722 16 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 13.95 vpr 63.04 MiB -1 -1 0.68 20672 1 0.22 -1 -1 33384 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64548 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 24.4 MiB 0.18 157 1298 273 992 33 63.0 MiB 0.01 0.00 0.879432 -27.0809 -0.879432 0.879432 2.44 4.2802e-05 2.8745e-05 0.00134119 0.000965426 30 510 13 6.99608e+06 44147 556674. 1926.21 2.21 0.00894275 0.00689373 25186 138497 -1 413 14 270 270 18051 5350 1.08603 1.08603 -30.4861 -1.08603 0 0 706193. 2443.58 0.59 0.01 0.29 -1 -1 0.59 0.00264179 0.00219367 17 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 12.64 vpr 62.91 MiB -1 -1 0.30 20672 1 0.02 -1 -1 33668 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64416 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 24.6 MiB 0.07 214 1861 414 1414 33 62.9 MiB 0.20 0.00 0.890432 -31.2249 -0.890432 0.890432 2.52 4.8969e-05 3.352e-05 0.182817 0.182263 26 593 14 6.99608e+06 44147 503264. 1741.40 1.56 0.190055 0.187948 24322 120374 -1 532 16 359 359 30608 8283 1.07503 1.07503 -35.6333 -1.07503 0 0 618332. 2139.56 0.89 0.05 0.20 -1 -1 0.89 0.00339207 0.00290591 19 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 10.79 vpr 63.10 MiB -1 -1 0.26 20824 1 0.17 -1 -1 33676 -1 -1 3 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 24.6 MiB 0.02 395 2354 574 1438 342 63.1 MiB 0.01 0.00 0.912432 -36.6204 -0.912432 0.912432 2.53 5.5368e-05 3.8854e-05 0.00346235 0.00286187 30 794 18 6.99608e+06 44147 556674. 1926.21 1.92 0.0121767 0.00962023 25186 138497 -1 704 18 360 360 33967 7040 1.13003 1.13003 -40.2917 -1.13003 0 0 706193. 2443.58 0.87 0.01 0.26 -1 -1 0.87 0.00340107 0.00284109 20 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 12.25 vpr 62.90 MiB -1 -1 0.49 20824 1 0.01 -1 -1 33620 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64412 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 24.6 MiB 0.01 470 2571 633 1642 296 62.9 MiB 0.01 0.00 0.923432 -39.2056 -0.923432 0.923432 2.50 5.9918e-05 4.2888e-05 0.00229457 0.00170827 34 979 33 6.99608e+06 58862.7 618332. 2139.56 3.17 0.0305628 0.0259083 25762 151098 -1 864 19 475 475 57956 11480 1.16303 1.16303 -45.1457 -1.16303 0 0 787024. 2723.27 0.90 0.02 0.36 -1 -1 0.90 0.00380817 0.00319353 23 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 13.20 vpr 63.03 MiB -1 -1 0.30 20672 1 0.07 -1 -1 33572 -1 -1 3 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64540 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 24.6 MiB 0.01 264 3822 1512 2266 44 63.0 MiB 0.01 0.00 1.29476 -39.4641 -1.29476 1.29476 2.24 6.1184e-05 4.2907e-05 0.00333509 0.00247868 34 753 25 6.99608e+06 44147 618332. 2139.56 3.78 0.0279486 0.0169803 25762 151098 -1 609 16 403 403 33569 8467 1.28633 1.28633 -44.8569 -1.28633 0 0 787024. 2723.27 0.93 0.10 0.27 -1 -1 0.93 0.00399309 0.00339608 24 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 13.42 vpr 63.21 MiB -1 -1 0.51 20672 1 0.05 -1 -1 33748 -1 -1 4 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64728 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 24.7 MiB 0.02 279 4848 1973 2828 47 63.2 MiB 0.02 0.00 1.31676 -42.9938 -1.31676 1.31676 2.89 6.7711e-05 4.8654e-05 0.00396539 0.00296622 34 883 23 6.99608e+06 58862.7 618332. 2139.56 3.64 0.0260294 0.0210396 25762 151098 -1 611 18 425 425 38814 9330 1.27533 1.27533 -46.1248 -1.27533 0 0 787024. 2723.27 0.91 0.14 0.35 -1 -1 0.91 0.00255674 0.00222977 25 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 14.67 vpr 63.27 MiB -1 -1 0.35 20672 1 0.06 -1 -1 33728 -1 -1 4 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 24.7 MiB 0.02 309 6963 2905 3992 66 63.3 MiB 0.04 0.00 1.33876 -48.9536 -1.33876 1.33876 2.59 7.2635e-05 5.3019e-05 0.00526834 0.00400827 36 883 14 6.99608e+06 58862.7 648988. 2245.63 4.44 0.0841584 0.0788406 26050 158493 -1 712 19 483 483 47651 11392 1.31933 1.31933 -52.427 -1.31933 0 0 828058. 2865.25 0.96 0.01 0.25 -1 -1 0.96 0.00242875 0.00210724 28 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 13.63 vpr 63.36 MiB -1 -1 0.50 20976 1 0.03 -1 -1 34060 -1 -1 4 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 24.7 MiB 0.05 346 7115 2925 4148 42 63.4 MiB 0.12 0.00 1.34976 -55.318 -1.34976 1.34976 2.54 8.0373e-05 5.9414e-05 0.00533405 0.00407093 34 1048 37 6.99608e+06 58862.7 618332. 2139.56 4.13 0.0312247 0.0251989 25762 151098 -1 844 22 516 516 73942 27602 1.34133 1.34133 -60.4831 -1.34133 0 0 787024. 2723.27 0.82 0.24 0.20 -1 -1 0.82 0.00381383 0.00336152 31 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 15.70 vpr 63.50 MiB -1 -1 0.36 20976 1 0.01 -1 -1 33724 -1 -1 5 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 24.9 MiB 0.09 396 9041 3748 5233 60 63.5 MiB 0.10 0.00 1.37176 -60.8627 -1.37176 1.37176 2.67 0.000151071 0.00012521 0.00647059 0.00505637 36 1116 23 6.99608e+06 73578.4 648988. 2245.63 4.53 0.0299275 0.0242985 26050 158493 -1 900 16 573 573 55117 12978 1.24618 1.24618 -61.2695 -1.24618 0 0 828058. 2865.25 1.16 0.02 0.24 -1 -1 1.16 0.00502995 0.00439933 34 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 16.44 vpr 63.59 MiB -1 -1 0.23 20976 1 0.22 -1 -1 33732 -1 -1 5 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 24.9 MiB 0.03 446 10050 4202 5799 49 63.6 MiB 0.23 0.00 1.39376 -66.6204 -1.39376 1.39376 2.64 9.6425e-05 7.1858e-05 0.0074431 0.00583932 38 1240 31 6.99608e+06 73578.4 678818. 2348.85 6.04 0.147152 0.140951 26626 170182 -1 945 16 614 614 67437 16921 1.39633 1.39633 -70.5813 -1.39633 0 0 902133. 3121.57 1.01 0.04 0.50 -1 -1 1.01 0.0269242 0.0261703 37 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 17.51 vpr 63.73 MiB -1 -1 0.39 20824 1 0.33 -1 -1 33480 -1 -1 6 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.0 MiB 0.12 634 13961 5842 8023 96 63.7 MiB 0.18 0.00 1.44876 -81.1127 -1.44876 1.44876 2.51 0.000131171 0.000100971 0.00969452 0.00760927 34 1802 49 6.99608e+06 88294.1 618332. 2139.56 6.90 0.205044 0.0821 25762 151098 -1 1281 17 737 737 70573 16932 1.53263 1.53263 -87.6927 -1.53263 0 0 787024. 2723.27 0.82 0.07 0.32 -1 -1 0.82 0.00703692 0.00608612 43 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 16.38 vpr 63.90 MiB -1 -1 0.27 21128 1 0.02 -1 -1 33608 -1 -1 7 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 25.3 MiB 0.06 748 16160 6967 9054 139 63.9 MiB 0.16 0.00 1.85309 -96.1412 -1.85309 1.85309 2.75 0.000137113 0.000106234 0.124649 0.122525 42 1640 29 6.99608e+06 103010 744469. 2576.02 4.77 0.206342 0.198998 27202 183097 -1 1314 13 757 757 63756 14934 1.33503 1.33503 -92.8832 -1.33503 0 0 949917. 3286.91 1.37 0.13 0.63 -1 -1 1.37 0.122107 0.0035652 49 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 19.19 vpr 64.61 MiB -1 -1 0.28 21128 1 0.17 -1 -1 33816 -1 -1 10 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 25.8 MiB 0.12 1337 28648 7802 19085 1761 64.6 MiB 0.38 0.00 2.38942 -163.539 -2.38942 2.38942 2.61 0.000104946 8.5584e-05 0.126402 0.0148677 46 3018 26 6.99608e+06 147157 828058. 2865.25 7.82 0.718842 0.600381 28066 200906 -1 2492 22 1225 1225 243471 79327 1.93993 1.93993 -175.414 -1.93993 0 0 1.01997e+06 3529.29 1.33 0.44 0.46 -1 -1 1.33 0.0150943 0.0136729 73 2 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 19.90 vpr 65.04 MiB -1 -1 0.32 21128 1 0.12 -1 -1 34040 -1 -1 13 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66604 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 26.3 MiB 0.16 2094 36315 10889 23051 2375 65.0 MiB 0.32 0.00 2.92575 -240.987 -2.92575 2.92575 3.25 0.000378741 0.000296664 0.135806 0.13266 50 3870 42 6.99608e+06 191304 902133. 3121.57 8.28 0.464402 0.451214 28642 213929 -1 3432 17 1390 1390 172611 34629 1.80403 1.80403 -222.952 -1.80403 0 0 1.08113e+06 3740.92 1.11 0.30 0.48 -1 -1 1.11 0.016813 0.0153724 97 2 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_003bits.v common 11.19 vpr 62.19 MiB -1 -1 0.20 20672 1 0.09 -1 -1 35688 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63680 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 23.6 MiB 0.00 84 103 37 64 2 62.2 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 2.42 2.4207e-05 1.3678e-05 0.000405836 0.000289889 18 138 7 6.79088e+06 13472 376052. 1301.22 1.63 0.00131201 0.000992992 22222 88205 -1 139 7 36 36 3554 874 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.65 0.00 0.10 -1 -1 0.65 0.000401173 0.000330687 6 4 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_004bits.v common 10.38 vpr 62.22 MiB -1 -1 0.23 20672 2 0.20 -1 -1 35984 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63716 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 23.6 MiB 0.01 35 357 92 226 39 62.2 MiB 0.00 0.00 0.883748 -9.933 -0.883748 0.883748 2.73 2.5136e-05 1.4415e-05 0.000773696 0.000511385 18 144 17 6.79088e+06 13472 376052. 1301.22 1.29 0.00231991 0.00169472 22222 88205 -1 110 7 44 44 1714 684 0.883748 0.883748 -10.7206 -0.883748 0 0 470940. 1629.55 0.42 0.00 0.14 -1 -1 0.42 0.000942456 0.000614038 8 6 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_005bits.v common 12.19 vpr 62.26 MiB -1 -1 0.28 20216 2 0.16 -1 -1 35412 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63752 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 23.8 MiB 0.01 56 369 83 271 15 62.3 MiB 0.00 0.00 1.02368 -13.1072 -1.02368 1.02368 2.34 3.047e-05 1.8884e-05 0.000750678 0.000534848 30 190 11 6.79088e+06 26944 556674. 1926.21 2.27 0.00502002 0.00355271 24526 138013 -1 148 7 57 63 2684 856 1.02368 1.02368 -13.4626 -1.02368 0 0 706193. 2443.58 0.83 0.00 0.15 -1 -1 0.83 0.000507138 0.000436108 10 7 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_006bits.v common 11.86 vpr 62.29 MiB -1 -1 0.32 20672 3 0.23 -1 -1 35424 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63788 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 23.8 MiB 0.01 84 562 132 416 14 62.3 MiB 0.00 0.00 1.14898 -15.8855 -1.14898 1.14898 2.67 3.6688e-05 2.3531e-05 0.000949484 0.000677554 22 278 10 6.79088e+06 26944 443629. 1535.05 2.13 0.00563681 0.00411925 22798 101617 -1 203 9 87 90 4352 1382 1.05944 1.05944 -16.5802 -1.05944 0 0 531479. 1839.03 0.70 0.00 0.33 -1 -1 0.70 0.000679206 0.000585462 11 9 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_007bits.v common 10.84 vpr 62.33 MiB -1 -1 0.15 20824 3 0.03 -1 -1 35512 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63824 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 23.8 MiB 0.01 105 1609 651 939 19 62.3 MiB 0.01 0.00 1.18818 -19.0107 -1.18818 1.18818 2.07 3.6549e-05 2.3592e-05 0.00189198 0.00126399 26 275 20 6.79088e+06 26944 503264. 1741.40 2.04 0.150187 0.00611635 23662 119890 -1 243 8 132 150 8774 2913 1.18818 1.18818 -20.6489 -1.18818 0 0 618332. 2139.56 0.84 0.01 0.17 -1 -1 0.84 0.00154986 0.00132232 13 10 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_008bits.v common 11.02 vpr 62.40 MiB -1 -1 0.30 20520 3 0.13 -1 -1 35620 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63900 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 23.9 MiB 0.23 265 1246 323 720 203 62.4 MiB 0.01 0.00 1.52493 -25.689 -1.52493 1.52493 1.97 3.6146e-05 2.3098e-05 0.00172847 0.00129291 26 569 23 6.79088e+06 26944 503264. 1741.40 2.57 0.00801048 0.00595151 23662 119890 -1 532 8 170 202 16940 3844 1.27433 1.27433 -27.5744 -1.27433 0 0 618332. 2139.56 1.20 0.18 0.22 -1 -1 1.20 0.17664 0.176461 16 14 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_009bits.v common 13.03 vpr 62.42 MiB -1 -1 0.38 20824 4 0.11 -1 -1 35472 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63916 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 23.9 MiB 0.04 127 2032 631 960 441 62.4 MiB 0.00 0.00 1.31348 -24.6536 -1.31348 1.31348 2.34 1.8957e-05 1.2392e-05 0.00102259 0.000735903 28 516 43 6.79088e+06 40416 531479. 1839.03 2.39 0.0113625 0.0089413 23950 126010 -1 416 9 213 217 11180 3714 1.22389 1.22389 -25.8749 -1.22389 0 0 648988. 2245.63 0.51 0.01 0.30 -1 -1 0.51 0.0019508 0.00167815 17 13 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_010bits.v common 13.90 vpr 62.48 MiB -1 -1 0.27 20672 4 0.17 -1 -1 35628 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63976 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 23.9 MiB 0.67 244 2429 615 1619 195 62.5 MiB 0.16 0.00 1.85398 -32.5153 -1.85398 1.85398 2.96 2.4064e-05 1.6895e-05 0.00278023 0.00203947 26 661 19 6.79088e+06 40416 503264. 1741.40 2.03 0.0116419 0.00898249 23662 119890 -1 565 14 238 294 23917 5793 1.65028 1.65028 -35.0292 -1.65028 0 0 618332. 2139.56 0.70 0.01 0.18 -1 -1 0.70 0.00294845 0.00239755 21 17 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_011bits.v common 12.67 vpr 62.29 MiB -1 -1 0.23 20824 5 0.15 -1 -1 35756 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63780 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 23.9 MiB 0.45 176 2243 530 1542 171 62.3 MiB 0.01 0.00 1.90432 -33.5201 -1.90432 1.90432 2.64 5.2936e-05 3.7394e-05 0.00259265 0.00194883 26 600 28 6.79088e+06 40416 503264. 1741.40 2.60 0.121237 0.0104145 23662 119890 -1 415 15 287 353 19584 6651 2.06533 2.06533 -35.9914 -2.06533 0 0 618332. 2139.56 0.93 0.00 0.27 -1 -1 0.93 0.00151539 0.0013103 22 19 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_012bits.v common 12.23 vpr 62.57 MiB -1 -1 0.17 20824 5 0.04 -1 -1 35532 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64076 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 24.2 MiB 0.58 399 2141 527 1390 224 62.6 MiB 0.15 0.00 1.86512 -43.4929 -1.86512 1.86512 2.18 5.8404e-05 4.1031e-05 0.00239636 0.00181652 30 820 13 6.79088e+06 40416 556674. 1926.21 2.22 0.00844775 0.00681272 24526 138013 -1 728 11 256 311 20183 4744 1.67834 1.67834 -42.9812 -1.67834 0 0 706193. 2443.58 0.60 0.18 0.39 -1 -1 0.60 0.00294636 0.00256906 23 21 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_013bits.v common 14.27 vpr 62.64 MiB -1 -1 0.22 20824 5 0.18 -1 -1 35532 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64140 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 24.2 MiB 1.08 320 2045 440 1409 196 62.6 MiB 0.08 0.07 2.15497 -44.6625 -2.15497 2.15497 2.41 6.4133e-05 4.6309e-05 0.00226517 0.00176553 34 775 12 6.79088e+06 53888 618332. 2139.56 2.98 0.0148579 0.0117234 25102 150614 -1 737 12 259 330 24924 5934 1.81483 1.81483 -44.2403 -1.81483 0 0 787024. 2723.27 0.82 0.01 0.32 -1 -1 0.82 0.00345376 0.00301564 27 24 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_014bits.v common 14.52 vpr 62.66 MiB -1 -1 0.26 20824 6 0.28 -1 -1 35520 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64160 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 24.1 MiB 0.87 242 2310 439 1830 41 62.7 MiB 0.01 0.00 2.36642 -47.3554 -2.36642 2.36642 2.93 6.7282e-05 4.9969e-05 0.00253503 0.00197787 28 885 12 6.79088e+06 53888 531479. 1839.03 2.54 0.0878789 0.0860628 23950 126010 -1 694 18 355 423 25811 7679 2.24112 2.24112 -50.4415 -2.24112 0 0 648988. 2245.63 0.87 0.02 0.30 -1 -1 0.87 0.0152343 0.0146856 28 23 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_015bits.v common 14.04 vpr 62.55 MiB -1 -1 0.28 20976 6 0.17 -1 -1 35768 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64056 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 24.1 MiB 1.35 486 4708 1100 3116 492 62.6 MiB 0.09 0.00 2.44482 -56.7016 -2.44482 2.44482 2.28 7.849e-05 5.7847e-05 0.00502122 0.00386535 34 1053 15 6.79088e+06 67360 618332. 2139.56 3.25 0.137256 0.0184965 25102 150614 -1 930 16 321 449 31351 7409 2.53092 2.53092 -58.7374 -2.53092 0 0 787024. 2723.27 0.76 0.01 0.43 -1 -1 0.76 0.0042529 0.003728 31 27 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_016bits.v common 14.94 vpr 62.54 MiB -1 -1 0.22 20672 7 0.07 -1 -1 35648 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64044 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 24.1 MiB 2.06 552 6503 2125 3261 1117 62.5 MiB 0.02 0.00 2.73468 -63.9664 -2.73468 2.73468 2.71 9.3813e-05 7.352e-05 0.00601155 0.00455128 34 1109 16 6.79088e+06 67360 618332. 2139.56 3.47 0.0227638 0.0183302 25102 150614 -1 988 15 341 443 32433 7411 2.60594 2.60594 -65.337 -2.60594 0 0 787024. 2723.27 1.13 0.06 0.20 -1 -1 1.13 0.00453778 0.00397847 32 30 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_018bits.v common 16.86 vpr 62.70 MiB -1 -1 0.35 20824 7 0.13 -1 -1 35692 -1 -1 6 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64200 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 24.2 MiB 3.98 374 3234 672 2521 41 62.7 MiB 0.01 0.00 3.37591 -72.5139 -3.37591 3.37591 2.77 4.5418e-05 3.5267e-05 0.0016187 0.00130033 34 935 9 6.79088e+06 80832 618332. 2139.56 3.63 0.0441336 0.0399196 25102 150614 -1 820 9 325 405 21162 6087 3.12531 3.12531 -70.5514 -3.12531 0 0 787024. 2723.27 0.74 0.01 0.27 -1 -1 0.74 0.00433232 0.00394249 37 35 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_020bits.v common 14.46 vpr 63.07 MiB -1 -1 0.31 20824 8 0.15 -1 -1 35880 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64584 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 24.5 MiB 1.70 404 5588 1196 4245 147 63.1 MiB 0.02 0.00 2.87709 -74.8082 -2.87709 2.87709 2.28 9.2094e-05 6.8755e-05 0.00476127 0.00372637 28 1437 35 6.79088e+06 80832 531479. 1839.03 3.43 0.151407 0.14692 23950 126010 -1 1078 12 478 610 44214 11821 2.73129 2.73129 -79.2353 -2.73129 0 0 648988. 2245.63 0.87 0.07 0.26 -1 -1 0.87 0.0613965 0.0606679 41 37 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_022bits.v common 15.14 vpr 63.05 MiB -1 -1 0.38 20520 9 0.07 -1 -1 35892 -1 -1 6 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64568 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 24.5 MiB 1.29 495 9064 3734 5299 31 63.1 MiB 0.04 0.00 3.44738 -91.1716 -3.44738 3.44738 2.37 0.000111915 8.4938e-05 0.0231437 0.0215498 34 1262 15 6.79088e+06 80832 618332. 2139.56 4.16 0.0775318 0.0713178 25102 150614 -1 1009 10 451 546 33844 8849 3.10725 3.10725 -87.5868 -3.10725 0 0 787024. 2723.27 0.91 0.01 0.25 -1 -1 0.91 0.00520362 0.00471908 43 41 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_024bits.v common 16.70 vpr 63.18 MiB -1 -1 0.26 20824 10 0.18 -1 -1 35900 -1 -1 8 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64700 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 24.5 MiB 2.43 703 7914 1830 5632 452 63.2 MiB 0.10 0.00 3.44744 -102.94 -3.44744 3.44744 2.36 0.00011432 9.0299e-05 0.00641115 0.00521856 34 1579 20 6.79088e+06 107776 618332. 2139.56 4.19 0.0311201 0.026215 25102 150614 -1 1320 11 467 546 38551 9262 3.311 3.311 -101.159 -3.311 0 0 787024. 2723.27 0.82 0.01 0.59 -1 -1 0.82 0.00313314 0.00274833 48 44 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_028bits.v common 17.52 vpr 63.35 MiB -1 -1 0.25 20672 11 0.23 -1 -1 35760 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64872 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 24.7 MiB 4.32 745 10531 2305 7755 471 63.4 MiB 0.06 0.00 4.11668 -130.271 -4.11668 4.11668 2.13 6.5723e-05 5.2215e-05 0.00798162 0.0064802 34 1944 22 6.79088e+06 107776 618332. 2139.56 3.66 0.03701 0.0312884 25102 150614 -1 1650 17 694 976 70448 17398 3.77654 3.77654 -127.338 -3.77654 0 0 787024. 2723.27 1.03 0.09 0.31 -1 -1 1.03 0.07172 0.0709063 59 56 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_032bits.v common 18.36 vpr 63.50 MiB -1 -1 0.38 21128 13 0.25 -1 -1 35792 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 24.8 MiB 4.91 1085 14781 4255 8693 1833 63.5 MiB 0.18 0.00 5.13751 -166.798 -5.13751 5.13751 2.63 7.4273e-05 5.8046e-05 0.15531 0.00743833 30 2275 23 6.79088e+06 121248 556674. 1926.21 2.72 0.292663 0.140924 24526 138013 -1 1997 14 659 871 59242 13639 4.62142 4.62142 -163.517 -4.62142 0 0 706193. 2443.58 1.30 0.06 0.28 -1 -1 1.30 0.0412774 0.0404653 66 62 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_048bits.v common 28.29 vpr 64.10 MiB -1 -1 0.70 21128 19 0.54 -1 -1 35864 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 25.4 MiB 10.50 1245 33699 14062 19573 64 64.1 MiB 0.34 0.15 7.59683 -298.263 -7.59683 7.59683 3.00 0.000309666 0.000264005 0.026486 0.0226397 36 2849 20 6.79088e+06 175136 648988. 2245.63 4.83 0.0991613 0.0877466 25390 158009 -1 2385 14 1113 1496 86918 23255 6.93113 6.93113 -283.869 -6.93113 0 0 828058. 2865.25 1.21 0.02 0.52 -1 -1 1.21 0.00715652 0.00658791 100 98 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_064bits.v common 28.97 vpr 64.89 MiB -1 -1 0.71 21736 26 0.37 -1 -1 35952 -1 -1 18 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66444 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 26.2 MiB 12.92 1555 46906 15122 26023 5761 64.9 MiB 0.32 0.00 10.1998 -491.342 -10.1998 10.1998 2.23 0.000431108 0.000376121 0.107626 0.0976867 38 3659 28 6.79088e+06 242496 678818. 2348.85 5.32 0.379766 0.359415 25966 169698 -1 2900 11 1200 1606 95570 24629 9.57327 9.57327 -468.252 -9.57327 0 0 902133. 3121.57 0.91 0.19 0.34 -1 -1 0.91 0.01788 0.0167846 129 131 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 11.55 vpr 62.56 MiB -1 -1 0.44 20520 1 0.18 -1 -1 33588 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64060 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.0 MiB 0.09 25 155 63 90 2 62.6 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 2.63 2.9625e-05 1.6078e-05 0.000495418 0.000329911 22 67 10 6.87369e+06 13973.8 443629. 1535.05 1.35 0.00382389 0.00242212 23458 102101 -1 67 3 19 19 1052 364 0.74674 0.74674 -6.97772 -0.74674 0 0 531479. 1839.03 0.84 0.00 0.30 -1 -1 0.84 0.000634803 0.000535809 8 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 10.45 vpr 62.62 MiB -1 -1 0.39 20520 1 0.03 -1 -1 33428 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64124 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.2 MiB 0.21 44 336 94 221 21 62.6 MiB 0.00 0.00 0.789073 -9.95572 -0.789073 0.789073 2.71 2.9024e-05 1.7483e-05 0.000699245 0.000459598 18 145 11 6.87369e+06 27947.7 376052. 1301.22 1.48 0.0044115 0.00303406 22882 88689 -1 132 14 97 97 7372 2110 0.914373 0.914373 -10.9223 -0.914373 0 0 470940. 1629.55 0.51 0.00 0.21 -1 -1 0.51 0.000751121 0.000601553 10 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 11.92 vpr 62.66 MiB -1 -1 0.32 20520 1 0.24 -1 -1 33756 -1 -1 3 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64164 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.3 MiB 0.23 65 641 179 439 23 62.7 MiB 0.00 0.00 0.811073 -12.7564 -0.811073 0.811073 2.97 2.5488e-05 1.4604e-05 0.000856657 0.000553602 26 194 9 6.87369e+06 41921.5 503264. 1741.40 1.72 0.00478948 0.00335355 24322 120374 -1 200 13 137 137 7760 2540 1.02867 1.02867 -14.5281 -1.02867 0 0 618332. 2139.56 0.80 0.00 0.24 -1 -1 0.80 0.000634463 0.000505169 13 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 11.37 vpr 62.69 MiB -1 -1 0.21 20520 1 0.18 -1 -1 33584 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64192 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.2 MiB 0.11 78 1015 230 584 201 62.7 MiB 0.01 0.00 0.833073 -15.4131 -0.833073 0.833073 2.39 2.7797e-05 1.6635e-05 0.00123428 0.00081502 28 272 22 6.87369e+06 41921.5 531479. 1839.03 1.96 0.00645389 0.0044415 24610 126494 -1 248 24 291 291 17878 5618 1.19797 1.19797 -17.4136 -1.19797 0 0 648988. 2245.63 0.76 0.02 0.22 -1 -1 0.76 0.0117818 0.00154158 15 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 12.07 vpr 62.55 MiB -1 -1 0.49 20672 1 0.08 -1 -1 33700 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64048 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.0 MiB 0.28 110 1850 737 1031 82 62.5 MiB 0.01 0.00 1.38906 -18.4681 -1.38906 1.38906 2.76 3.2518e-05 2.0022e-05 0.00195858 0.0012838 26 309 17 6.87369e+06 41921.5 503264. 1741.40 1.75 0.00580642 0.00419356 24322 120374 -1 259 11 138 138 6362 2031 0.945373 0.945373 -19.104 -0.945373 0 0 618332. 2139.56 0.69 0.01 0.34 -1 -1 0.69 0.00155346 0.00125775 17 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 10.35 vpr 62.75 MiB -1 -1 0.16 20672 1 0.01 -1 -1 33676 -1 -1 3 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64256 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 24.3 MiB 0.16 121 2097 815 1060 222 62.8 MiB 0.01 0.00 1.2154 -21.5293 -1.2154 1.2154 2.52 4.2988e-05 2.8809e-05 0.00241231 0.001649 26 287 12 6.87369e+06 41921.5 503264. 1741.40 1.88 0.00739376 0.00532715 24322 120374 -1 253 12 154 154 7146 2362 0.934373 0.934373 -20.8004 -0.934373 0 0 618332. 2139.56 0.74 0.04 0.34 -1 -1 0.74 0.00173743 0.00142996 18 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 12.86 vpr 62.49 MiB -1 -1 0.51 20824 1 0.03 -1 -1 33528 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63992 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 24.3 MiB 0.38 132 2382 904 1195 283 62.5 MiB 0.19 0.00 1.2264 -24.1567 -1.2264 1.2264 2.56 4.0834e-05 2.7199e-05 0.0025549 0.00180445 30 349 16 6.87369e+06 41921.5 556674. 1926.21 2.16 0.00908649 0.00676553 25186 138497 -1 281 12 209 209 11210 3408 0.956373 0.956373 -23.7228 -0.956373 0 0 706193. 2443.58 0.75 0.08 0.16 -1 -1 0.75 0.00188496 0.00155051 20 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 12.64 vpr 62.86 MiB -1 -1 0.20 20824 1 0.13 -1 -1 33708 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64368 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.4 MiB 0.24 144 2600 892 1091 617 62.9 MiB 0.01 0.00 1.2374 -26.9296 -1.2374 1.2374 2.53 4.872e-05 3.2909e-05 0.00305971 0.00217023 32 429 11 6.87369e+06 41921.5 586450. 2029.24 2.29 0.00955249 0.00711755 25474 144626 -1 362 16 243 243 17973 4690 1.13667 1.13667 -28.3328 -1.13667 0 0 744469. 2576.02 0.85 0.02 0.28 -1 -1 0.85 0.00226308 0.00182653 22 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 12.68 vpr 62.90 MiB -1 -1 0.42 20368 1 0.16 -1 -1 33684 -1 -1 4 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64408 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.3 MiB 0.36 160 3207 1100 1548 559 62.9 MiB 0.01 0.00 1.2484 -29.9344 -1.2484 1.2484 2.43 4.4019e-05 2.9247e-05 0.00306835 0.0021773 32 498 15 6.87369e+06 55895.4 586450. 2029.24 1.79 0.00954512 0.00716964 25474 144626 -1 426 12 236 236 17265 4482 1.12567 1.12567 -31.4381 -1.12567 0 0 744469. 2576.02 1.61 0.05 0.44 -1 -1 1.61 0.00239317 0.00201052 24 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 12.95 vpr 62.93 MiB -1 -1 0.44 20672 1 0.03 -1 -1 33228 -1 -1 4 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64436 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 24.3 MiB 0.25 185 3066 1166 1622 278 62.9 MiB 0.04 0.00 1.2594 -32.9809 -1.2594 1.2594 2.83 5.3872e-05 3.7307e-05 0.00281039 0.00204828 32 676 18 6.87369e+06 55895.4 586450. 2029.24 2.07 0.01061 0.00806728 25474 144626 -1 469 22 396 396 35405 8635 1.13667 1.13667 -33.6088 -1.13667 0 0 744469. 2576.02 0.80 0.01 0.33 -1 -1 0.80 0.00321482 0.00257788 26 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 14.61 vpr 62.93 MiB -1 -1 0.32 20520 1 0.02 -1 -1 33396 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64436 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.5 MiB 0.25 211 3965 1584 2332 49 62.9 MiB 0.01 0.00 1.2704 -36.2225 -1.2704 1.2704 3.15 5.2969e-05 3.5493e-05 0.00333159 0.00239104 34 719 23 6.87369e+06 55895.4 618332. 2139.56 3.41 0.0169586 0.0127506 25762 151098 -1 594 12 393 393 28934 7953 1.18067 1.18067 -39.3892 -1.18067 0 0 787024. 2723.27 1.00 0.01 0.37 -1 -1 1.00 0.00250136 0.00213303 28 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 12.52 vpr 63.00 MiB -1 -1 0.39 20672 1 0.11 -1 -1 33256 -1 -1 5 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64516 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 24.5 MiB 0.23 223 4855 1750 2130 975 63.0 MiB 0.02 0.00 1.2814 -38.4986 -1.2814 1.2814 2.09 5.8048e-05 4.092e-05 0.00397822 0.00292132 32 806 21 6.87369e+06 69869.2 586450. 2029.24 2.72 0.152711 0.0106876 25474 144626 -1 621 19 514 514 50733 12715 1.15397 1.15397 -40.2683 -1.15397 0 0 744469. 2576.02 1.05 0.06 0.25 -1 -1 1.05 0.00344025 0.00284575 31 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 14.05 vpr 62.91 MiB -1 -1 0.28 20824 1 0.29 -1 -1 34044 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64420 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 24.5 MiB 0.28 290 5096 2071 2924 101 62.9 MiB 0.12 0.00 1.65273 -42.9382 -1.65273 1.65273 2.62 7.7041e-05 5.6738e-05 0.00441849 0.00334364 32 765 16 6.87369e+06 69869.2 586450. 2029.24 2.02 0.0172126 0.0139183 25474 144626 -1 612 16 379 379 30080 8049 1.32597 1.32597 -45.28 -1.32597 0 0 744469. 2576.02 0.92 0.01 0.37 -1 -1 0.92 0.00396023 0.00339401 33 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 12.96 vpr 62.90 MiB -1 -1 0.27 20672 1 0.12 -1 -1 33868 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64408 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 24.3 MiB 0.24 305 6087 2506 3480 101 62.9 MiB 0.15 0.00 1.66373 -46.9561 -1.66373 1.66373 2.80 6.5408e-05 4.6994e-05 0.131173 0.129987 30 753 18 6.87369e+06 69869.2 556674. 1926.21 2.22 0.142375 0.138868 25186 138497 -1 581 13 368 368 24488 6506 1.21167 1.21167 -45.6497 -1.21167 0 0 706193. 2443.58 0.72 0.02 0.32 -1 -1 0.72 0.00364672 0.00294647 34 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 12.44 vpr 63.04 MiB -1 -1 0.35 20672 1 0.11 -1 -1 33600 -1 -1 5 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64552 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 24.5 MiB 0.27 337 5821 2351 3385 85 63.0 MiB 0.02 0.00 1.68573 -53.0646 -1.68573 1.68573 2.26 7.4584e-05 5.389e-05 0.00453456 0.00346467 32 1021 19 6.87369e+06 69869.2 586450. 2029.24 2.22 0.091485 0.0881461 25474 144626 -1 799 17 473 473 46109 11007 1.34797 1.34797 -55.2846 -1.34797 0 0 744469. 2576.02 0.85 0.06 0.26 -1 -1 0.85 0.00412503 0.00349224 38 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 14.78 vpr 63.25 MiB -1 -1 0.52 20976 1 0.12 -1 -1 33888 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64764 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 24.8 MiB 0.35 382 7382 2998 4293 91 63.2 MiB 0.10 0.00 1.70773 -60.6776 -1.70773 1.70773 2.08 9.5057e-05 7.0822e-05 0.006156 0.00460583 34 1080 21 6.87369e+06 83843 618332. 2139.56 4.16 0.428766 0.277848 25762 151098 -1 878 18 602 602 59456 14019 1.26197 1.26197 -58.7571 -1.26197 0 0 787024. 2723.27 0.85 0.05 0.10 -1 -1 0.85 0.00493112 0.00421469 42 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 14.09 vpr 63.39 MiB -1 -1 0.27 20976 1 0.16 -1 -1 33752 -1 -1 7 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64912 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 24.8 MiB 0.46 435 8449 3436 4886 127 63.4 MiB 0.14 0.00 1.72973 -67.1496 -1.72973 1.72973 2.38 0.000505199 0.000369849 0.00589234 0.00454936 36 1170 20 6.87369e+06 97816.9 648988. 2245.63 3.50 0.121529 0.115689 26050 158493 -1 1001 18 648 648 59519 14454 1.25567 1.25567 -64.9549 -1.25567 0 0 828058. 2865.25 1.00 0.05 0.35 -1 -1 1.00 0.00519625 0.00447621 47 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 13.92 vpr 63.45 MiB -1 -1 0.50 20824 1 0.08 -1 -1 33868 -1 -1 7 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 24.8 MiB 0.27 606 10056 2320 7330 406 63.5 MiB 0.16 0.00 2.11206 -79.0405 -2.11206 2.11206 2.31 0.00010923 8.3617e-05 0.00672979 0.00522225 34 1386 16 6.87369e+06 97816.9 618332. 2139.56 3.23 0.0628001 0.0235143 25762 151098 -1 1223 18 668 668 62536 14705 1.49527 1.49527 -79.1583 -1.49527 0 0 787024. 2723.27 0.89 0.12 0.30 -1 -1 0.89 0.00550774 0.00473289 50 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 14.02 vpr 63.50 MiB -1 -1 0.23 20672 1 0.03 -1 -1 33628 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65028 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 24.8 MiB 0.26 732 10957 2399 8066 492 63.5 MiB 0.13 0.00 2.15606 -95.0168 -2.15606 2.15606 2.64 0.000127008 0.000101695 0.00700932 0.0055624 34 1694 21 6.87369e+06 111791 618332. 2139.56 3.55 0.0377909 0.0313587 25762 151098 -1 1433 17 739 739 74923 16984 1.28867 1.28867 -87.641 -1.28867 0 0 787024. 2723.27 0.90 0.18 0.32 -1 -1 0.90 0.00409056 0.0036087 58 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 15.13 vpr 63.63 MiB -1 -1 0.31 21128 1 0.03 -1 -1 33604 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1001 16046 4955 9770 1321 63.6 MiB 0.08 0.00 2.56039 -116.939 -2.56039 2.56039 2.70 0.000143778 0.000112604 0.0100891 0.00806421 34 2093 19 6.87369e+06 125765 618332. 2139.56 4.09 0.256636 0.248374 25762 151098 -1 1851 17 871 871 90904 19499 1.44967 1.44967 -108.663 -1.44967 0 0 787024. 2723.27 0.93 0.02 0.43 -1 -1 0.93 0.00363999 0.00317444 66 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 15.37 vpr 64.47 MiB -1 -1 0.24 21128 1 0.15 -1 -1 33744 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 25.8 MiB 0.35 1379 28969 8779 18116 2074 64.5 MiB 0.18 0.00 3.45705 -191.124 -3.45705 3.45705 2.44 0.000243321 0.000203037 0.0174679 0.0146218 36 2974 16 6.87369e+06 181660 648988. 2245.63 4.45 0.153816 0.0649979 26050 158493 -1 2613 19 1258 1258 134087 29352 1.67197 1.67197 -161.552 -1.67197 0 0 828058. 2865.25 0.83 0.05 0.29 -1 -1 0.83 0.0123207 0.0110916 98 2 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 17.14 vpr 65.11 MiB -1 -1 0.34 21432 1 0.19 -1 -1 33680 -1 -1 17 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66676 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1983 46609 14562 27682 4365 65.1 MiB 0.40 0.00 4.35372 -288.959 -4.35372 4.35372 2.43 0.000370054 0.000323577 0.186006 0.182607 34 4783 49 6.87369e+06 237555 618332. 2139.56 6.43 0.353682 0.339802 25762 151098 -1 3855 18 1639 1639 193474 45118 1.86597 1.86597 -229.54 -1.86597 0 0 787024. 2723.27 0.99 0.22 0.31 -1 -1 0.99 0.0176268 0.015967 130 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 10.59 vpr 62.45 MiB -1 -1 0.18 20520 1 0.10 -1 -1 33568 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63952 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 23.9 MiB 0.02 25 155 63 90 2 62.5 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 2.67 1.4936e-05 8.928e-06 0.000407481 0.000314052 22 67 10 6.89349e+06 14093.8 443629. 1535.05 1.62 0.00314613 0.00209608 23458 102101 -1 67 3 19 19 1052 364 0.74674 0.74674 -6.97772 -0.74674 0 0 531479. 1839.03 0.62 0.00 0.16 -1 -1 0.62 0.000571412 0.000474246 8 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 12.03 vpr 62.37 MiB -1 -1 0.26 20672 1 0.13 -1 -1 33276 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63868 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.9 MiB 0.14 48 336 89 227 20 62.4 MiB 0.00 0.00 0.789073 -10.0695 -0.789073 0.789073 2.57 2.4272e-05 1.3725e-05 0.000773647 0.000452354 30 120 12 6.89349e+06 28187.7 556674. 1926.21 2.35 0.00381363 0.00252487 25186 138497 -1 91 9 50 50 1794 670 0.74674 0.74674 -9.58622 -0.74674 0 0 706193. 2443.58 1.02 0.00 0.24 -1 -1 1.02 0.000901743 0.000707661 10 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 11.40 vpr 62.54 MiB -1 -1 0.29 20672 1 0.10 -1 -1 33460 -1 -1 3 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64044 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.2 MiB 0.04 90 614 167 429 18 62.5 MiB 0.01 0.00 0.99734 -13.6863 -0.99734 0.99734 2.43 2.9004e-05 1.7851e-05 0.00101449 0.000671285 22 241 10 6.89349e+06 42281.5 443629. 1535.05 2.16 0.00432202 0.00317586 23458 102101 -1 213 9 77 77 5997 1642 1.12264 1.12264 -14.8378 -1.12264 0 0 531479. 1839.03 0.88 0.00 0.27 -1 -1 0.88 0.00103232 0.00082385 13 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 11.28 vpr 62.58 MiB -1 -1 0.31 20672 1 0.12 -1 -1 33592 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64084 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.1 MiB 0.16 78 887 199 520 168 62.6 MiB 0.01 0.00 0.833073 -15.4163 -0.833073 0.833073 2.67 2.8722e-05 1.7562e-05 0.00108567 0.000724981 28 301 34 6.89349e+06 42281.5 531479. 1839.03 2.10 0.0790886 0.0768788 24610 126494 -1 250 29 295 295 18298 5685 1.08367 1.08367 -17.221 -1.08367 0 0 648988. 2245.63 0.71 0.24 0.15 -1 -1 0.71 0.00253517 0.00183431 15 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 13.07 vpr 62.62 MiB -1 -1 0.40 20520 1 0.09 -1 -1 33364 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64128 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.1 MiB 0.17 112 1850 763 1049 38 62.6 MiB 0.01 0.00 1.38906 -18.7903 -1.38906 1.38906 3.44 1.4943e-05 9.352e-06 0.00124351 0.000833068 28 276 10 6.89349e+06 42281.5 531479. 1839.03 2.17 0.00642631 0.00450544 24610 126494 -1 243 12 141 141 5792 1971 0.98032 0.98032 -19.0933 -0.98032 0 0 648988. 2245.63 1.01 0.01 0.22 -1 -1 1.01 0.00160438 0.00128756 17 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 11.76 vpr 62.44 MiB -1 -1 0.47 20672 1 0.03 -1 -1 33512 -1 -1 3 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63936 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.9 MiB 0.14 120 2097 850 1164 83 62.4 MiB 0.01 0.00 1.2154 -21.2291 -1.2154 1.2154 2.61 4.6362e-05 3.1636e-05 0.00265862 0.00188839 26 352 21 6.89349e+06 42281.5 503264. 1741.40 2.27 0.00887159 0.00661523 24322 120374 -1 297 16 211 211 13252 4167 1.10367 1.10367 -23.4634 -1.10367 0 0 618332. 2139.56 0.91 0.01 0.19 -1 -1 0.91 0.00207253 0.00159548 18 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 12.07 vpr 62.68 MiB -1 -1 0.12 20824 1 0.07 -1 -1 33660 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64184 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 24.2 MiB 0.19 136 2432 923 1201 308 62.7 MiB 0.01 0.00 1.2264 -24.2325 -1.2264 1.2264 3.04 3.6243e-05 2.2388e-05 0.00215188 0.00144763 26 396 16 6.89349e+06 42281.5 503264. 1741.40 2.29 0.00688421 0.00510103 24322 120374 -1 346 13 211 211 14986 4099 1.13667 1.13667 -26.975 -1.13667 0 0 618332. 2139.56 0.91 0.01 0.14 -1 -1 0.91 0.00186383 0.00151507 20 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 12.98 vpr 62.48 MiB -1 -1 0.08 20672 1 0.03 -1 -1 33668 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63976 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.1 MiB 0.32 144 2657 978 1300 379 62.5 MiB 0.01 0.00 1.2374 -26.9548 -1.2374 1.2374 2.70 4.4489e-05 2.9223e-05 0.00242224 0.00163912 28 478 17 6.89349e+06 42281.5 531479. 1839.03 2.68 0.00947739 0.00702486 24610 126494 -1 432 14 250 250 20975 5623 1.27297 1.27297 -32.3411 -1.27297 0 0 648988. 2245.63 1.14 0.01 0.28 -1 -1 1.14 0.00223753 0.00183323 22 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 12.55 vpr 62.80 MiB -1 -1 0.15 20824 1 0.03 -1 -1 33672 -1 -1 4 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64304 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.2 MiB 0.11 164 3207 1150 1481 576 62.8 MiB 0.01 0.00 1.2484 -30.2716 -1.2484 1.2484 2.74 2.1218e-05 1.4157e-05 0.00126808 0.000897274 28 549 17 6.89349e+06 56375.4 531479. 1839.03 2.09 0.132938 0.130697 24610 126494 -1 501 15 271 271 25089 6500 1.25097 1.25097 -34.7378 -1.25097 0 0 648988. 2245.63 0.82 0.01 0.63 -1 -1 0.82 0.00261397 0.00200182 24 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 13.56 vpr 62.67 MiB -1 -1 0.21 20520 1 0.11 -1 -1 33232 -1 -1 4 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64176 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 24.1 MiB 0.11 186 3138 1182 1630 326 62.7 MiB 0.01 0.00 1.2594 -32.962 -1.2594 1.2594 3.09 5.944e-05 4.1808e-05 0.00315228 0.00230742 32 623 24 6.89349e+06 56375.4 586450. 2029.24 2.53 0.0117664 0.00879752 25474 144626 -1 465 14 284 284 21157 5429 1.15867 1.15867 -34.7078 -1.15867 0 0 744469. 2576.02 0.70 0.01 0.28 -1 -1 0.70 0.00250326 0.00208263 26 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 13.35 vpr 62.86 MiB -1 -1 0.16 20824 1 0.24 -1 -1 33384 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64372 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.5 MiB 0.15 210 3965 1585 2344 36 62.9 MiB 0.01 0.00 1.2704 -36.265 -1.2704 1.2704 2.49 6.7565e-05 3.9192e-05 0.0035653 0.00255093 32 679 23 6.89349e+06 56375.4 586450. 2029.24 2.86 0.121738 0.118623 25474 144626 -1 560 14 370 370 30641 8262 1.27297 1.27297 -39.4321 -1.27297 0 0 744469. 2576.02 0.81 0.01 0.16 -1 -1 0.81 0.00327828 0.00278224 28 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 15.32 vpr 62.89 MiB -1 -1 0.19 20824 1 0.12 -1 -1 33624 -1 -1 5 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64404 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 24.4 MiB 0.30 223 4855 1757 2166 932 62.9 MiB 0.01 0.00 1.2814 -38.5472 -1.2814 1.2814 3.37 2.5914e-05 1.7897e-05 0.00173443 0.00126711 38 628 16 6.89349e+06 70469.2 678818. 2348.85 4.71 0.0520011 0.0481896 26626 170182 -1 526 14 357 357 30245 8168 1.08987 1.08987 -37.7185 -1.08987 0 0 902133. 3121.57 0.97 0.01 0.35 -1 -1 0.97 0.00278298 0.00232778 31 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 12.31 vpr 62.95 MiB -1 -1 0.27 20672 1 0.10 -1 -1 33900 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64456 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 24.4 MiB 0.28 290 5096 2058 2934 104 62.9 MiB 0.10 0.00 1.65273 -42.9889 -1.65273 1.65273 2.55 5.5452e-05 3.8284e-05 0.00396532 0.00291064 30 683 13 6.89349e+06 70469.2 556674. 1926.21 2.34 0.0162651 0.0132758 25186 138497 -1 556 13 326 326 18494 5103 1.08832 1.08832 -41.3192 -1.08832 0 0 706193. 2443.58 1.05 0.01 0.28 -1 -1 1.05 0.0034232 0.00294712 33 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 11.90 vpr 62.83 MiB -1 -1 0.19 20672 1 0.06 -1 -1 33728 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64340 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 24.2 MiB 0.35 305 6087 2521 3470 96 62.8 MiB 0.02 0.00 1.66373 -46.7138 -1.66373 1.66373 2.74 6.6257e-05 4.7225e-05 0.00450985 0.0032702 32 866 14 6.89349e+06 70469.2 586450. 2029.24 2.58 0.040011 0.0368412 25474 144626 -1 665 13 337 337 28629 7248 1.22267 1.22267 -47.4346 -1.22267 0 0 744469. 2576.02 1.16 0.01 0.24 -1 -1 1.16 0.00315045 0.002668 34 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 13.67 vpr 63.18 MiB -1 -1 0.21 20672 1 0.08 -1 -1 33600 -1 -1 5 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64700 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 24.7 MiB 0.16 339 5941 2393 3467 81 63.2 MiB 0.20 0.00 1.68573 -53.2046 -1.68573 1.68573 2.57 8.9062e-05 6.6014e-05 0.00460785 0.00349734 32 957 22 6.89349e+06 70469.2 586450. 2029.24 2.93 0.0172015 0.013673 25474 144626 -1 755 12 411 411 37973 9217 1.23367 1.23367 -52.0141 -1.23367 0 0 744469. 2576.02 0.91 0.01 0.33 -1 -1 0.91 0.00335962 0.00290425 38 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 13.76 vpr 62.69 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33724 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64196 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 24.1 MiB 0.23 384 7520 3042 4380 98 62.7 MiB 0.07 0.00 1.70773 -60.4553 -1.70773 1.70773 2.40 9.7352e-05 7.268e-05 0.00592114 0.00451634 34 1195 25 6.89349e+06 84563 618332. 2139.56 4.73 0.027417 0.0217695 25762 151098 -1 960 17 570 570 75443 20015 1.42027 1.42027 -62.3146 -1.42027 0 0 787024. 2723.27 0.84 0.10 0.42 -1 -1 0.84 0.00423232 0.00362022 42 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 15.59 vpr 63.25 MiB -1 -1 0.17 20824 1 0.06 -1 -1 33764 -1 -1 7 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 24.7 MiB 0.42 434 8449 3473 4843 133 63.2 MiB 0.37 0.00 1.72973 -67.5985 -1.72973 1.72973 3.04 8.8562e-05 6.4444e-05 0.00580493 0.00444524 36 1246 24 6.89349e+06 98656.9 648988. 2245.63 4.99 0.0306249 0.0248694 26050 158493 -1 987 22 654 654 142955 55836 1.21092 1.21092 -62.3813 -1.21092 0 0 828058. 2865.25 0.98 0.12 0.28 -1 -1 0.98 0.00555195 0.00469194 47 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 15.05 vpr 63.34 MiB -1 -1 0.29 20976 1 0.05 -1 -1 34016 -1 -1 7 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64864 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 24.7 MiB 0.24 604 10056 2363 7435 258 63.3 MiB 0.64 0.00 2.11206 -78.831 -2.11206 2.11206 2.83 0.000101239 7.7208e-05 0.00695255 0.00544034 34 1378 31 6.89349e+06 98656.9 618332. 2139.56 4.80 0.0295031 0.0239572 25762 151098 -1 1237 16 629 629 70513 15933 1.55457 1.55457 -77.481 -1.55457 0 0 787024. 2723.27 0.63 0.02 0.38 -1 -1 0.63 0.00524114 0.00454195 50 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 12.93 vpr 63.48 MiB -1 -1 0.13 20824 1 0.04 -1 -1 33692 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65000 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 24.8 MiB 0.16 726 10957 2442 8181 334 63.5 MiB 0.03 0.00 2.15606 -94.1497 -2.15606 2.15606 2.48 0.000116036 8.9937e-05 0.00710828 0.00566237 34 1609 13 6.89349e+06 112751 618332. 2139.56 4.03 0.244829 0.208471 25762 151098 -1 1426 12 662 662 58267 13888 1.41397 1.41397 -90.3963 -1.41397 0 0 787024. 2723.27 1.03 0.02 0.35 -1 -1 1.03 0.00501394 0.00444918 58 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 13.27 vpr 63.63 MiB -1 -1 0.13 20824 1 0.04 -1 -1 33464 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.0 MiB 0.22 756 11745 2650 8397 698 63.6 MiB 0.14 0.00 2.56039 -108.906 -2.56039 2.56039 2.59 6.223e-05 4.8461e-05 0.117577 0.116202 34 2009 24 6.89349e+06 126845 618332. 2139.56 4.13 0.147182 0.14158 25762 151098 -1 1614 14 776 776 66837 16427 1.65627 1.65627 -107.904 -1.65627 0 0 787024. 2723.27 0.76 0.14 0.32 -1 -1 0.76 0.004449 0.00402914 66 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 14.90 vpr 63.90 MiB -1 -1 0.18 21280 1 0.07 -1 -1 33812 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 25.1 MiB 0.27 1383 28969 7882 19104 1983 63.9 MiB 0.45 0.00 3.45705 -191.088 -3.45705 3.45705 2.79 0.00023552 0.000194993 0.0361549 0.0152043 34 3125 28 6.89349e+06 183220 618332. 2139.56 4.55 0.0918446 0.0639457 25762 151098 -1 2725 17 1133 1133 125663 28236 1.66567 1.66567 -167.292 -1.66567 0 0 787024. 2723.27 0.63 0.05 0.21 -1 -1 0.63 0.0116197 0.0104415 98 2 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 18.19 vpr 64.95 MiB -1 -1 0.22 21280 1 0.09 -1 -1 34040 -1 -1 17 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66504 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.1 MiB 0.44 1994 46609 14649 27523 4437 64.9 MiB 0.63 0.00 4.35372 -288.643 -4.35372 4.35372 2.90 0.000397932 0.000339983 0.100791 0.0969024 34 4729 38 6.89349e+06 239595 618332. 2139.56 5.71 0.363391 0.349227 25762 151098 -1 3833 16 1511 1511 160735 36342 1.99597 1.99597 -239.084 -1.99597 0 0 787024. 2723.27 1.04 0.17 0.39 -1 -1 1.04 0.0979019 0.0154884 130 2 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.69 vpr 60.60 MiB -1 -1 0.14 17164 1 0.05 -1 -1 32020 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62052 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 22.0 MiB 0.01 71 268 69 183 16 60.6 MiB 0.01 0.00 0.701249 -7.22873 -0.701249 0.701249 0.65 6.4529e-05 5.7354e-05 0.0013596 0.00120186 20 155 11 6.55708e+06 24110 394039. 1363.46 0.44 0.00448015 0.00398389 19870 87366 -1 150 8 55 55 3591 1003 0.782248 0.782248 -8.23213 -0.782248 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00230328 0.00208156 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.74 vpr 60.62 MiB -1 -1 0.15 17236 2 0.06 -1 -1 31940 -1 -1 2 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62076 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 22.0 MiB 0.01 135 76 35 40 1 60.6 MiB 0.00 0.00 0.900447 -11.7037 -0.900447 0.900447 0.66 8.645e-05 7.8124e-05 0.000583333 0.000531116 20 236 9 6.55708e+06 24110 394039. 1363.46 0.45 0.00366263 0.00324976 19870 87366 -1 236 7 61 67 5096 1298 0.83871 0.83871 -12.1586 -0.83871 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00258961 0.00232587 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.94 vpr 60.76 MiB -1 -1 0.14 17160 2 0.06 -1 -1 32004 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62220 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 55 569 131 359 79 60.8 MiB 0.01 0.00 0.900447 -11.5834 -0.900447 0.900447 0.65 0.00010434 9.5102e-05 0.00271084 0.00247011 26 205 12 6.55708e+06 24110 477104. 1650.88 0.56 0.0146662 0.0123484 21022 109990 -1 188 9 116 121 5329 1929 0.819447 0.819447 -12.7928 -0.819447 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00323617 0.00286903 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.81 vpr 60.62 MiB -1 -1 0.16 17216 3 0.05 -1 -1 31852 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62072 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 22.0 MiB 0.02 85 567 111 433 23 60.6 MiB 0.01 0.00 1.58811 -16.0101 -1.58811 1.58811 0.66 0.000125009 0.000114627 0.00264833 0.00243277 20 282 10 6.55708e+06 36165 394039. 1363.46 0.45 0.00862391 0.00785706 19870 87366 -1 238 10 108 128 6200 1949 1.50711 1.50711 -17.0526 -1.50711 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00386995 0.00340331 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.81 vpr 60.71 MiB -1 -1 0.15 17060 3 0.05 -1 -1 31872 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62172 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.01 208 862 165 657 40 60.7 MiB 0.01 0.00 1.23151 -19.784 -1.23151 1.23151 0.67 0.000144141 0.000132564 0.00370168 0.00340074 20 451 13 6.55708e+06 36165 394039. 1363.46 0.45 0.00903024 0.00801953 19870 87366 -1 409 8 146 164 9675 2532 1.05785 1.05785 -21.0828 -1.05785 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00383752 0.00340253 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.01 vpr 60.81 MiB -1 -1 0.12 17156 3 0.05 -1 -1 31920 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 22.1 MiB 0.05 126 720 180 518 22 60.8 MiB 0.01 0.00 1.70831 -21.3388 -1.70831 1.70831 0.67 0.000172392 0.000158744 0.00325091 0.00300139 26 341 10 6.55708e+06 48220 477104. 1650.88 0.58 0.0213417 0.017943 21022 109990 -1 308 11 131 145 7970 2470 1.58811 1.58811 -22.2734 -1.58811 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00523909 0.004569 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.13 vpr 61.11 MiB -1 -1 0.14 17116 4 0.05 -1 -1 31968 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62576 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.4 MiB 0.02 138 1593 371 925 297 61.1 MiB 0.02 0.00 1.58811 -24.9956 -1.58811 1.58811 0.66 0.00018571 0.000171683 0.00622386 0.00574361 30 399 18 6.55708e+06 48220 526063. 1820.29 0.66 0.0278424 0.0236006 21886 126133 -1 284 8 179 216 8061 2693 1.50711 1.50711 -23.7908 -1.50711 0 0 666494. 2306.21 0.19 0.01 0.11 -1 -1 0.19 0.00473893 0.0041935 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.03 vpr 60.91 MiB -1 -1 0.16 17260 4 0.06 -1 -1 31804 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62372 21 11 69 80 1 54 37 17 17 289 -1 unnamed_device 22.4 MiB 0.06 171 2965 791 1478 696 60.9 MiB 0.02 0.00 1.74751 -28.6395 -1.74751 1.74751 0.67 0.000207694 0.000192004 0.0107634 0.00994613 22 811 29 6.55708e+06 60275 420624. 1455.45 1.56 0.0517123 0.0436832 20158 92377 -1 540 10 251 342 20280 6103 1.62731 1.62731 -31.7476 -1.62731 0 0 500653. 1732.36 0.15 0.02 0.09 -1 -1 0.15 0.00574609 0.00502617 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.14 vpr 60.95 MiB -1 -1 0.16 17272 5 0.06 -1 -1 31920 -1 -1 6 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 22.4 MiB 0.02 238 4031 1480 1575 976 60.9 MiB 0.03 0.00 2.07857 -33.1668 -2.07857 2.07857 0.71 0.000224038 0.00020653 0.0136882 0.0126411 28 584 15 6.55708e+06 72330 500653. 1732.36 0.63 0.0387169 0.0335188 21310 115450 -1 529 13 230 289 18701 4954 1.7455 1.7455 -33.8966 -1.7455 0 0 612192. 2118.31 0.18 0.02 0.10 -1 -1 0.18 0.00707647 0.00615885 37 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.05 vpr 60.94 MiB -1 -1 0.17 17472 5 0.06 -1 -1 31972 -1 -1 6 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62400 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 22.5 MiB 0.02 377 3894 1439 2026 429 60.9 MiB 0.03 0.00 1.80097 -39.3305 -1.80097 1.80097 0.67 0.000245713 0.000227127 0.0131117 0.0121218 26 788 14 6.55708e+06 72330 477104. 1650.88 0.61 0.0394861 0.0342105 21022 109990 -1 751 16 314 450 35118 8247 1.77504 1.77504 -42.0175 -1.77504 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00872282 0.0075648 40 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.30 vpr 61.05 MiB -1 -1 0.12 17516 5 0.06 -1 -1 31788 -1 -1 7 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62520 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.5 MiB 0.02 268 2832 643 1749 440 61.1 MiB 0.02 0.00 1.74751 -36.363 -1.74751 1.74751 0.74 0.000271359 0.000251479 0.00969306 0.00898067 26 762 34 6.55708e+06 84385 477104. 1650.88 0.71 0.0479897 0.0409888 21022 109990 -1 661 16 290 427 42857 13493 1.53665 1.53665 -38.6649 -1.53665 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.00953989 0.00824962 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.13 vpr 61.13 MiB -1 -1 0.16 17524 6 0.06 -1 -1 32148 -1 -1 7 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62600 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.6 MiB 0.04 461 5503 1446 3252 805 61.1 MiB 0.04 0.00 2.47436 -49.4238 -2.47436 2.47436 0.66 0.000279667 0.000258883 0.0172866 0.0160272 26 940 26 6.55708e+06 84385 477104. 1650.88 0.64 0.0530306 0.0459924 21022 109990 -1 852 12 295 406 27209 6503 2.23396 2.23396 -49.7314 -2.23396 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00812706 0.00709187 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.93 vpr 61.00 MiB -1 -1 0.14 17484 6 0.06 -1 -1 31924 -1 -1 10 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62468 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 22.5 MiB 0.04 437 6052 2221 2945 886 61.0 MiB 0.04 0.00 1.9467 -48.0703 -1.9467 1.9467 0.66 0.000308224 0.000285345 0.0182087 0.0168722 26 997 14 6.55708e+06 120550 477104. 1650.88 1.43 0.0891978 0.0760177 21022 109990 -1 875 12 357 519 35201 8911 1.97424 1.97424 -51.2253 -1.97424 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00888323 0.00774253 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.29 vpr 61.07 MiB -1 -1 0.17 17428 7 0.06 -1 -1 32056 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62536 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 22.6 MiB 0.06 291 5943 1850 2720 1373 61.1 MiB 0.04 0.00 2.81093 -55.3708 -2.81093 2.81093 0.65 0.000327812 0.000304276 0.0189577 0.0175892 26 985 22 6.55708e+06 84385 477104. 1650.88 0.77 0.0592365 0.0515228 21022 109990 -1 764 13 340 442 30767 11058 2.5809 2.5809 -57.4402 -2.5809 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.009848 0.00859524 52 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.30 vpr 61.16 MiB -1 -1 0.18 17464 7 0.06 -1 -1 32068 -1 -1 10 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62628 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 22.5 MiB 0.03 520 5519 1325 3449 745 61.2 MiB 0.04 0.00 3.12482 -68.231 -3.12482 3.12482 0.66 0.000366828 0.000340613 0.0162433 0.0150584 28 1061 11 6.55708e+06 120550 500653. 1732.36 0.65 0.0541799 0.0472377 21310 115450 -1 962 9 299 403 23764 6046 2.79176 2.79176 -68.6483 -2.79176 0 0 612192. 2118.31 0.18 0.03 0.10 -1 -1 0.18 0.0101929 0.00901767 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.22 vpr 61.16 MiB -1 -1 0.17 17408 8 0.06 -1 -1 32016 -1 -1 11 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 22.5 MiB 0.05 468 9497 2136 5919 1442 61.2 MiB 0.06 0.00 3.11516 -75.6589 -3.11516 3.11516 0.65 0.000398342 0.000369999 0.0261698 0.0243142 26 1200 13 6.55708e+06 132605 477104. 1650.88 0.68 0.0685837 0.0604621 21022 109990 -1 1055 11 406 541 31085 8462 2.9023 2.9023 -77.3553 -2.9023 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0106512 0.00938817 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.89 vpr 61.29 MiB -1 -1 0.18 17472 9 0.07 -1 -1 31956 -1 -1 13 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62760 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 22.5 MiB 0.21 636 10406 4261 6108 37 61.3 MiB 0.06 0.00 3.15236 -84.0115 -3.15236 3.15236 0.66 0.000433887 0.000402031 0.0271458 0.0251881 30 1243 13 6.55708e+06 156715 526063. 1820.29 2.09 0.137701 0.119279 21886 126133 -1 1121 13 401 514 24209 6555 3.0597 3.0597 -84.1453 -3.0597 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0126038 0.0110916 74 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.96 vpr 61.43 MiB -1 -1 0.19 17552 10 0.07 -1 -1 31968 -1 -1 12 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62904 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 22.7 MiB 0.09 684 7457 1697 4897 863 61.4 MiB 0.05 0.00 3.70816 -98.1534 -3.70816 3.70816 0.65 0.000469331 0.000436345 0.0199461 0.0185434 28 1493 34 6.55708e+06 144660 500653. 1732.36 2.28 0.135027 0.1168 21310 115450 -1 1272 12 423 577 35128 9092 3.58796 3.58796 -99.0644 -3.58796 0 0 612192. 2118.31 0.18 0.03 0.10 -1 -1 0.18 0.0133462 0.0118212 79 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.88 vpr 61.52 MiB -1 -1 0.16 17464 11 0.08 -1 -1 32180 -1 -1 14 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62992 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 23.0 MiB 0.18 886 14020 4097 8043 1880 61.5 MiB 0.08 0.00 4.12928 -123.627 -4.12928 4.12928 0.66 0.000569495 0.00052983 0.0360377 0.0335206 28 1846 13 6.55708e+06 168770 500653. 1732.36 2.10 0.162815 0.142082 21310 115450 -1 1677 11 546 710 49330 11707 3.87722 3.87722 -125.497 -3.87722 0 0 612192. 2118.31 0.18 0.04 0.10 -1 -1 0.18 0.0155799 0.013858 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.79 vpr 61.71 MiB -1 -1 0.21 17756 13 0.08 -1 -1 32116 -1 -1 16 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63188 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 23.1 MiB 0.22 826 13362 2721 10353 288 61.7 MiB 0.08 0.00 4.35602 -142.897 -4.35602 4.35602 0.65 0.000640239 0.000596542 0.032983 0.0307208 30 1923 15 6.55708e+06 192880 526063. 1820.29 0.88 0.103373 0.0916773 21886 126133 -1 1661 11 677 907 51084 13514 4.02296 4.02296 -140.256 -4.02296 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0164996 0.0146991 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.46 vpr 62.64 MiB -1 -1 0.26 18136 19 0.10 -1 -1 32292 -1 -1 24 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1319 34480 11756 18994 3730 62.6 MiB 0.17 0.00 7.55025 -291.095 -7.55025 7.55025 0.66 0.000977538 0.000912289 0.0748882 0.0698031 36 2772 30 6.55708e+06 289320 612192. 2118.31 3.26 0.332618 0.296208 22750 144809 -1 2396 20 939 1325 112348 38851 6.97679 6.97679 -283.59 -6.97679 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0382111 0.0340511 161 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.00 vpr 63.37 MiB -1 -1 0.29 18284 26 0.10 -1 -1 32564 -1 -1 35 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 24.3 MiB 0.18 1825 50629 14926 30325 5378 63.4 MiB 0.24 0.00 10.2543 -489.043 -10.2543 10.2543 0.66 0.00132504 0.00123931 0.0996393 0.0931935 36 3634 13 6.55708e+06 421925 612192. 2118.31 1.66 0.352251 0.318118 22750 144809 -1 3317 12 1246 1770 111506 27954 9.31476 9.31476 -453.748 -9.31476 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0355162 0.0321623 213 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.56 abc 29.39 MiB -1 -1 0.14 17224 1 0.02 -1 -1 30092 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22920 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.56 abc 29.24 MiB -1 -1 0.14 17208 1 0.02 -1 -1 29944 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22848 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.56 abc 29.38 MiB -1 -1 0.11 17212 1 0.02 -1 -1 30084 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23212 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.54 abc 29.30 MiB -1 -1 0.13 17256 1 0.03 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23236 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.59 abc 29.38 MiB -1 -1 0.14 17256 1 0.02 -1 -1 30084 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22880 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.56 abc 29.37 MiB -1 -1 0.15 17124 1 0.02 -1 -1 30076 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23256 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.72 abc 29.29 MiB -1 -1 0.15 17228 1 0.03 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22924 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.57 abc 29.33 MiB -1 -1 0.15 17228 1 0.03 -1 -1 30036 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23016 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.55 abc 29.37 MiB -1 -1 0.14 17056 1 0.02 -1 -1 30076 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23104 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.61 abc 29.31 MiB -1 -1 0.16 17212 1 0.02 -1 -1 30012 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23048 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.50 abc 29.54 MiB -1 -1 0.16 17304 1 0.02 -1 -1 30252 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23076 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.53 abc 29.37 MiB -1 -1 0.15 17292 1 0.02 -1 -1 30072 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23160 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.59 abc 29.30 MiB -1 -1 0.14 17224 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23064 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.57 abc 29.26 MiB -1 -1 0.17 17484 1 0.03 -1 -1 29964 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23044 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.50 abc 29.45 MiB -1 -1 0.14 17468 1 0.02 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23228 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.56 abc 29.38 MiB -1 -1 0.14 17516 1 0.03 -1 -1 30088 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23304 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.61 abc 29.27 MiB -1 -1 0.17 17408 1 0.03 -1 -1 29968 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23272 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.60 abc 29.45 MiB -1 -1 0.16 17440 1 0.03 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23312 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.58 abc 29.36 MiB -1 -1 0.15 17364 1 0.03 -1 -1 30060 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23572 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.62 abc 29.35 MiB -1 -1 0.17 17468 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23328 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.50 abc 29.47 MiB -1 -1 0.12 17572 1 0.03 -1 -1 30176 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23700 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.68 abc 29.56 MiB -1 -1 0.20 17916 1 0.03 -1 -1 30272 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23988 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.56 abc 29.30 MiB -1 -1 0.13 17228 1 0.02 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22808 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.48 abc 29.23 MiB -1 -1 0.10 17228 1 0.02 -1 -1 29928 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22800 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.54 abc 29.25 MiB -1 -1 0.14 17220 1 0.02 -1 -1 29952 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22588 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.57 abc 29.28 MiB -1 -1 0.13 17148 1 0.02 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22676 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.54 abc 29.30 MiB -1 -1 0.17 17192 1 0.02 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22740 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.56 abc 29.44 MiB -1 -1 0.15 17124 1 0.02 -1 -1 30148 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22664 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.55 abc 29.33 MiB -1 -1 0.15 17256 1 0.02 -1 -1 30032 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22620 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.56 abc 29.45 MiB -1 -1 0.14 17268 1 0.02 -1 -1 30156 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22640 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.49 abc 29.52 MiB -1 -1 0.07 17312 1 0.02 -1 -1 30232 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22884 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.59 abc 29.30 MiB -1 -1 0.16 17268 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22736 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.49 abc 29.35 MiB -1 -1 0.12 17312 1 0.02 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22704 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.58 abc 29.40 MiB -1 -1 0.16 17208 1 0.02 -1 -1 30104 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22772 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.58 abc 29.38 MiB -1 -1 0.14 17612 1 0.02 -1 -1 30088 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22948 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.47 abc 29.18 MiB -1 -1 0.15 17276 1 0.02 -1 -1 29880 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22728 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.57 abc 29.36 MiB -1 -1 0.14 17456 1 0.03 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22852 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.58 abc 29.39 MiB -1 -1 0.16 17524 1 0.03 -1 -1 30100 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22860 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.54 abc 29.34 MiB -1 -1 0.15 17312 1 0.03 -1 -1 30044 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22936 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.60 abc 29.52 MiB -1 -1 0.16 17260 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23004 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.57 abc 29.36 MiB -1 -1 0.16 17356 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23028 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.63 abc 29.34 MiB -1 -1 0.16 17376 1 0.02 -1 -1 30040 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23240 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.71 abc 29.41 MiB -1 -1 0.18 17680 1 0.03 -1 -1 30120 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23440 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.64 abc 29.86 MiB -1 -1 0.20 17752 1 0.03 -1 -1 30572 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23736 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.34 vpr 61.00 MiB -1 -1 0.14 17208 1 0.02 -1 -1 30072 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62460 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.4 MiB 0.01 45 88 36 48 4 61.0 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 0.66 7.1685e-05 6.4223e-05 0.000661508 0.000597923 20 102 6 6.64007e+06 25116 394039. 1363.46 1.05 0.00498109 0.00430519 20530 87850 -1 92 4 22 22 1101 348 0.890248 0.890248 -7.61813 -0.890248 0 0 477104. 1650.88 0.14 0.01 0.11 -1 -1 0.14 0.00202474 0.00187359 10 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.80 vpr 61.16 MiB -1 -1 0.15 17284 1 0.02 -1 -1 29968 -1 -1 2 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62628 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.5 MiB 0.01 43 476 113 309 54 61.2 MiB 0.01 0.00 0.792048 -9.40096 -0.792048 0.792048 0.66 8.7514e-05 7.9344e-05 0.00236896 0.00214809 20 127 14 6.64007e+06 25116 394039. 1363.46 1.51 0.0133243 0.0111289 20530 87850 -1 129 9 85 85 5128 1673 0.901248 0.901248 -10.0628 -0.901248 0 0 477104. 1650.88 0.16 0.01 0.05 -1 -1 0.16 0.00289847 0.00258414 13 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.98 vpr 61.02 MiB -1 -1 0.15 17248 1 0.02 -1 -1 29876 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62480 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.4 MiB 0.01 57 869 279 533 57 61.0 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 0.66 0.00010455 9.5432e-05 0.00399114 0.0036423 26 182 43 6.64007e+06 25116 477104. 1650.88 0.59 0.0206078 0.0172257 21682 110474 -1 164 18 158 158 7451 2508 0.923248 0.923248 -12.587 -0.923248 0 0 585099. 2024.56 0.21 0.01 0.10 -1 -1 0.21 0.00462477 0.00398154 16 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.00 vpr 61.17 MiB -1 -1 0.13 17144 1 0.02 -1 -1 30000 -1 -1 4 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62640 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 22.5 MiB 0.01 117 1010 285 572 153 61.2 MiB 0.01 0.00 0.825048 -14.462 -0.825048 0.825048 0.66 0.000118471 0.000108009 0.00392714 0.00358242 26 316 12 6.64007e+06 50232 477104. 1650.88 0.58 0.0175211 0.0147768 21682 110474 -1 281 13 146 146 9424 2462 1.05445 1.05445 -17.1111 -1.05445 0 0 585099. 2024.56 0.17 0.01 0.13 -1 -1 0.17 0.00429923 0.00374286 20 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.99 vpr 61.23 MiB -1 -1 0.14 17292 1 0.02 -1 -1 30004 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62700 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.5 MiB 0.02 110 1508 446 794 268 61.2 MiB 0.01 0.00 1.18536 -16.9991 -1.18536 1.18536 0.66 0.000140568 0.000128858 0.00601152 0.00552509 26 285 13 6.64007e+06 37674 477104. 1650.88 0.63 0.0217539 0.0185572 21682 110474 -1 258 15 160 160 10027 2964 1.09645 1.09645 -19.1204 -1.09645 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00522504 0.00451674 22 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.12 vpr 61.25 MiB -1 -1 0.14 17264 1 0.02 -1 -1 29992 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.6 MiB 0.02 120 1870 496 982 392 61.2 MiB 0.02 0.00 1.19636 -19.4451 -1.19636 1.19636 0.66 0.000157592 0.000145272 0.00695102 0.00639888 32 282 10 6.64007e+06 50232 554710. 1919.41 0.66 0.0236195 0.0202305 22834 132086 -1 266 11 163 163 7509 2385 0.987248 0.987248 -20.6018 -0.987248 0 0 701300. 2426.64 0.20 0.01 0.14 -1 -1 0.20 0.00477563 0.00418139 25 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.91 vpr 61.45 MiB -1 -1 0.12 17204 1 0.02 -1 -1 30068 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62920 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 23.0 MiB 0.02 130 2165 691 1177 297 61.4 MiB 0.02 0.00 1.20736 -22.2309 -1.20736 1.20736 0.66 0.000174873 0.00016127 0.00782606 0.00722942 30 316 17 6.64007e+06 50232 526063. 1820.29 0.64 0.0282901 0.0242219 22546 126617 -1 254 13 166 166 8480 2498 0.943248 0.943248 -21.1902 -0.943248 0 0 666494. 2306.21 0.19 0.02 0.12 -1 -1 0.19 0.00568189 0.00493208 28 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.07 vpr 61.39 MiB -1 -1 0.12 17240 1 0.03 -1 -1 30136 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62868 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.9 MiB 0.03 165 2599 732 1310 557 61.4 MiB 0.02 0.00 1.21836 -25.3249 -1.21836 1.21836 0.69 0.000193189 0.000178691 0.00881087 0.00813973 26 421 16 6.64007e+06 62790 477104. 1650.88 0.60 0.0307987 0.0263916 21682 110474 -1 398 14 218 218 16639 4369 1.10745 1.10745 -27.6146 -1.10745 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00642337 0.00555372 31 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.09 vpr 61.24 MiB -1 -1 0.10 17368 1 0.02 -1 -1 30052 -1 -1 5 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62712 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.7 MiB 0.03 164 2828 891 1242 695 61.2 MiB 0.02 0.00 1.22936 -27.5958 -1.22936 1.22936 0.66 0.000210126 0.000194466 0.00937181 0.00868417 30 486 22 6.64007e+06 62790 526063. 1820.29 0.67 0.0349793 0.0299751 22546 126617 -1 367 11 239 239 12208 3632 1.12945 1.12945 -28.0041 -1.12945 0 0 666494. 2306.21 0.19 0.02 0.11 -1 -1 0.19 0.00589239 0.00513321 34 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.12 vpr 61.24 MiB -1 -1 0.12 17196 1 0.02 -1 -1 30092 -1 -1 5 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62708 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.8 MiB 0.05 222 3193 974 1551 668 61.2 MiB 0.02 0.00 1.24036 -30.5145 -1.24036 1.24036 0.66 0.000206241 0.000189613 0.0101926 0.00944232 32 527 13 6.64007e+06 62790 554710. 1919.41 0.68 0.0366008 0.0318265 22834 132086 -1 447 16 229 229 13941 3724 1.00925 1.00925 -30.3671 -1.00925 0 0 701300. 2426.64 0.20 0.02 0.12 -1 -1 0.20 0.00782296 0.00672908 37 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.22 vpr 61.45 MiB -1 -1 0.14 17216 1 0.02 -1 -1 30064 -1 -1 6 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62920 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 23.0 MiB 0.03 213 3743 1348 1918 477 61.4 MiB 0.03 0.00 1.25136 -33.0163 -1.25136 1.25136 0.72 0.000237901 0.000220345 0.0112493 0.0104016 30 584 22 6.64007e+06 75348 526063. 1820.29 0.68 0.0400304 0.0344975 22546 126617 -1 463 18 358 358 22591 6437 0.934248 0.934248 -31.8611 -0.934248 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0112772 0.00977003 40 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.16 vpr 61.38 MiB -1 -1 0.14 17212 1 0.02 -1 -1 29984 -1 -1 7 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62852 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.8 MiB 0.02 274 4093 1352 1973 768 61.4 MiB 0.03 0.00 1.26236 -36.4784 -1.26236 1.26236 0.66 0.000251147 0.000232594 0.0117031 0.0108389 28 654 15 6.64007e+06 87906 500653. 1732.36 0.72 0.0405765 0.0351595 21970 115934 -1 549 10 281 281 17248 4733 1.04225 1.04225 -36.7874 -1.04225 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00651327 0.00572868 44 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.20 vpr 61.29 MiB -1 -1 0.15 17164 1 0.02 -1 -1 30276 -1 -1 7 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62756 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.8 MiB 0.03 288 4848 1950 2799 99 61.3 MiB 0.03 0.00 1.62267 -39.6749 -1.62267 1.62267 0.65 0.000271475 0.000251522 0.0137149 0.0127063 32 617 15 6.64007e+06 87906 554710. 1919.41 0.70 0.0433545 0.037688 22834 132086 -1 575 13 332 332 22282 5973 1.08425 1.08425 -39.233 -1.08425 0 0 701300. 2426.64 0.20 0.02 0.12 -1 -1 0.20 0.0081444 0.00711377 46 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.18 vpr 61.52 MiB -1 -1 0.11 17260 1 0.02 -1 -1 30136 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62992 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 23.0 MiB 0.03 322 6597 2432 2696 1469 61.5 MiB 0.04 0.00 1.63367 -43.7768 -1.63367 1.63367 0.66 0.000292255 0.000270622 0.018541 0.017196 32 754 18 6.64007e+06 87906 554710. 1919.41 0.71 0.0556481 0.0485561 22834 132086 -1 622 14 383 383 25542 6916 1.09525 1.09525 -42.2648 -1.09525 0 0 701300. 2426.64 0.20 0.02 0.12 -1 -1 0.20 0.0090182 0.00784311 49 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.22 vpr 61.57 MiB -1 -1 0.16 17496 1 0.02 -1 -1 30072 -1 -1 8 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63048 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 23.0 MiB 0.04 339 6795 2758 3901 136 61.6 MiB 0.05 0.00 1.66184 -49.3449 -1.66184 1.66184 0.66 0.000328879 0.000305453 0.0186569 0.0173502 30 877 21 6.64007e+06 100464 526063. 1820.29 0.72 0.0534963 0.046625 22546 126617 -1 725 16 455 455 38637 11330 1.11845 1.11845 -47.0517 -1.11845 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0110638 0.00958809 55 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.29 vpr 61.68 MiB -1 -1 0.16 17352 1 0.03 -1 -1 30360 -1 -1 8 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 23.0 MiB 0.04 391 7990 3267 4602 121 61.7 MiB 0.05 0.00 1.67767 -55.9871 -1.67767 1.67767 0.65 0.000358075 0.000332611 0.0210013 0.0195326 30 1076 48 6.64007e+06 100464 526063. 1820.29 0.77 0.0781432 0.0678559 22546 126617 -1 826 17 556 556 45036 11307 1.25945 1.25945 -54.9829 -1.25945 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0125554 0.0108745 61 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.36 vpr 61.55 MiB -1 -1 0.17 17408 1 0.02 -1 -1 30468 -1 -1 10 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63024 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 22.9 MiB 0.03 547 9208 3773 5318 117 61.5 MiB 0.06 0.00 1.69967 -63.665 -1.69967 1.69967 0.66 0.000390372 0.000363778 0.0228801 0.0212812 32 1215 20 6.64007e+06 125580 554710. 1919.41 0.75 0.068449 0.0601539 22834 132086 -1 988 17 576 576 45950 11224 1.17345 1.17345 -60.6848 -1.17345 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0135273 0.0117909 68 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 vpr 61.69 MiB -1 -1 0.16 17496 1 0.02 -1 -1 30488 -1 -1 10 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.0 MiB 0.04 529 5574 1023 4232 319 61.7 MiB 0.04 0.00 2.07098 -70.8466 -2.07098 2.07098 0.66 0.000421093 0.000392253 0.0140061 0.0130568 30 1206 16 6.64007e+06 125580 526063. 1820.29 0.75 0.0609755 0.053322 22546 126617 -1 1033 12 520 520 32652 8716 1.31245 1.31245 -69.5843 -1.31245 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.011216 0.00987288 73 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.41 vpr 62.00 MiB -1 -1 0.13 17528 1 0.02 -1 -1 30020 -1 -1 11 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.3 MiB 0.04 688 14749 3296 10627 826 62.0 MiB 0.08 0.00 2.11498 -86.7749 -2.11498 2.11498 0.68 0.000485921 0.00045307 0.0336544 0.0313608 32 1653 15 6.64007e+06 138138 554710. 1919.41 0.76 0.0862939 0.0768333 22834 132086 -1 1374 14 675 675 48554 12572 1.43265 1.43265 -84.9238 -1.43265 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0143687 0.0126195 85 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.52 vpr 62.02 MiB -1 -1 0.16 17364 1 0.03 -1 -1 30016 -1 -1 13 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.4 MiB 0.03 791 18731 4146 13545 1040 62.0 MiB 0.10 0.00 2.50829 -102.158 -2.50829 2.50829 0.66 0.000568801 0.000530582 0.0416036 0.0388114 32 1849 21 6.64007e+06 163254 554710. 1919.41 0.82 0.107446 0.0958091 22834 132086 -1 1541 21 798 798 73275 21259 1.30145 1.30145 -92.1899 -1.30145 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.022426 0.0196464 97 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.77 vpr 62.88 MiB -1 -1 0.19 17720 1 0.03 -1 -1 30268 -1 -1 19 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 24.0 MiB 0.06 1480 31353 9242 19771 2340 62.9 MiB 0.18 0.00 3.38291 -181.53 -3.38291 3.38291 0.66 0.000869775 0.000815118 0.0622449 0.0583122 32 3008 21 6.64007e+06 238602 554710. 1919.41 0.89 0.16522 0.149537 22834 132086 -1 2560 16 1013 1013 92739 21618 1.53945 1.53945 -150.326 -1.53945 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0315009 0.028471 145 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.23 vpr 63.48 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30708 -1 -1 25 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.3 MiB 0.08 2038 51621 17664 30557 3400 63.5 MiB 0.30 0.01 4.25753 -269.429 -4.25753 4.25753 0.66 0.00121076 0.00113937 0.0979391 0.0921344 32 3930 16 6.64007e+06 313950 554710. 1919.41 1.00 0.232884 0.213016 22834 132086 -1 3494 21 1388 1388 126838 29064 1.83045 1.83045 -210.947 -1.83045 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0468537 0.0421696 193 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.24 vpr 60.91 MiB -1 -1 0.07 17152 1 0.02 -1 -1 29920 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62368 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.2 MiB 0.01 45 88 36 48 4 60.9 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 0.70 7.0979e-05 6.3658e-05 0.000655259 0.000591075 20 103 7 6.65987e+06 25356 394039. 1363.46 1.01 0.00501165 0.0043301 20530 87850 -1 92 4 21 21 1077 340 0.890248 0.890248 -7.61813 -0.890248 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00208806 0.00193967 10 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.77 vpr 60.86 MiB -1 -1 0.08 17284 1 0.02 -1 -1 29916 -1 -1 2 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62324 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.01 41 456 116 304 36 60.9 MiB 0.01 0.00 0.781048 -9.22036 -0.781048 0.781048 0.66 0.000104203 9.5767e-05 0.00233402 0.00212179 26 126 10 6.65987e+06 25356 477104. 1650.88 0.50 0.00819264 0.00695085 21682 110474 -1 107 6 56 56 2239 782 0.71851 0.71851 -8.88158 -0.71851 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00252282 0.00228879 13 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.90 vpr 61.00 MiB -1 -1 0.15 17288 1 0.02 -1 -1 29916 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62460 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.3 MiB 0.01 72 1094 334 508 252 61.0 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 0.66 0.000105682 9.6175e-05 0.00493217 0.00449786 26 213 10 6.65987e+06 25356 477104. 1650.88 0.57 0.0165703 0.014106 21682 110474 -1 158 11 121 121 5746 1754 0.912248 0.912248 -12.0702 -0.912248 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00360333 0.00316902 16 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.99 vpr 61.24 MiB -1 -1 0.17 16984 1 0.02 -1 -1 30068 -1 -1 4 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62708 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 22.5 MiB 0.01 113 670 139 437 94 61.2 MiB 0.01 0.00 0.825048 -14.1032 -0.825048 0.825048 0.66 0.000121874 0.000111722 0.00280615 0.0025762 26 293 16 6.65987e+06 50712 477104. 1650.88 0.59 0.0174431 0.014634 21682 110474 -1 283 18 187 187 18934 4701 1.06545 1.06545 -17.5297 -1.06545 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00532044 0.00456315 20 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.01 vpr 60.85 MiB -1 -1 0.15 17228 1 0.02 -1 -1 30000 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62308 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.01 111 1508 461 714 333 60.8 MiB 0.01 0.00 1.18536 -17.1757 -1.18536 1.18536 0.66 0.000139613 0.000128169 0.00599238 0.00550345 28 296 13 6.65987e+06 38034 500653. 1732.36 0.61 0.0216038 0.0184157 21970 115934 -1 262 9 136 136 8292 2563 1.08545 1.08545 -18.9312 -1.08545 0 0 612192. 2118.31 0.18 0.01 0.11 -1 -1 0.18 0.00402982 0.00356521 22 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.09 vpr 61.07 MiB -1 -1 0.15 17224 1 0.02 -1 -1 30180 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.6 MiB 0.01 119 1594 461 883 250 61.1 MiB 0.02 0.00 1.19636 -19.4942 -1.19636 1.19636 0.66 0.000159612 0.000146961 0.00596969 0.00549907 32 330 16 6.65987e+06 50712 554710. 1919.41 0.67 0.0240947 0.0205144 22834 132086 -1 281 13 133 133 8022 2338 1.09645 1.09645 -21.4834 -1.09645 0 0 701300. 2426.64 0.20 0.01 0.13 -1 -1 0.20 0.00530799 0.00462174 25 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.09 vpr 61.21 MiB -1 -1 0.15 17180 1 0.02 -1 -1 29948 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.7 MiB 0.01 130 2165 641 1112 412 61.2 MiB 0.02 0.00 1.20736 -22.0911 -1.20736 1.20736 0.66 0.000173899 0.000160531 0.00781201 0.00721594 26 359 15 6.65987e+06 50712 477104. 1650.88 0.64 0.0275906 0.0236264 21682 110474 -1 352 13 197 197 17592 4637 1.21665 1.21665 -25.5322 -1.21665 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00586274 0.00508496 28 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.09 vpr 61.23 MiB -1 -1 0.16 17160 1 0.03 -1 -1 30152 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62704 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.7 MiB 0.02 146 2599 849 1247 503 61.2 MiB 0.02 0.00 1.21836 -24.7702 -1.21836 1.21836 0.67 0.000193897 0.000178638 0.00884964 0.00818584 28 451 15 6.65987e+06 63390 500653. 1732.36 0.63 0.0309412 0.0265705 21970 115934 -1 403 18 284 284 24774 6503 1.14559 1.14559 -26.5125 -1.14559 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00760464 0.00650486 31 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.13 vpr 61.11 MiB -1 -1 0.16 17228 1 0.02 -1 -1 30068 -1 -1 5 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62572 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.6 MiB 0.02 164 2624 822 1205 597 61.1 MiB 0.02 0.00 1.22936 -27.5927 -1.22936 1.22936 0.71 0.000212415 0.00019654 0.00879453 0.00814611 28 553 19 6.65987e+06 63390 500653. 1732.36 0.65 0.0335815 0.0287785 21970 115934 -1 441 15 295 295 28098 7446 1.10745 1.10745 -28.9722 -1.10745 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00725138 0.00626258 34 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.20 vpr 61.31 MiB -1 -1 0.15 17200 1 0.02 -1 -1 30076 -1 -1 5 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62780 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.8 MiB 0.02 223 3193 975 1461 757 61.3 MiB 0.03 0.00 1.24036 -30.6298 -1.24036 1.24036 0.67 0.000223378 0.000206877 0.0103334 0.00956946 32 562 14 6.65987e+06 63390 554710. 1919.41 0.72 0.0352523 0.030479 22834 132086 -1 455 15 258 258 14799 4178 1.12945 1.12945 -31.8095 -1.12945 0 0 701300. 2426.64 0.20 0.02 0.12 -1 -1 0.20 0.00753138 0.00650194 37 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.26 vpr 61.30 MiB -1 -1 0.15 17140 1 0.02 -1 -1 30016 -1 -1 6 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62776 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.8 MiB 0.02 203 3743 1266 1895 582 61.3 MiB 0.04 0.00 1.25136 -33.0797 -1.25136 1.25136 0.69 0.000180835 0.000163976 0.0114849 0.010514 28 693 32 6.65987e+06 76068 500653. 1732.36 0.76 0.0446686 0.038274 21970 115934 -1 573 17 425 425 38592 10533 1.17465 1.17465 -34.4327 -1.17465 0 0 612192. 2118.31 0.18 0.03 0.11 -1 -1 0.18 0.00877668 0.00758502 40 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.18 vpr 61.19 MiB -1 -1 0.15 17488 1 0.02 -1 -1 30008 -1 -1 7 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62656 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.7 MiB 0.02 264 4093 1437 1752 904 61.2 MiB 0.03 0.00 1.26236 -36.2215 -1.26236 1.26236 0.66 0.000253145 0.000234295 0.011807 0.0109381 32 670 15 6.65987e+06 88746 554710. 1919.41 0.69 0.0396472 0.0343721 22834 132086 -1 581 23 359 359 103468 51390 1.17345 1.17345 -38.6162 -1.17345 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.011457 0.00981357 44 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.29 vpr 61.08 MiB -1 -1 0.16 17596 1 0.02 -1 -1 30368 -1 -1 7 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62548 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.6 MiB 0.02 288 4848 1943 2811 94 61.1 MiB 0.03 0.00 1.62267 -39.7289 -1.62267 1.62267 0.66 0.000296047 0.000275111 0.0137689 0.012758 32 700 13 6.65987e+06 88746 554710. 1919.41 0.70 0.042975 0.0373677 22834 132086 -1 588 19 363 363 27152 7268 1.05125 1.05125 -39.1147 -1.05125 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.0105454 0.00909287 46 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.25 vpr 61.33 MiB -1 -1 0.15 17480 1 0.02 -1 -1 30064 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62800 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.7 MiB 0.02 308 6597 2389 2698 1510 61.3 MiB 0.04 0.00 1.63367 -42.5457 -1.63367 1.63367 0.66 0.000296697 0.000275059 0.0184716 0.0171333 32 736 23 6.65987e+06 88746 554710. 1919.41 0.71 0.0510157 0.0445487 22834 132086 -1 635 17 405 405 33264 8740 1.19345 1.19345 -42.9014 -1.19345 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.0103838 0.00898409 49 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.28 vpr 61.46 MiB -1 -1 0.16 17452 1 0.02 -1 -1 30060 -1 -1 8 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62932 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.9 MiB 0.02 338 6795 2757 3910 128 61.5 MiB 0.04 0.00 1.66184 -49.2226 -1.66184 1.66184 0.66 0.000327462 0.000304172 0.0184939 0.0172006 30 841 20 6.65987e+06 101424 526063. 1820.29 0.70 0.0569636 0.0496511 22546 126617 -1 737 14 426 426 36938 10631 1.14045 1.14045 -47.2201 -1.14045 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0102395 0.00889686 55 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.87 vpr 61.34 MiB -1 -1 0.16 17428 1 0.03 -1 -1 30360 -1 -1 8 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62816 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.7 MiB 0.03 394 7990 3280 4604 106 61.3 MiB 0.05 0.00 1.67767 -56.0732 -1.67767 1.67767 0.66 0.00035967 0.000334382 0.0209516 0.0194941 32 1087 23 6.65987e+06 101424 554710. 1919.41 2.30 0.105571 0.0908996 22834 132086 -1 908 14 558 558 45347 11907 1.25945 1.25945 -56.4254 -1.25945 0 0 701300. 2426.64 0.20 0.03 0.09 -1 -1 0.20 0.0109338 0.00953004 61 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.15 vpr 61.45 MiB -1 -1 0.16 17632 1 0.02 -1 -1 30336 -1 -1 10 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62924 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 22.8 MiB 0.03 488 9208 3771 5298 139 61.4 MiB 0.06 0.00 1.69967 -62.9619 -1.69967 1.69967 0.69 0.00039092 0.000363271 0.0226572 0.0210694 36 1124 25 6.65987e+06 126780 612192. 2118.31 2.52 0.126137 0.108853 23410 145293 -1 962 14 514 514 44638 11488 1.23745 1.23745 -61.3906 -1.23745 0 0 782063. 2706.10 0.21 0.04 0.13 -1 -1 0.21 0.0118808 0.0104196 68 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 vpr 61.90 MiB -1 -1 0.12 17348 1 0.02 -1 -1 30420 -1 -1 10 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.2 MiB 0.06 522 5025 948 3851 226 61.9 MiB 0.04 0.00 2.07098 -69.6207 -2.07098 2.07098 0.66 0.000420978 0.000392155 0.0127708 0.011908 30 1271 23 6.65987e+06 126780 526063. 1820.29 0.79 0.0636972 0.055469 22546 126617 -1 1026 17 511 511 34093 9196 1.56385 1.56385 -74.8887 -1.56385 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0145203 0.012684 73 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.06 vpr 61.59 MiB -1 -1 0.17 17468 1 0.03 -1 -1 30012 -1 -1 11 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 22.9 MiB 0.04 695 10531 2311 7690 530 61.6 MiB 0.07 0.00 2.11498 -86.4875 -2.11498 2.11498 0.65 0.00048302 0.000449442 0.0244451 0.0227725 34 1558 37 6.65987e+06 139458 585099. 2024.56 2.46 0.142403 0.124251 23122 138558 -1 1366 17 580 580 51089 13175 1.36745 1.36745 -83.7116 -1.36745 0 0 742403. 2568.87 0.21 0.04 0.12 -1 -1 0.21 0.0164841 0.0145102 85 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.48 vpr 61.76 MiB -1 -1 0.17 17524 1 0.03 -1 -1 30016 -1 -1 13 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63244 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.2 MiB 0.03 796 12613 2902 8977 734 61.8 MiB 0.08 0.00 2.50829 -102.591 -2.50829 2.50829 0.68 0.000565242 0.000528385 0.0283548 0.0264917 30 1787 26 6.65987e+06 164814 526063. 1820.29 0.84 0.0999576 0.0884406 22546 126617 -1 1473 14 694 694 50016 13024 1.44759 1.44759 -96.299 -1.44759 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0164922 0.0145668 97 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.89 vpr 62.69 MiB -1 -1 0.18 17684 1 0.03 -1 -1 30276 -1 -1 19 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.8 MiB 0.05 1495 31353 9814 19140 2399 62.7 MiB 0.18 0.00 3.38291 -183.11 -3.38291 3.38291 0.65 0.000863126 0.000809109 0.0624506 0.0585064 32 3051 40 6.65987e+06 240882 554710. 1919.41 0.94 0.19035 0.171649 22834 132086 -1 2704 26 1139 1139 155858 42034 1.62545 1.62545 -154.798 -1.62545 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0405798 0.0361239 145 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.29 vpr 63.19 MiB -1 -1 0.20 17880 1 0.03 -1 -1 30500 -1 -1 25 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.3 MiB 0.08 2040 51621 17960 30273 3388 63.2 MiB 0.30 0.01 4.25753 -270.446 -4.25753 4.25753 0.66 0.00106095 0.0010003 0.0958688 0.0900199 32 4135 45 6.65987e+06 316950 554710. 1919.41 1.09 0.286974 0.260813 22834 132086 -1 3554 15 1373 1373 144561 33087 1.85245 1.85245 -211.327 -1.85245 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0359556 0.0324692 193 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.04 vpr 61.77 MiB -1 -1 0.15 17264 1 0.02 -1 -1 29992 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 23.1 MiB 0.02 36 142 63 74 5 61.8 MiB 0.00 0.00 0.712895 -7.87489 -0.712895 0.712895 0.74 7.2077e-05 6.4734e-05 0.00102833 0.000924965 8 98 21 6.95648e+06 14475.7 166176. 575.005 0.72 0.00798974 0.00674947 20866 45572 -1 79 18 50 50 4224 1449 0.87204 0.87204 -8.60624 -0.87204 0 0 202963. 702.294 0.07 0.01 0.05 -1 -1 0.07 0.00356286 0.00310535 5 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.86 vpr 61.84 MiB -1 -1 0.15 17184 1 0.02 -1 -1 29952 -1 -1 1 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 23.1 MiB 0.02 31 357 99 212 46 61.8 MiB 0.01 0.00 0.723895 -9.81308 -0.723895 0.723895 0.70 8.7282e-05 7.9147e-05 0.00204764 0.00185217 18 109 13 6.95648e+06 14475.7 376052. 1301.22 0.47 0.0126091 0.0106259 22882 88689 -1 106 10 63 63 4495 1485 0.74674 0.74674 -10.4754 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00303795 0.00270532 7 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 3.92 vpr 61.95 MiB -1 -1 0.10 17236 1 0.02 -1 -1 29888 -1 -1 1 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 23.3 MiB 0.03 45 409 82 317 10 61.9 MiB 0.01 0.00 0.723895 -12.1585 -0.723895 0.723895 0.68 0.000104663 9.5475e-05 0.00223257 0.00203559 22 170 8 6.95648e+06 14475.7 443629. 1535.05 1.56 0.0190578 0.0157985 23458 102101 -1 133 9 59 59 3523 1154 0.723895 0.723895 -13.1609 -0.723895 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00347157 0.00310975 8 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 3.89 vpr 61.98 MiB -1 -1 0.15 17192 1 0.02 -1 -1 30072 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63464 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.4 MiB 0.03 75 472 115 342 15 62.0 MiB 0.01 0.00 0.905094 -15.1774 -0.905094 0.905094 0.68 0.00012189 0.000111654 0.00233885 0.00214172 20 205 8 6.95648e+06 28951.4 414966. 1435.87 1.38 0.0122566 0.0104883 23170 95770 -1 200 10 84 84 5135 1594 0.87204 0.87204 -16.4471 -0.87204 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00388988 0.00344828 10 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.25 vpr 61.77 MiB -1 -1 0.17 17228 1 0.02 -1 -1 30004 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.3 MiB 0.03 182 997 285 587 125 61.8 MiB 0.01 0.00 0.852632 -19.1795 -0.852632 0.852632 0.70 0.000138925 0.000127494 0.00432536 0.00398115 24 369 14 6.95648e+06 28951.4 470940. 1629.55 0.59 0.0203047 0.0172057 24034 113901 -1 347 15 149 149 13529 3216 1.10323 1.10323 -22.1823 -1.10323 0 0 586450. 2029.24 0.16 0.02 0.10 -1 -1 0.16 0.005486 0.00477732 11 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 3.06 vpr 61.90 MiB -1 -1 0.15 17124 1 0.02 -1 -1 30020 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.3 MiB 0.03 221 616 171 414 31 61.9 MiB 0.01 0.00 0.852632 -23.0752 -0.852632 0.852632 0.68 0.000156976 0.000144516 0.00281936 0.0025914 26 427 11 6.95648e+06 28951.4 503264. 1741.40 0.61 0.0198989 0.016773 24322 120374 -1 413 10 164 164 15751 3684 0.949732 0.949732 -24.7469 -0.949732 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00460572 0.00406062 13 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 4.94 vpr 61.88 MiB -1 -1 0.16 17144 1 0.02 -1 -1 30232 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.4 MiB 0.04 108 2527 936 1406 185 61.9 MiB 0.02 0.00 0.874632 -21.915 -0.874632 0.874632 0.68 0.000174667 0.000161174 0.00982014 0.00906234 34 384 17 6.95648e+06 28951.4 618332. 2139.56 2.35 0.0519176 0.043602 25762 151098 -1 300 23 302 302 18535 6038 1.12523 1.12523 -23.9556 -1.12523 0 0 787024. 2723.27 0.21 0.02 0.13 -1 -1 0.21 0.00849309 0.00723359 14 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.60 vpr 61.99 MiB -1 -1 0.15 17012 1 0.02 -1 -1 30176 -1 -1 2 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.5 MiB 0.04 124 1849 591 958 300 62.0 MiB 0.02 0.00 0.896632 -24.606 -0.896632 0.896632 0.67 0.000192675 0.000178253 0.00710392 0.00656778 34 464 39 6.95648e+06 28951.4 618332. 2139.56 1.07 0.0510483 0.0426537 25762 151098 -1 362 32 415 415 29570 8454 1.10803 1.10803 -26.2823 -1.10803 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.011713 0.00986011 16 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.24 vpr 62.27 MiB -1 -1 0.16 17232 1 0.02 -1 -1 30004 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.7 MiB 0.04 149 1424 335 1059 30 62.3 MiB 0.02 0.00 0.879432 -27.154 -0.879432 0.879432 0.68 0.000183203 0.000167598 0.00543142 0.00502988 28 532 47 6.95648e+06 43427 531479. 1839.03 0.73 0.0393068 0.0331151 24610 126494 -1 457 11 280 280 18391 5462 1.06403 1.06403 -32.0123 -1.06403 0 0 648988. 2245.63 0.18 0.02 0.11 -1 -1 0.18 0.00609298 0.00531886 17 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.63 vpr 61.99 MiB -1 -1 0.15 17148 1 0.03 -1 -1 29996 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.04 191 1581 337 1210 34 62.0 MiB 0.02 0.00 0.918632 -30.4288 -0.918632 0.918632 0.68 0.000224111 0.000207562 0.00575802 0.00534334 34 576 15 6.95648e+06 43427 618332. 2139.56 1.06 0.0478747 0.040272 25762 151098 -1 469 13 301 301 25512 7050 1.14103 1.14103 -34.6799 -1.14103 0 0 787024. 2723.27 0.21 0.02 0.13 -1 -1 0.21 0.00708738 0.00617617 19 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 3.31 vpr 62.01 MiB -1 -1 0.15 17284 1 0.02 -1 -1 30108 -1 -1 3 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.5 MiB 0.04 373 2046 513 1237 296 62.0 MiB 0.02 0.00 0.951632 -36.1138 -0.951632 0.951632 0.68 0.000237905 0.000220439 0.00701976 0.00650806 30 806 29 6.95648e+06 43427 556674. 1926.21 0.73 0.0387382 0.0330004 25186 138497 -1 740 15 338 338 31466 6815 1.23953 1.23953 -40.3343 -1.23953 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00817822 0.0071029 20 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 3.71 vpr 62.25 MiB -1 -1 0.16 17448 1 0.02 -1 -1 29992 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 23.6 MiB 0.03 471 3180 797 1969 414 62.2 MiB 0.03 0.00 0.951632 -40.3696 -0.951632 0.951632 0.68 0.000303996 0.000282063 0.0105737 0.00979692 34 943 21 6.95648e+06 57902.7 618332. 2139.56 1.11 0.0601265 0.051146 25762 151098 -1 907 13 383 383 44092 8818 1.17403 1.17403 -47.4039 -1.17403 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00787889 0.00688785 23 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.83 vpr 62.00 MiB -1 -1 0.16 17504 1 0.03 -1 -1 30248 -1 -1 3 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.4 MiB 0.05 264 3822 1541 2241 40 62.0 MiB 0.03 0.00 1.33396 -40.3826 -1.33396 1.33396 0.68 0.000270886 0.000250971 0.0121153 0.0112397 34 748 29 6.95648e+06 43427 618332. 2139.56 1.17 0.0688746 0.0587304 25762 151098 -1 618 19 437 437 34249 8680 1.21603 1.21603 -44.255 -1.21603 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.0107725 0.00930388 24 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 5.00 vpr 62.34 MiB -1 -1 0.15 17420 1 0.03 -1 -1 30048 -1 -1 4 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.7 MiB 0.06 280 4848 1977 2824 47 62.3 MiB 0.04 0.00 1.34496 -43.4863 -1.34496 1.34496 0.68 0.000340372 0.000315622 0.0158838 0.0147285 34 846 37 6.95648e+06 57902.7 618332. 2139.56 2.29 0.112294 0.0951773 25762 151098 -1 606 14 401 401 28162 7406 1.20503 1.20503 -45.4821 -1.20503 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00922062 0.00805291 25 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.06 vpr 62.36 MiB -1 -1 0.17 17484 1 0.02 -1 -1 30084 -1 -1 4 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.7 MiB 0.09 310 6963 2911 4006 46 62.4 MiB 0.05 0.00 1.36696 -49.8294 -1.36696 1.36696 0.68 0.000327057 0.000303873 0.0205925 0.0191589 34 994 23 6.95648e+06 57902.7 618332. 2139.56 1.35 0.0863385 0.0744203 25762 151098 -1 765 19 512 512 55670 13459 1.42263 1.42263 -55.9177 -1.42263 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0128797 0.011132 28 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.99 vpr 62.29 MiB -1 -1 0.16 17496 1 0.02 -1 -1 30328 -1 -1 4 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 41 21 146 147 1 95 66 17 17 289 -1 unnamed_device 23.6 MiB 0.08 348 7115 2951 4114 50 62.3 MiB 0.05 0.00 1.38896 -56.0872 -1.38896 1.38896 0.68 0.000356708 0.000331613 0.0203231 0.018915 34 1081 30 6.95648e+06 57902.7 618332. 2139.56 1.26 0.0931371 0.0803289 25762 151098 -1 859 23 578 578 97985 34449 1.27723 1.27723 -60.4816 -1.27723 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0160421 0.0138688 31 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.16 vpr 62.35 MiB -1 -1 0.17 17388 1 0.02 -1 -1 30308 -1 -1 5 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 23.7 MiB 0.09 398 9041 3734 5246 61 62.3 MiB 0.06 0.00 1.41096 -61.6599 -1.41096 1.41096 0.68 0.000388088 0.000360795 0.0243281 0.0226419 36 1130 36 6.95648e+06 72378.4 648988. 2245.63 1.37 0.0888332 0.0775055 26050 158493 -1 893 16 577 577 59790 13864 1.24903 1.24903 -64.1802 -1.24903 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0134008 0.0117343 34 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 5.83 vpr 62.46 MiB -1 -1 0.16 17468 1 0.02 -1 -1 30256 -1 -1 5 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.8 MiB 0.09 521 10050 4309 5679 62 62.5 MiB 0.06 0.00 1.43296 -70.1603 -1.43296 1.43296 0.67 0.000421895 0.000392614 0.026221 0.0244102 36 1304 23 6.95648e+06 72378.4 648988. 2245.63 3.05 0.1406 0.121724 26050 158493 -1 1030 17 612 612 59690 13565 1.41353 1.41353 -73.8115 -1.41353 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0149726 0.013118 37 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 6.65 vpr 62.59 MiB -1 -1 0.17 17464 1 0.03 -1 -1 30112 -1 -1 6 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.9 MiB 0.07 560 13961 5920 7973 68 62.6 MiB 0.08 0.00 1.47696 -82.5806 -1.47696 1.47696 0.68 0.000486994 0.000453244 0.0343411 0.0319713 44 1567 49 6.95648e+06 86854.1 787024. 2723.27 3.81 0.218821 0.190202 27778 195446 -1 1178 16 789 789 69897 17053 1.71293 1.71293 -93.4275 -1.71293 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0162237 0.0142906 43 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 6.57 vpr 62.62 MiB -1 -1 0.17 17772 1 0.03 -1 -1 30088 -1 -1 7 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 24.1 MiB 0.08 758 16160 6842 9176 142 62.6 MiB 0.09 0.00 1.88129 -97.0955 -1.88129 1.88129 0.67 0.000568281 0.000530239 0.0389098 0.036328 46 1513 18 6.95648e+06 101330 828058. 2865.25 3.65 0.182353 0.160035 28066 200906 -1 1326 20 938 938 82737 18232 1.39433 1.39433 -94.6526 -1.39433 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0222592 0.0195882 49 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 13.20 vpr 63.59 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30248 -1 -1 10 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.4 MiB 0.10 1331 30743 8901 19960 1882 63.6 MiB 0.16 0.00 2.41762 -163.869 -2.41762 2.41762 0.68 0.000868882 0.000814468 0.0660178 0.0618779 46 2969 39 6.95648e+06 144757 828058. 2865.25 10.06 0.463365 0.412468 28066 200906 -1 2418 23 1272 1272 164877 46134 1.59703 1.59703 -158.435 -1.59703 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0374983 0.0335237 73 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 8.79 vpr 64.01 MiB -1 -1 0.21 17776 1 0.03 -1 -1 30480 -1 -1 13 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65548 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.9 MiB 0.12 2090 36315 10749 23078 2488 64.0 MiB 0.21 0.01 2.95395 -243.637 -2.95395 2.95395 0.68 0.00119694 0.00112643 0.0741031 0.0697002 60 3530 29 6.95648e+06 188184 1.01997e+06 3529.29 5.38 0.462086 0.415678 30658 258169 -1 3123 16 1299 1299 131280 27013 1.66773 1.66773 -209.901 -1.66773 0 0 1.27783e+06 4421.56 0.32 0.10 0.22 -1 -1 0.32 0.0389481 0.0352944 97 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.71 vpr 61.41 MiB -1 -1 0.13 17228 1 0.03 -1 -1 30000 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62880 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.8 MiB 0.01 38 142 63 74 5 61.4 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 0.68 6.8362e-05 6.0954e-05 0.000975704 0.000870779 14 104 8 6.99608e+06 14715.7 292583. 1012.40 0.38 0.0037183 0.00331577 22018 70521 -1 85 6 32 32 1234 425 0.834592 0.834592 -8.74684 -0.834592 0 0 376052. 1301.22 0.11 0.01 0.07 -1 -1 0.11 0.00225174 0.00205663 5 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.86 vpr 61.61 MiB -1 -1 0.14 17324 1 0.02 -1 -1 29988 -1 -1 1 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63092 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 22.9 MiB 0.01 35 375 107 237 31 61.6 MiB 0.01 0.00 0.712895 -9.56286 -0.712895 0.712895 0.68 8.7064e-05 7.8893e-05 0.00212669 0.0019303 22 122 12 6.99608e+06 14715.7 443629. 1535.05 0.53 0.0122226 0.010287 23458 102101 -1 88 10 56 56 2042 763 0.834592 0.834592 -9.47336 -0.834592 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00302037 0.00268799 7 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.97 vpr 61.53 MiB -1 -1 0.15 17256 1 0.02 -1 -1 29912 -1 -1 1 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63008 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 22.8 MiB 0.01 44 409 92 302 15 61.5 MiB 0.01 0.00 0.837432 -12.9697 -0.837432 0.837432 0.68 0.000104705 9.5595e-05 0.00222083 0.00202997 22 151 9 6.99608e+06 14715.7 443629. 1535.05 0.55 0.0137541 0.0115757 23458 102101 -1 153 8 64 64 3866 1186 0.837432 0.837432 -14.2048 -0.837432 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00312463 0.00279849 8 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 3.89 vpr 61.70 MiB -1 -1 0.16 17168 1 0.02 -1 -1 30152 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 23.0 MiB 0.01 66 472 112 343 17 61.7 MiB 0.01 0.00 0.802432 -14.7849 -0.802432 0.802432 0.69 0.000121719 0.000111519 0.00233076 0.00213648 20 205 8 6.99608e+06 29431.4 414966. 1435.87 1.49 0.0127904 0.010883 23170 95770 -1 181 13 88 88 5268 1792 0.916732 0.916732 -15.8316 -0.916732 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00435924 0.00380947 10 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.06 vpr 61.55 MiB -1 -1 0.14 17332 1 0.02 -1 -1 30148 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63032 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 22.8 MiB 0.02 80 745 225 479 41 61.6 MiB 0.01 0.00 0.859432 -18.0958 -0.859432 0.859432 0.68 0.000140434 0.000129114 0.00336029 0.003095 26 226 21 6.99608e+06 29431.4 503264. 1741.40 0.63 0.0207047 0.0174372 24322 120374 -1 219 8 108 108 6712 2063 0.940679 0.940679 -18.5361 -0.940679 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00383384 0.00341969 11 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.09 vpr 62.01 MiB -1 -1 0.15 17212 1 0.04 -1 -1 30120 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 23.5 MiB 0.02 203 658 170 428 60 62.0 MiB 0.01 0.00 0.87204 -21.2308 -0.87204 0.87204 0.68 0.000155534 0.00014286 0.00291886 0.00268597 26 454 14 6.99608e+06 29431.4 503264. 1741.40 0.62 0.0208548 0.01753 24322 120374 -1 397 16 215 215 23320 5491 1.11618 1.11618 -24.5247 -1.11618 0 0 618332. 2139.56 0.17 0.02 0.11 -1 -1 0.17 0.00594626 0.00511258 13 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 5.35 vpr 61.82 MiB -1 -1 0.15 17208 1 0.02 -1 -1 30064 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63304 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.3 MiB 0.02 110 2479 792 1104 583 61.8 MiB 0.02 0.00 0.846432 -21.9214 -0.846432 0.846432 0.68 0.000174702 0.000161124 0.00958988 0.00884645 36 343 46 6.99608e+06 29431.4 648988. 2245.63 2.80 0.0627426 0.0522955 26050 158493 -1 255 16 264 264 11899 3964 1.09703 1.09703 -22.5274 -1.09703 0 0 828058. 2865.25 0.22 0.02 0.14 -1 -1 0.22 0.00658358 0.00568186 14 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.63 vpr 61.95 MiB -1 -1 0.15 17104 1 0.02 -1 -1 30080 -1 -1 2 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.5 MiB 0.02 134 1739 500 978 261 61.9 MiB 0.02 0.00 0.857432 -24.4123 -0.857432 0.857432 0.70 0.00019256 0.000177985 0.00675256 0.00624408 34 406 27 6.99608e+06 29431.4 618332. 2139.56 1.08 0.0469744 0.039314 25762 151098 -1 352 19 335 335 20191 5998 1.16733 1.16733 -25.6028 -1.16733 0 0 787024. 2723.27 0.21 0.02 0.13 -1 -1 0.21 0.00793836 0.0067661 16 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.19 vpr 61.93 MiB -1 -1 0.15 17348 1 0.03 -1 -1 30000 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.4 MiB 0.02 157 1298 273 992 33 61.9 MiB 0.01 0.00 0.879432 -27.0809 -0.879432 0.879432 0.69 0.000209784 0.000194331 0.00498719 0.00462021 30 505 13 6.99608e+06 44147 556674. 1926.21 0.68 0.0282405 0.0240418 25186 138497 -1 420 17 320 320 22894 6682 1.13198 1.13198 -31.7562 -1.13198 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00791286 0.00680288 17 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.19 vpr 61.80 MiB -1 -1 0.14 17248 1 0.02 -1 -1 29996 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.3 MiB 0.02 214 1861 414 1414 33 61.8 MiB 0.02 0.00 0.890432 -31.2249 -0.890432 0.890432 0.68 0.000223146 0.000206487 0.00656913 0.00606521 26 594 14 6.99608e+06 44147 503264. 1741.40 0.67 0.0311123 0.0265403 24322 120374 -1 540 14 356 356 28447 7724 1.08798 1.08798 -35.908 -1.08798 0 0 618332. 2139.56 0.17 0.02 0.11 -1 -1 0.17 0.00739638 0.00642002 19 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 3.23 vpr 61.92 MiB -1 -1 0.16 17132 1 0.02 -1 -1 30056 -1 -1 3 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.4 MiB 0.02 395 2354 574 1438 342 61.9 MiB 0.02 0.00 0.912432 -36.6204 -0.912432 0.912432 0.67 0.000244515 0.000221455 0.00801856 0.00743288 30 788 16 6.99608e+06 44147 556674. 1926.21 0.71 0.0349545 0.0299783 25186 138497 -1 710 15 331 331 30405 6379 1.18218 1.18218 -41.7645 -1.18218 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00813372 0.0070695 20 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 3.71 vpr 61.95 MiB -1 -1 0.14 17028 1 0.02 -1 -1 29952 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 23.4 MiB 0.02 470 2571 633 1642 296 62.0 MiB 0.02 0.00 0.923432 -39.2056 -0.923432 0.923432 0.68 0.000250872 0.000232665 0.00822485 0.00762679 34 973 32 6.99608e+06 58862.7 618332. 2139.56 1.13 0.0617908 0.0524284 25762 151098 -1 866 15 496 496 57332 11353 1.16733 1.16733 -45.2827 -1.16733 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00859555 0.00746824 23 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 3.79 vpr 61.86 MiB -1 -1 0.14 17492 1 0.02 -1 -1 30324 -1 -1 3 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.3 MiB 0.02 264 3822 1512 2266 44 61.9 MiB 0.03 0.00 1.29476 -39.4641 -1.29476 1.29476 0.67 0.000270176 0.000249996 0.0120612 0.0111781 34 827 32 6.99608e+06 44147 618332. 2139.56 1.22 0.07025 0.0598733 25762 151098 -1 591 16 411 411 33312 8308 1.16103 1.16103 -42.916 -1.16103 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00951946 0.00825769 24 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 5.69 vpr 61.93 MiB -1 -1 0.18 17544 1 0.02 -1 -1 29996 -1 -1 4 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.3 MiB 0.03 279 4848 1973 2828 47 61.9 MiB 0.04 0.00 1.31676 -42.9938 -1.31676 1.31676 0.68 0.000292437 0.000271383 0.0146563 0.0135941 36 795 29 6.99608e+06 58862.7 648988. 2245.63 2.92 0.0905261 0.0770042 26050 158493 -1 613 15 414 414 36028 8736 1.22703 1.22703 -46.2691 -1.22703 0 0 828058. 2865.25 0.22 0.03 0.14 -1 -1 0.22 0.0096414 0.00838491 25 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.91 vpr 62.07 MiB -1 -1 0.16 17500 1 0.03 -1 -1 30144 -1 -1 4 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.5 MiB 0.03 309 6963 2905 3992 66 62.1 MiB 0.05 0.00 1.33876 -48.9536 -1.33876 1.33876 0.67 0.000328569 0.000305361 0.0205895 0.0191523 36 858 19 6.99608e+06 58862.7 648988. 2245.63 1.26 0.0838954 0.07231 26050 158493 -1 707 14 444 444 42628 10193 1.34133 1.34133 -53.1429 -1.34133 0 0 828058. 2865.25 0.22 0.03 0.14 -1 -1 0.22 0.0102672 0.00892568 28 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 4.04 vpr 62.10 MiB -1 -1 0.16 17520 1 0.02 -1 -1 30328 -1 -1 4 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.5 MiB 0.03 346 7115 2925 4148 42 62.1 MiB 0.05 0.00 1.34976 -55.318 -1.34976 1.34976 0.68 0.000358867 0.000333622 0.0203294 0.0189181 34 1135 29 6.99608e+06 58862.7 618332. 2139.56 1.34 0.0959932 0.082851 25762 151098 -1 832 15 501 501 54380 12460 1.29733 1.29733 -59.146 -1.29733 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.011617 0.01012 31 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 4.23 vpr 62.14 MiB -1 -1 0.15 17468 1 0.02 -1 -1 30340 -1 -1 5 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.6 MiB 0.03 396 9041 3748 5233 60 62.1 MiB 0.06 0.00 1.37176 -60.8627 -1.37176 1.37176 0.68 0.000388136 0.000360981 0.0243639 0.0226856 36 1189 23 6.99608e+06 73578.4 648988. 2245.63 1.55 0.101626 0.088275 26050 158493 -1 900 14 588 588 51751 12479 1.26003 1.26003 -64.2225 -1.26003 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0120573 0.0105776 34 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 4.44 vpr 62.25 MiB -1 -1 0.16 17324 1 0.02 -1 -1 30332 -1 -1 5 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.6 MiB 0.04 446 10050 4202 5799 49 62.2 MiB 0.06 0.00 1.39376 -66.6204 -1.39376 1.39376 0.68 0.00042006 0.000390522 0.0262349 0.0244202 38 1265 21 6.99608e+06 73578.4 678818. 2348.85 1.69 0.108307 0.0943365 26626 170182 -1 974 15 641 641 56777 14042 1.26003 1.26003 -68.4016 -1.26003 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0136353 0.0119655 37 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 6.07 vpr 62.44 MiB -1 -1 0.17 17468 1 0.03 -1 -1 30020 -1 -1 6 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.7 MiB 0.04 634 13961 5842 8023 96 62.4 MiB 0.08 0.00 1.44876 -81.1127 -1.44876 1.44876 0.67 0.00048998 0.000454837 0.03434 0.031956 36 1508 35 6.99608e+06 88294.1 648988. 2245.63 3.27 0.178122 0.155283 26050 158493 -1 1254 26 824 824 164581 67296 1.21798 1.21798 -79.2356 -1.21798 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0235237 0.0205368 43 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 8.40 vpr 62.50 MiB -1 -1 0.17 17500 1 0.03 -1 -1 30004 -1 -1 7 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.7 MiB 0.04 748 16160 6967 9054 139 62.5 MiB 0.09 0.00 1.85309 -96.1412 -1.85309 1.85309 0.68 0.000568976 0.000530368 0.0389571 0.036365 38 1779 24 6.99608e+06 103010 678818. 2348.85 5.60 0.278523 0.2427 26626 170182 -1 1376 19 818 818 76794 17306 1.44933 1.44933 -96.9713 -1.44933 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0212076 0.0186419 49 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 7.67 vpr 63.32 MiB -1 -1 0.18 17640 1 0.03 -1 -1 30292 -1 -1 10 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1337 28648 7802 19085 1761 63.3 MiB 0.15 0.00 2.38942 -163.539 -2.38942 2.38942 0.68 0.000872898 0.00081786 0.0620783 0.0581913 48 2814 49 6.99608e+06 147157 865456. 2994.66 4.55 0.363188 0.324068 28354 207349 -1 2569 19 1227 1227 180485 40236 1.61903 1.61903 -164.1 -1.61903 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0321226 0.0287397 73 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.27 vpr 63.64 MiB -1 -1 0.21 17952 1 0.03 -1 -1 30520 -1 -1 13 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.6 MiB 0.08 2094 36315 10889 23051 2375 63.6 MiB 0.21 0.01 2.92575 -240.987 -2.92575 2.92575 0.68 0.00119458 0.00112296 0.073826 0.069397 48 3917 29 6.99608e+06 191304 865456. 2994.66 2.94 0.32935 0.297819 28354 207349 -1 3565 17 1465 1465 231203 51048 1.80403 1.80403 -226.084 -1.80403 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0403266 0.0364437 97 2 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 2.80 vpr 61.11 MiB -1 -1 0.14 17236 1 0.05 -1 -1 31992 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62580 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.5 MiB 0.01 84 103 37 64 2 61.1 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 0.67 6.5695e-05 5.8611e-05 0.000742546 0.000666545 18 138 7 6.79088e+06 13472 376052. 1301.22 0.43 0.00318722 0.00285925 22222 88205 -1 139 7 36 36 3554 874 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00233223 0.0021294 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.85 vpr 61.00 MiB -1 -1 0.15 17268 2 0.05 -1 -1 32092 -1 -1 1 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62468 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 22.4 MiB 0.01 35 357 92 226 39 61.0 MiB 0.01 0.00 0.883748 -9.933 -0.883748 0.883748 0.68 8.4734e-05 7.6497e-05 0.00196888 0.00178132 18 144 17 6.79088e+06 13472 376052. 1301.22 0.45 0.00665622 0.00588373 22222 88205 -1 110 7 44 44 1714 684 0.883748 0.883748 -10.7206 -0.883748 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00263552 0.00238471 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.15 vpr 61.11 MiB -1 -1 0.15 17188 2 0.05 -1 -1 31992 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62572 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.5 MiB 0.01 56 369 83 271 15 61.1 MiB 0.01 0.00 1.02368 -13.1464 -1.02368 1.02368 0.67 0.000104014 9.4812e-05 0.00189463 0.00172822 30 193 10 6.79088e+06 26944 556674. 1926.21 0.65 0.0134574 0.0112841 24526 138013 -1 152 7 57 63 2733 866 1.02368 1.02368 -13.6271 -1.02368 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00305668 0.00274947 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 2.91 vpr 61.02 MiB -1 -1 0.10 17192 3 0.05 -1 -1 31792 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62488 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.4 MiB 0.01 84 562 132 416 14 61.0 MiB 0.01 0.00 1.14898 -15.8855 -1.14898 1.14898 0.67 0.000124296 0.000113845 0.00272442 0.00249969 22 271 8 6.79088e+06 26944 443629. 1535.05 0.53 0.0157781 0.0133199 22798 101617 -1 217 9 88 92 4745 1508 1.05944 1.05944 -16.9561 -1.05944 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.0036879 0.00326724 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 4.48 vpr 61.07 MiB -1 -1 0.15 17232 3 0.05 -1 -1 31864 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.4 MiB 0.01 105 1609 647 944 18 61.1 MiB 0.02 0.00 1.18818 -19.2647 -1.18818 1.18818 0.67 0.000142352 0.000130597 0.00684084 0.00628587 30 250 15 6.79088e+06 26944 556674. 1926.21 1.99 0.047319 0.0395125 24526 138013 -1 190 7 100 110 4759 1654 1.13784 1.13784 -18.8555 -1.13784 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00369383 0.00329045 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.52 vpr 61.31 MiB -1 -1 0.15 17224 3 0.05 -1 -1 31932 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62784 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.9 MiB 0.08 180 1246 468 656 122 61.3 MiB 0.01 0.00 1.56413 -24.3613 -1.56413 1.56413 0.67 0.000172411 0.000158785 0.00569691 0.00526618 30 428 17 6.79088e+06 26944 556674. 1926.21 1.99 0.0479332 0.0397559 24526 138013 -1 371 8 143 180 9396 2451 1.31353 1.31353 -24.1605 -1.31353 0 0 706193. 2443.58 0.19 0.01 0.13 -1 -1 0.19 0.00455928 0.0040393 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.80 vpr 61.19 MiB -1 -1 0.16 17096 4 0.06 -1 -1 31940 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62660 19 10 60 70 1 47 31 17 17 289 -1 unnamed_device 22.7 MiB 0.07 125 1183 237 903 43 61.2 MiB 0.01 0.00 1.43883 -25.2844 -1.43883 1.43883 0.67 0.000182863 0.000168735 0.00508335 0.00468617 26 422 10 6.79088e+06 26944 503264. 1741.40 1.28 0.0436852 0.0363998 23662 119890 -1 385 8 159 169 9032 2746 1.38849 1.38849 -27.4637 -1.38849 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00465726 0.00411883 16 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.73 vpr 61.26 MiB -1 -1 0.16 17116 4 0.06 -1 -1 31656 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62732 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.8 MiB 0.10 146 2315 597 1240 478 61.3 MiB 0.02 0.00 1.81478 -30.6537 -1.81478 1.81478 0.67 0.000233285 0.000212021 0.00979652 0.00898605 30 577 23 6.79088e+06 40416 556674. 1926.21 2.10 0.067969 0.0567212 24526 138013 -1 424 15 287 352 13181 4459 1.80359 1.80359 -32.3094 -1.80359 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00749291 0.0064867 20 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.30 vpr 61.33 MiB -1 -1 0.16 17216 5 0.06 -1 -1 31980 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 22.8 MiB 0.09 193 1550 321 1191 38 61.3 MiB 0.02 0.00 1.86512 -34.3431 -1.86512 1.86512 0.70 0.000225159 0.000208312 0.00631286 0.00584168 26 629 24 6.79088e+06 40416 503264. 1741.40 0.66 0.0348279 0.0296583 23662 119890 -1 529 12 278 322 16645 5124 1.63914 1.63914 -36.9746 -1.63914 0 0 618332. 2139.56 0.18 0.02 0.11 -1 -1 0.18 0.00687658 0.00602414 22 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.38 vpr 61.41 MiB -1 -1 0.17 17316 5 0.06 -1 -1 31972 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62880 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 22.8 MiB 0.14 391 2351 591 1461 299 61.4 MiB 0.02 0.00 1.86512 -43.6064 -1.86512 1.86512 0.67 0.000239733 0.000221592 0.00887868 0.00822825 30 769 18 6.79088e+06 40416 556674. 1926.21 0.69 0.0368013 0.0316589 24526 138013 -1 699 9 221 270 16069 3867 1.63914 1.63914 -42.5992 -1.63914 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00626565 0.00555905 23 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 4.36 vpr 61.74 MiB -1 -1 0.16 17500 5 0.06 -1 -1 31864 -1 -1 5 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 27 14 91 105 1 72 46 17 17 289 -1 unnamed_device 23.2 MiB 0.25 357 5294 1465 2962 867 61.7 MiB 0.05 0.00 2.15497 -46.2823 -2.15497 2.15497 0.67 0.000360865 0.000333566 0.0266747 0.0247208 30 821 13 6.79088e+06 67360 556674. 1926.21 1.51 0.0843095 0.0727651 24526 138013 -1 699 10 243 302 17846 4568 1.89323 1.89323 -44.8083 -1.89323 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.0072577 0.00639563 28 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 3.52 vpr 61.38 MiB -1 -1 0.18 17272 6 0.06 -1 -1 32108 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62852 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.9 MiB 0.21 360 2310 483 1816 11 61.4 MiB 0.02 0.00 2.44482 -48.4646 -2.44482 2.44482 0.67 0.000280721 0.000260207 0.00834682 0.00774917 28 954 41 6.79088e+06 53888 531479. 1839.03 0.81 0.0450354 0.038363 23950 126010 -1 836 14 342 390 33121 7878 2.15502 2.15502 -51.5387 -2.15502 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.00959984 0.00839508 27 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 3.90 vpr 61.50 MiB -1 -1 0.17 17532 6 0.06 -1 -1 32088 -1 -1 4 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62976 31 16 104 120 1 80 51 17 17 289 -1 unnamed_device 22.9 MiB 0.19 344 5785 2509 2987 289 61.5 MiB 0.04 0.00 2.28032 -52.1136 -2.28032 2.28032 0.67 0.0003118 0.000289312 0.0202131 0.0187579 32 928 19 6.79088e+06 53888 586450. 2029.24 1.05 0.064077 0.0554577 24814 144142 -1 708 11 314 391 26325 7062 2.10469 2.10469 -51.4167 -2.10469 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00859488 0.00753021 30 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 4.41 vpr 61.61 MiB -1 -1 0.16 17376 7 0.06 -1 -1 31964 -1 -1 5 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63084 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 23.0 MiB 0.56 588 6295 2131 3069 1095 61.6 MiB 0.04 0.00 2.86773 -66.1506 -2.86773 2.86773 0.67 0.000328014 0.000304251 0.020987 0.0194988 32 1316 39 6.79088e+06 67360 586450. 2029.24 1.18 0.0760223 0.0653166 24814 144142 -1 1100 15 369 491 48901 10354 2.74243 2.74243 -67.6659 -2.74243 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.0110843 0.00962143 31 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 5.10 vpr 61.61 MiB -1 -1 0.18 17560 7 0.06 -1 -1 31932 -1 -1 6 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63092 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 23.0 MiB 0.81 464 4820 996 3804 20 61.6 MiB 0.04 0.00 3.16102 -73.9362 -3.16102 3.16102 0.67 0.00036881 0.00034252 0.0156651 0.0145648 30 1094 21 6.79088e+06 80832 556674. 1926.21 1.62 0.0958325 0.0820414 24526 138013 -1 930 12 343 419 31667 7571 2.82088 2.82088 -72.5283 -2.82088 0 0 706193. 2443.58 0.24 0.03 0.12 -1 -1 0.24 0.0106908 0.00940112 38 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 5.50 vpr 61.51 MiB -1 -1 0.19 17548 8 0.06 -1 -1 31928 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62984 41 21 139 160 1 108 68 17 17 289 -1 unnamed_device 22.8 MiB 0.35 505 7106 1657 5163 286 61.5 MiB 0.05 0.00 2.83873 -77.6199 -2.83873 2.83873 0.67 0.000402572 0.000373912 0.0218416 0.020279 34 1266 21 6.79088e+06 80832 618332. 2139.56 2.45 0.134165 0.115261 25102 150614 -1 1117 11 431 551 40310 9787 2.77049 2.77049 -77.9628 -2.77049 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.0108635 0.00960992 41 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.59 vpr 61.65 MiB -1 -1 0.18 17292 9 0.07 -1 -1 32180 -1 -1 6 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63128 45 23 153 176 1 120 74 17 17 289 -1 unnamed_device 23.0 MiB 0.72 590 6894 2871 4005 18 61.6 MiB 0.05 0.00 3.23598 -92.3007 -3.23598 3.23598 0.67 0.000432902 0.000401397 0.020668 0.0191906 34 1351 20 6.79088e+06 80832 618332. 2139.56 1.19 0.105048 0.0910545 25102 150614 -1 1122 12 451 530 31995 8248 3.02115 3.02115 -88.8232 -3.02115 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.0124109 0.010985 44 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 4.68 vpr 61.69 MiB -1 -1 0.18 17416 10 0.09 -1 -1 32012 -1 -1 8 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 23.2 MiB 0.67 780 4888 1012 3715 161 61.7 MiB 0.04 0.00 3.56504 -106.707 -3.56504 3.56504 0.67 0.000474061 0.000440964 0.0143932 0.0133954 34 1630 20 6.79088e+06 107776 618332. 2139.56 1.33 0.108445 0.0937976 25102 150614 -1 1427 17 511 602 48474 10960 3.311 3.311 -105.632 -3.311 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0167352 0.0147215 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 4.78 vpr 62.07 MiB -1 -1 0.20 17392 11 0.09 -1 -1 32196 -1 -1 9 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63556 57 29 198 227 1 155 95 17 17 289 -1 unnamed_device 23.6 MiB 0.70 615 10463 2656 6907 900 62.1 MiB 0.06 0.00 4.24968 -125.714 -4.24968 4.24968 0.67 0.000571579 0.000532061 0.0293594 0.0273517 34 1590 48 6.79088e+06 121248 618332. 2139.56 1.34 0.163461 0.14228 25102 150614 -1 1284 13 514 639 38670 10280 4.07404 4.07404 -123.729 -4.07404 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0165509 0.0145999 57 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 6.51 vpr 62.35 MiB -1 -1 0.21 17704 13 0.08 -1 -1 32276 -1 -1 10 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 65 33 224 257 1 176 108 17 17 289 -1 unnamed_device 23.8 MiB 1.18 1039 17327 5389 9753 2185 62.4 MiB 0.10 0.00 5.03658 -164.476 -5.03658 5.03658 0.67 0.000644856 0.000600659 0.0451421 0.0420494 34 2111 21 6.79088e+06 134720 618332. 2139.56 2.53 0.212154 0.18596 25102 150614 -1 1951 17 658 812 57443 13536 4.69644 4.69644 -161.975 -4.69644 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0223091 0.0196989 64 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.57 vpr 63.11 MiB -1 -1 0.14 18000 19 0.10 -1 -1 32348 -1 -1 13 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 24.0 MiB 2.23 1448 34989 14739 20194 56 63.1 MiB 0.18 0.00 7.67179 -314.547 -7.67179 7.67179 0.69 0.000980222 0.000914632 0.0829087 0.0773761 34 3339 25 6.79088e+06 175136 618332. 2139.56 1.37 0.232321 0.20888 25102 150614 -1 2818 17 986 1334 105250 24236 7.17059 7.17059 -305.484 -7.17059 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0344741 0.0308882 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.23 vpr 63.65 MiB -1 -1 0.29 18292 26 0.11 -1 -1 32492 -1 -1 18 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 129 65 453 518 1 352 212 17 17 289 -1 unnamed_device 24.6 MiB 2.77 1945 46275 14597 28490 3188 63.6 MiB 0.23 0.00 10.4214 -508.403 -10.4214 10.4214 0.67 0.00132456 0.00123988 0.101507 0.0949667 34 4511 24 6.79088e+06 242496 618332. 2139.56 5.15 0.551898 0.49538 25102 150614 -1 3827 14 1334 1727 133903 30875 9.77697 9.77697 -492.577 -9.77697 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0410984 0.037241 128 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.40 vpr 61.37 MiB -1 -1 0.15 17156 1 0.02 -1 -1 29960 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62840 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.7 MiB 0.02 36 129 59 68 2 61.4 MiB 0.00 0.00 0.709292 -7.43033 -0.709292 0.709292 0.68 7.155e-05 6.41e-05 0.00095092 0.000850677 12 91 4 6.87369e+06 13973.8 243793. 843.575 1.10 0.00738412 0.006208 21730 64085 -1 77 5 27 27 1111 377 0.856592 0.856592 -7.35361 -0.856592 0 0 332735. 1151.33 0.09 0.01 0.07 -1 -1 0.09 0.00212666 0.00195141 8 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.91 vpr 61.55 MiB -1 -1 0.15 17248 1 0.02 -1 -1 29988 -1 -1 2 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63024 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.8 MiB 0.03 43 336 105 225 6 61.5 MiB 0.01 0.00 0.789073 -10.0094 -0.789073 0.789073 0.68 8.7679e-05 7.9436e-05 0.00175469 0.0015854 20 136 14 6.87369e+06 27947.7 414966. 1435.87 1.50 0.0114568 0.00958632 23170 95770 -1 113 8 55 55 2097 728 0.856592 0.856592 -10.2958 -0.856592 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00279377 0.00250365 10 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.05 vpr 61.51 MiB -1 -1 0.14 17312 1 0.02 -1 -1 29868 -1 -1 3 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62988 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.9 MiB 0.04 117 938 246 627 65 61.5 MiB 0.01 0.00 0.959892 -14.2224 -0.959892 0.959892 0.68 0.000107948 9.6931e-05 0.00413019 0.0037464 26 272 8 6.87369e+06 41921.5 503264. 1741.40 0.59 0.0153276 0.0130105 24322 120374 -1 258 8 93 93 6319 1814 0.959892 0.959892 -15.8531 -0.959892 0 0 618332. 2139.56 0.21 0.01 0.09 -1 -1 0.21 0.00308312 0.00274983 13 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 3.14 vpr 61.36 MiB -1 -1 0.16 17080 1 0.02 -1 -1 29956 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62836 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.7 MiB 0.04 80 1015 253 581 181 61.4 MiB 0.01 0.00 0.833073 -15.3829 -0.833073 0.833073 0.72 0.000121427 0.000111267 0.00425289 0.00389515 28 315 25 6.87369e+06 41921.5 531479. 1839.03 0.66 0.0202449 0.0170146 24610 126494 -1 255 21 272 272 14672 4719 1.19797 1.19797 -17.7235 -1.19797 0 0 648988. 2245.63 0.18 0.02 0.11 -1 -1 0.18 0.00582061 0.0049659 15 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.19 vpr 61.51 MiB -1 -1 0.14 17300 1 0.02 -1 -1 30024 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62984 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.7 MiB 0.06 111 1850 765 1045 40 61.5 MiB 0.02 0.00 1.2044 -18.3056 -1.2044 1.2044 0.74 0.000140138 0.000128592 0.00736814 0.00677776 26 273 8 6.87369e+06 41921.5 503264. 1741.40 0.62 0.0222446 0.0191421 24322 120374 -1 267 14 193 193 10664 3465 1.11467 1.11467 -21.0262 -1.11467 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00494673 0.00428534 17 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.16 vpr 61.75 MiB -1 -1 0.14 17172 1 0.02 -1 -1 30160 -1 -1 3 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.0 MiB 0.05 120 2097 820 1095 182 61.8 MiB 0.03 0.00 1.2154 -21.3928 -1.2154 1.2154 0.68 0.000518909 0.000478182 0.00954671 0.00879961 26 327 26 6.87369e+06 41921.5 503264. 1741.40 0.64 0.0303643 0.0260452 24322 120374 -1 256 12 175 175 7585 2676 0.967373 0.967373 -21.4146 -0.967373 0 0 618332. 2139.56 0.18 0.01 0.11 -1 -1 0.18 0.00498944 0.00434628 18 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.73 vpr 61.50 MiB -1 -1 0.14 17296 1 0.02 -1 -1 30152 -1 -1 3 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62980 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 23.0 MiB 0.05 132 2382 895 1227 260 61.5 MiB 0.02 0.00 1.2264 -24.3424 -1.2264 1.2264 0.70 0.000174753 0.000161295 0.00887127 0.0081888 32 342 16 6.87369e+06 41921.5 586450. 2029.24 2.17 0.0430115 0.0362157 25474 144626 -1 277 13 188 188 9045 2956 0.853073 0.853073 -22.6611 -0.853073 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00566905 0.00491758 20 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.26 vpr 61.68 MiB -1 -1 0.14 17264 1 0.02 -1 -1 30132 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63164 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.2 MiB 0.05 144 2600 927 1051 622 61.7 MiB 0.02 0.00 1.2374 -27.1393 -1.2374 1.2374 0.67 0.000192908 0.000178394 0.00935846 0.00864369 32 427 14 6.87369e+06 41921.5 586450. 2029.24 0.70 0.0306836 0.0263424 25474 144626 -1 349 12 217 217 15210 4129 1.10367 1.10367 -28.5107 -1.10367 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00588194 0.0050958 22 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.34 vpr 61.50 MiB -1 -1 0.15 17156 1 0.02 -1 -1 29944 -1 -1 4 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62980 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.8 MiB 0.05 161 3207 1185 1655 367 61.5 MiB 0.03 0.00 1.2484 -30.0181 -1.2484 1.2484 0.68 0.000210612 0.000194916 0.0108948 0.0100922 32 481 13 6.87369e+06 55895.4 586450. 2029.24 0.71 0.0335314 0.0289439 25474 144626 -1 413 15 256 256 21497 5433 1.12567 1.12567 -31.5994 -1.12567 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00724864 0.00624799 24 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 4.10 vpr 61.75 MiB -1 -1 0.15 17184 1 0.03 -1 -1 30000 -1 -1 4 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63228 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.0 MiB 0.05 185 3066 1189 1684 193 61.7 MiB 0.03 0.00 1.2594 -33.1885 -1.2594 1.2594 0.68 0.00022404 0.000207062 0.00999871 0.00920824 30 615 17 6.87369e+06 55895.4 556674. 1926.21 1.55 0.0570123 0.0480452 25186 138497 -1 513 22 448 448 34211 8399 1.17597 1.17597 -34.3039 -1.17597 0 0 706193. 2443.58 0.20 0.03 0.12 -1 -1 0.20 0.00990806 0.00845199 26 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.65 vpr 61.70 MiB -1 -1 0.09 17236 1 0.02 -1 -1 29992 -1 -1 4 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63176 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.9 MiB 0.05 213 3965 1588 2336 41 61.7 MiB 0.03 0.00 1.2704 -36.288 -1.2704 1.2704 0.68 0.000237431 0.000219543 0.0125415 0.0115936 34 721 25 6.87369e+06 55895.4 618332. 2139.56 1.10 0.0609137 0.0518256 25762 151098 -1 589 20 464 464 40651 10612 1.19797 1.19797 -38.5769 -1.19797 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.0098341 0.00843389 28 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 5.04 vpr 61.62 MiB -1 -1 0.17 17636 1 0.02 -1 -1 29960 -1 -1 5 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63104 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 23.2 MiB 0.07 237 4232 1719 2454 59 61.6 MiB 0.03 0.00 1.2814 -39.5262 -1.2814 1.2814 0.69 0.00025177 0.000232586 0.0125905 0.0116432 34 871 25 6.87369e+06 69869.2 618332. 2139.56 2.40 0.079398 0.0672669 25762 151098 -1 667 19 530 530 42842 11447 1.19797 1.19797 -41.7719 -1.19797 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00987761 0.00848143 31 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 4.14 vpr 61.68 MiB -1 -1 0.15 17472 1 0.02 -1 -1 30296 -1 -1 5 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.2 MiB 0.13 290 5096 2068 2936 92 61.7 MiB 0.04 0.00 1.65273 -43.1089 -1.65273 1.65273 0.68 0.000270835 0.000250663 0.0151058 0.0139874 30 651 17 6.87369e+06 69869.2 556674. 1926.21 1.61 0.0753013 0.06438 25186 138497 -1 555 14 349 349 20738 5613 1.18967 1.18967 -42.4244 -1.18967 0 0 706193. 2443.58 0.19 0.02 0.08 -1 -1 0.19 0.00848612 0.00736887 33 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.31 vpr 61.83 MiB -1 -1 0.15 17556 1 0.02 -1 -1 30004 -1 -1 5 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.3 MiB 0.08 305 6087 2501 3496 90 61.8 MiB 0.04 0.00 1.66373 -46.473 -1.66373 1.66373 0.68 0.000289384 0.000268076 0.017735 0.016463 30 704 16 6.87369e+06 69869.2 556674. 1926.21 0.71 0.049865 0.0434789 25186 138497 -1 594 15 396 396 26462 7106 1.10837 1.10837 -44.7628 -1.10837 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.00946652 0.00819901 34 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 4.32 vpr 61.81 MiB -1 -1 0.16 17376 1 0.03 -1 -1 30088 -1 -1 5 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.2 MiB 0.07 338 5821 2339 3395 87 61.8 MiB 0.04 0.00 1.68573 -53.1446 -1.68573 1.68573 0.67 0.000331983 0.00030891 0.0168326 0.0156666 30 889 19 6.87369e+06 69869.2 556674. 1926.21 1.73 0.0876477 0.0749122 25186 138497 -1 717 13 426 426 32408 8353 1.25567 1.25567 -53.9391 -1.25567 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.00950495 0.00826691 38 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.83 vpr 61.99 MiB -1 -1 0.16 17440 1 0.02 -1 -1 30316 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.4 MiB 0.07 382 7382 2999 4271 112 62.0 MiB 0.05 0.00 1.70773 -60.515 -1.70773 1.70773 0.68 0.00036779 0.00034229 0.0202702 0.0188494 34 1055 16 6.87369e+06 83843 618332. 2139.56 1.15 0.0872034 0.0751779 25762 151098 -1 880 13 543 543 61364 17119 1.24467 1.24467 -58.6078 -1.24467 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0103488 0.00905556 42 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.02 vpr 62.00 MiB -1 -1 0.17 17468 1 0.02 -1 -1 30320 -1 -1 7 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 23.4 MiB 0.11 444 8449 3437 4860 152 62.0 MiB 0.05 0.00 1.72973 -67.7337 -1.72973 1.72973 0.68 0.000392695 0.000364823 0.0219802 0.0204547 34 1370 26 6.87369e+06 97816.9 618332. 2139.56 1.30 0.0832593 0.0724742 25762 151098 -1 1015 13 608 608 51492 13168 1.28867 1.28867 -65.2983 -1.28867 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0111065 0.00972696 47 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.01 vpr 62.07 MiB -1 -1 0.17 17528 1 0.02 -1 -1 30404 -1 -1 7 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.5 MiB 0.09 605 10056 2373 7370 313 62.1 MiB 0.07 0.00 2.11206 -78.5497 -2.11206 2.11206 0.67 0.000422072 0.000392985 0.0255691 0.0238238 34 1389 20 6.87369e+06 97816.9 618332. 2139.56 1.18 0.106841 0.0930413 25762 151098 -1 1234 14 660 660 60348 14534 1.34797 1.34797 -75.6162 -1.34797 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0125046 0.010949 50 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.05 vpr 62.18 MiB -1 -1 0.15 17476 1 0.02 -1 -1 29948 -1 -1 8 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.6 MiB 0.09 728 10957 2389 8188 380 62.2 MiB 0.07 0.00 2.15606 -94.7378 -2.15606 2.15606 0.68 0.000487876 0.000454841 0.0263095 0.0245419 34 1647 17 6.87369e+06 111791 618332. 2139.56 1.24 0.114196 0.100013 25762 151098 -1 1490 15 722 722 68358 15964 1.40297 1.40297 -91.1627 -1.40297 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0151007 0.0132963 58 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.19 vpr 62.34 MiB -1 -1 0.16 17500 1 0.03 -1 -1 29988 -1 -1 9 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.6 MiB 0.09 980 16046 5179 9796 1071 62.3 MiB 0.10 0.00 2.56039 -112.877 -2.56039 2.56039 0.69 0.000564608 0.000527347 0.0374872 0.0350016 34 2030 21 6.87369e+06 125765 618332. 2139.56 1.34 0.147487 0.12985 25762 151098 -1 1789 14 795 795 84552 18473 1.56397 1.56397 -108.864 -1.56397 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.016502 0.0145659 66 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.53 vpr 62.94 MiB -1 -1 0.20 17760 1 0.03 -1 -1 30208 -1 -1 13 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.0 MiB 0.11 1359 29399 8657 18746 1996 62.9 MiB 0.19 0.00 3.45705 -190.622 -3.45705 3.45705 0.68 0.00087045 0.000815363 0.0641279 0.0600066 34 3218 25 6.87369e+06 181660 618332. 2139.56 1.50 0.197697 0.178077 25762 151098 -1 2654 15 1106 1106 106227 24679 1.75797 1.75797 -169.209 -1.75797 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0258674 0.0231158 98 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 7.05 vpr 63.44 MiB -1 -1 0.21 18004 1 0.03 -1 -1 30592 -1 -1 17 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1993 46609 15041 27382 4186 63.4 MiB 0.26 0.01 4.35372 -288.791 -4.35372 4.35372 0.68 0.00119389 0.00112361 0.0919029 0.0864594 36 4415 26 6.87369e+06 237555 648988. 2245.63 3.76 0.420444 0.379351 26050 158493 -1 3728 19 1637 1637 172818 38660 1.87067 1.87067 -227.723 -1.87067 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0432552 0.0389188 130 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.37 vpr 61.37 MiB -1 -1 0.15 17216 1 0.02 -1 -1 30008 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62840 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.7 MiB 0.02 36 129 59 68 2 61.4 MiB 0.00 0.00 0.709292 -7.33773 -0.709292 0.709292 0.68 7.0651e-05 6.3386e-05 0.000914234 0.00082097 12 91 4 6.89349e+06 14093.8 243793. 843.575 1.09 0.00713649 0.00600679 21730 64085 -1 77 5 27 27 1111 377 0.856592 0.856592 -7.26102 -0.856592 0 0 332735. 1151.33 0.10 0.01 0.07 -1 -1 0.10 0.00213833 0.00196626 8 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 3.85 vpr 61.40 MiB -1 -1 0.15 17076 1 0.02 -1 -1 29916 -1 -1 2 9 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62872 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.7 MiB 0.03 45 356 107 237 12 61.4 MiB 0.01 0.00 0.789073 -10.0295 -0.789073 0.789073 0.68 8.8051e-05 7.9597e-05 0.00183557 0.00166161 22 154 18 6.89349e+06 28187.7 443629. 1535.05 1.42 0.0176875 0.014543 23458 102101 -1 114 18 98 98 3924 1491 0.90532 0.90532 -9.87556 -0.90532 0 0 531479. 1839.03 0.17 0.03 0.09 -1 -1 0.17 0.0086586 0.00725806 10 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 4.24 vpr 61.38 MiB -1 -1 0.07 17232 1 0.02 -1 -1 30060 -1 -1 3 11 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62856 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.7 MiB 0.03 62 641 164 455 22 61.4 MiB 0.01 0.00 0.817273 -12.6839 -0.817273 0.817273 0.67 0.00010533 9.6259e-05 0.00282302 0.0025714 26 209 13 6.89349e+06 42281.5 503264. 1741.40 1.82 0.0298085 0.0244578 24322 120374 -1 199 9 87 87 5417 1739 0.942573 0.942573 -14.086 -0.942573 0 0 618332. 2139.56 0.22 0.01 0.12 -1 -1 0.22 0.00325929 0.00289589 13 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.10 vpr 61.35 MiB -1 -1 0.15 17092 1 0.02 -1 -1 29960 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62820 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.6 MiB 0.04 80 1015 241 576 198 61.3 MiB 0.01 0.00 0.833073 -15.3861 -0.833073 0.833073 0.67 0.000121884 0.000111712 0.00424574 0.00389074 28 312 20 6.89349e+06 42281.5 531479. 1839.03 0.64 0.0193223 0.0163021 24610 126494 -1 244 25 292 292 17449 5462 1.08367 1.08367 -16.6538 -1.08367 0 0 648988. 2245.63 0.18 0.02 0.11 -1 -1 0.18 0.00657205 0.00555051 15 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.73 vpr 61.24 MiB -1 -1 0.11 17240 1 0.02 -1 -1 30064 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62712 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.6 MiB 0.06 110 1850 727 959 164 61.2 MiB 0.02 0.00 1.2044 -18.413 -1.2044 1.2044 0.68 0.000134194 0.00012004 0.00718063 0.0065967 26 295 32 6.89349e+06 42281.5 503264. 1741.40 1.29 0.0431683 0.0358815 24322 120374 -1 218 12 161 161 7484 2547 0.956373 0.956373 -18.2239 -0.956373 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00457467 0.00398854 17 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 4.58 vpr 61.50 MiB -1 -1 0.15 17304 1 0.02 -1 -1 30032 -1 -1 3 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.8 MiB 0.04 120 2097 836 1147 114 61.5 MiB 0.02 0.00 1.2154 -21.3749 -1.2154 1.2154 0.68 0.000157577 0.0001451 0.00794598 0.00731835 32 320 18 6.89349e+06 42281.5 586450. 2029.24 2.03 0.0483007 0.0402159 25474 144626 -1 237 18 158 158 8304 2719 0.96932 0.96932 -20.6745 -0.96932 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00639046 0.00545052 18 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.15 vpr 61.38 MiB -1 -1 0.15 17144 1 0.02 -1 -1 30004 -1 -1 3 19 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62852 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.6 MiB 0.04 132 2432 921 1234 277 61.4 MiB 0.02 0.00 1.2264 -24.2382 -1.2264 1.2264 0.70 0.00017559 0.000161937 0.00903211 0.00833549 26 385 13 6.89349e+06 42281.5 503264. 1741.40 0.61 0.028358 0.0243091 24322 120374 -1 326 13 188 188 11131 3367 1.12567 1.12567 -26.3034 -1.12567 0 0 618332. 2139.56 0.17 0.02 0.11 -1 -1 0.17 0.00566447 0.00489787 20 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 4.69 vpr 61.70 MiB -1 -1 0.16 17240 1 0.02 -1 -1 30076 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.3 MiB 0.07 144 2657 904 1108 645 61.7 MiB 0.02 0.00 1.2374 -27.0223 -1.2374 1.2374 0.68 0.000193191 0.000178582 0.00958407 0.0088574 32 414 15 6.89349e+06 42281.5 586450. 2029.24 2.12 0.0593495 0.0495628 25474 144626 -1 365 13 200 200 17605 4541 1.14767 1.14767 -29.691 -1.14767 0 0 744469. 2576.02 0.20 0.02 0.13 -1 -1 0.20 0.00609421 0.00526856 22 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 4.62 vpr 61.57 MiB -1 -1 0.14 17292 1 0.02 -1 -1 30000 -1 -1 4 23 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63048 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.9 MiB 0.05 161 3207 1169 1568 470 61.6 MiB 0.02 0.00 1.2484 -30.0849 -1.2484 1.2484 0.70 0.000208728 0.000192972 0.0107645 0.00995636 30 508 23 6.89349e+06 56375.4 556674. 1926.21 2.09 0.0559501 0.0471621 25186 138497 -1 412 16 276 276 21287 5430 1.14287 1.14287 -30.9185 -1.14287 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00749804 0.0064525 24 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.31 vpr 61.73 MiB -1 -1 0.15 17184 1 0.02 -1 -1 30012 -1 -1 4 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63208 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.1 MiB 0.05 194 3066 1220 1817 29 61.7 MiB 0.02 0.00 1.2594 -33.4928 -1.2594 1.2594 0.71 0.000227703 0.000210777 0.0101504 0.00939565 28 566 20 6.89349e+06 56375.4 531479. 1839.03 1.75 0.0702117 0.0590204 24610 126494 -1 508 14 334 334 23293 6293 1.16062 1.16062 -34.8765 -1.16062 0 0 648988. 2245.63 0.18 0.02 0.11 -1 -1 0.18 0.00717823 0.0062033 26 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 5.06 vpr 61.51 MiB -1 -1 0.13 17228 1 0.02 -1 -1 30056 -1 -1 4 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62988 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.05 212 3965 1580 2332 53 61.5 MiB 0.03 0.00 1.2704 -36.2189 -1.2704 1.2704 0.68 0.000237244 0.000219204 0.0124599 0.0115117 36 666 21 6.89349e+06 56375.4 648988. 2245.63 2.45 0.0794831 0.0670493 26050 158493 -1 565 17 407 407 30578 8238 1.18067 1.18067 -37.9109 -1.18067 0 0 828058. 2865.25 0.22 0.03 0.14 -1 -1 0.22 0.00861616 0.00741841 28 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 4.56 vpr 61.76 MiB -1 -1 0.10 17164 1 0.02 -1 -1 29940 -1 -1 5 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63240 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 23.0 MiB 0.06 267 4232 1438 1805 989 61.8 MiB 0.03 0.00 1.2814 -39.3367 -1.2814 1.2814 0.68 0.00025057 0.000231901 0.0125591 0.0116212 32 800 16 6.89349e+06 70469.2 586450. 2029.24 1.95 0.0747419 0.0634269 25474 144626 -1 696 20 474 474 53826 12663 1.07887 1.07887 -41.1685 -1.07887 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.0102231 0.00876635 31 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 4.92 vpr 61.71 MiB -1 -1 0.16 17184 1 0.02 -1 -1 30348 -1 -1 5 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63196 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.2 MiB 0.08 290 5096 2068 2923 105 61.7 MiB 0.04 0.00 1.65273 -43.2743 -1.65273 1.65273 0.68 0.00026946 0.000249594 0.0148796 0.0137875 32 810 23 6.89349e+06 70469.2 586450. 2029.24 2.27 0.0753431 0.0641536 25474 144626 -1 607 17 388 388 32529 8494 1.21167 1.21167 -43.3168 -1.21167 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.00970255 0.00836801 33 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 4.21 vpr 61.70 MiB -1 -1 0.13 17256 1 0.03 -1 -1 30048 -1 -1 5 33 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63176 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.2 MiB 0.09 305 6087 2495 3491 101 61.7 MiB 0.04 0.00 1.66373 -47.069 -1.66373 1.66373 0.68 0.000290045 0.000268814 0.0179511 0.0166518 30 713 21 6.89349e+06 70469.2 556674. 1926.21 1.48 0.0734606 0.0630285 25186 138497 -1 602 13 392 392 27294 7261 1.21167 1.21167 -46.7 -1.21167 0 0 706193. 2443.58 0.22 0.03 0.16 -1 -1 0.22 0.00853679 0.00742914 34 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 5.08 vpr 61.67 MiB -1 -1 0.13 17480 1 0.02 -1 -1 30160 -1 -1 5 37 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63148 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.2 MiB 0.07 342 5821 2357 3387 77 61.7 MiB 0.04 0.00 1.68573 -54.1107 -1.68573 1.68573 0.68 0.000328562 0.000305394 0.0168304 0.0156577 34 894 16 6.89349e+06 70469.2 618332. 2139.56 2.38 0.0827565 0.0708403 25762 151098 -1 786 12 419 419 34308 8532 1.35897 1.35897 -55.4515 -1.35897 0 0 787024. 2723.27 0.23 0.03 0.13 -1 -1 0.23 0.00896989 0.0078058 38 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.98 vpr 61.75 MiB -1 -1 0.15 17444 1 0.02 -1 -1 30440 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63236 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.1 MiB 0.07 382 7382 2994 4283 105 61.8 MiB 0.05 0.00 1.70773 -60.6787 -1.70773 1.70773 0.67 0.000356003 0.000330603 0.0200354 0.018613 34 1137 29 6.89349e+06 84563 618332. 2139.56 1.25 0.0941227 0.0810155 25762 151098 -1 896 14 497 497 49470 12006 1.27767 1.27767 -59.8203 -1.27767 0 0 787024. 2723.27 0.21 0.03 0.14 -1 -1 0.21 0.0133111 0.0116975 42 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 6.02 vpr 61.94 MiB -1 -1 0.14 17312 1 0.02 -1 -1 30336 -1 -1 7 45 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63424 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 23.3 MiB 0.09 440 8449 3423 4877 149 61.9 MiB 0.05 0.00 1.72973 -67.5802 -1.72973 1.72973 0.68 0.000388278 0.000360736 0.0217766 0.0202537 40 1047 17 6.89349e+06 98656.9 706193. 2443.58 3.27 0.145235 0.124592 26914 176310 -1 971 14 537 537 52525 12929 1.44227 1.44227 -66.651 -1.44227 0 0 926341. 3205.33 0.24 0.04 0.16 -1 -1 0.24 0.0115703 0.0100724 47 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.08 vpr 62.10 MiB -1 -1 0.17 17524 1 0.02 -1 -1 30324 -1 -1 7 49 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.5 MiB 0.08 602 10056 2329 7462 265 62.1 MiB 0.06 0.00 2.11206 -78.5198 -2.11206 2.11206 0.68 0.000430072 0.000400231 0.0253041 0.0235722 34 1406 36 6.89349e+06 98656.9 618332. 2139.56 1.35 0.116771 0.10141 25762 151098 -1 1216 11 566 566 50636 12121 1.24467 1.24467 -73.5762 -1.24467 0 0 787024. 2723.27 0.21 0.03 0.14 -1 -1 0.21 0.0105211 0.00924665 50 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 3.99 vpr 61.96 MiB -1 -1 0.16 17572 1 0.02 -1 -1 30100 -1 -1 8 57 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.4 MiB 0.08 735 7975 1707 6009 259 62.0 MiB 0.06 0.00 2.15606 -94.8271 -2.15606 2.15606 0.68 0.000487556 0.000454494 0.0194204 0.0181076 34 1652 13 6.89349e+06 112751 618332. 2139.56 1.22 0.107832 0.0941081 25762 151098 -1 1422 12 657 657 62311 14519 1.26667 1.26667 -86.3714 -1.26667 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0132587 0.0116877 58 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 4.10 vpr 62.23 MiB -1 -1 0.18 17400 1 0.02 -1 -1 30160 -1 -1 9 65 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.5 MiB 0.08 978 16046 4505 10523 1018 62.2 MiB 0.10 0.00 2.56039 -115.373 -2.56039 2.56039 0.68 0.000566344 0.000527588 0.0374318 0.0349269 34 2012 20 6.89349e+06 126845 618332. 2139.56 1.24 0.146585 0.129049 25762 151098 -1 1824 15 739 739 76313 16556 1.42297 1.42297 -105.171 -1.42297 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0176832 0.0156096 66 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.48 vpr 63.08 MiB -1 -1 0.15 17628 1 0.03 -1 -1 30272 -1 -1 13 97 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1365 29399 8841 18664 1894 63.1 MiB 0.17 0.00 3.45705 -190.368 -3.45705 3.45705 0.67 0.000863648 0.000809352 0.0613637 0.0575136 34 3239 21 6.89349e+06 183220 618332. 2139.56 1.49 0.233748 0.209831 25762 151098 -1 2600 12 1016 1016 99325 23153 1.77997 1.77997 -168.573 -1.77997 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.021962 0.0197184 98 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 6.89 vpr 63.66 MiB -1 -1 0.20 18036 1 0.04 -1 -1 30528 -1 -1 17 129 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1975 46609 14694 27844 4071 63.7 MiB 0.26 0.01 4.35372 -287.807 -4.35372 4.35372 0.68 0.00121008 0.00113985 0.0921106 0.0866821 36 4420 32 6.89349e+06 239595 648988. 2245.63 3.65 0.429033 0.387492 26050 158493 -1 3675 14 1471 1471 153704 34188 1.98497 1.98497 -234.187 -1.98497 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0341292 0.030824 130 2 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt index 6762ea6e2d5..99ab1e50cc5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 14.99 vpr 63.93 MiB -1 -1 0.81 21584 14 0.83 -1 -1 37040 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 25.3 MiB 1.14 1316 5599 1118 4072 409 63.9 MiB 0.07 0.00 8.11929 -167.236 -8.11929 8.11929 2.04 0.000250645 0.0002076 0.00930375 0.00788038 36 3168 18 6.55708e+06 325485 612192. 2118.31 4.32 0.254613 0.243725 22750 144809 -1 2907 16 1166 3648 221231 48915 6.88996 6.88996 -156.901 -6.88996 0 0 782063. 2706.10 0.43 0.06 0.14 -1 -1 0.43 0.0252893 0.0199655 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 16.05 vpr 64.01 MiB -1 -1 0.59 22040 14 1.39 -1 -1 36700 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1284 6813 1396 4664 753 64.0 MiB 0.15 0.00 8.17826 -159.503 -8.17826 8.17826 2.14 0.000229998 0.000188138 0.0116499 0.00989239 28 3899 33 6.55708e+06 373705 500653. 1732.36 4.58 0.206682 0.198006 21310 115450 -1 3202 29 1492 4434 488528 184977 7.05196 7.05196 -154.725 -7.05196 0 0 612192. 2118.31 0.28 0.13 0.10 -1 -1 0.28 0.0244321 0.0218532 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 16.93 vpr 64.02 MiB -1 -1 0.54 21432 11 0.75 -1 -1 36740 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1318 12150 2688 7851 1611 64.0 MiB 0.15 0.00 7.09041 -141.994 -7.09041 7.09041 2.99 0.00021919 0.000176129 0.0170755 0.0142001 36 3257 49 6.55708e+06 313430 612192. 2118.31 5.15 0.161418 0.14644 22750 144809 -1 2763 18 1188 4033 209919 48995 6.21958 6.21958 -137.181 -6.21958 0 0 782063. 2706.10 0.43 0.07 0.17 -1 -1 0.43 0.0171308 0.015608 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 17.37 vpr 63.94 MiB -1 -1 0.53 21584 12 1.11 -1 -1 36740 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 25.3 MiB 2.06 1291 8659 1933 5978 748 63.9 MiB 0.15 0.00 7.59163 -142.516 -7.59163 7.59163 2.61 0.000237955 0.000194649 0.0135612 0.0113422 34 3427 47 6.55708e+06 361650 585099. 2024.56 4.21 0.141263 0.117775 22462 138074 -1 2944 20 1447 4783 267879 64966 6.45858 6.45858 -135.37 -6.45858 0 0 742403. 2568.87 0.44 0.10 0.14 -1 -1 0.44 0.0354681 0.0336491 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 16.06 vpr 64.21 MiB -1 -1 0.63 21736 13 0.91 -1 -1 36588 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1517 10247 2681 6332 1234 64.2 MiB 0.17 0.00 7.78538 -167.201 -7.78538 7.78538 2.41 0.000280345 0.0002255 0.121306 0.0142674 30 3963 42 6.55708e+06 373705 526063. 1820.29 4.45 0.176265 0.0622064 21886 126133 -1 3369 18 1586 4655 233556 54083 6.7183 6.7183 -159.433 -6.7183 0 0 666494. 2306.21 0.60 0.10 0.13 -1 -1 0.60 0.0196487 0.0179784 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 23.37 vpr 64.00 MiB -1 -1 0.85 21432 13 1.02 -1 -1 36540 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 25.3 MiB 0.92 1424 8199 1838 5705 656 64.0 MiB 0.19 0.00 7.59163 -154.292 -7.59163 7.59163 2.57 0.000298971 0.000253415 0.125279 0.12332 30 3692 44 6.55708e+06 385760 526063. 1820.29 12.37 0.530437 0.509033 21886 126133 -1 2951 17 1311 4081 200727 47055 6.4805 6.4805 -147.355 -6.4805 0 0 666494. 2306.21 0.25 0.05 0.08 -1 -1 0.25 0.0152681 0.0137409 198 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 15.87 vpr 63.65 MiB -1 -1 0.70 21432 12 1.08 -1 -1 36220 -1 -1 27 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1035 6512 1527 4332 653 63.6 MiB 0.14 0.00 7.17186 -130.596 -7.17186 7.17186 2.48 9.2588e-05 7.3799e-05 0.0053792 0.00449752 28 2878 33 6.55708e+06 325485 500653. 1732.36 4.45 0.0773257 0.0708081 21310 115450 -1 2508 16 1094 2903 172289 39877 6.43104 6.43104 -125.532 -6.43104 0 0 612192. 2118.31 0.72 0.08 0.26 -1 -1 0.72 0.0128645 0.0117338 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 19.05 vpr 63.57 MiB -1 -1 0.61 21584 12 0.65 -1 -1 36356 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65096 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1249 5107 1019 3661 427 63.6 MiB 0.09 0.00 6.39885 -135.828 -6.39885 6.39885 2.22 0.000195832 0.00015921 0.00763114 0.00638149 36 2917 29 6.55708e+06 265210 612192. 2118.31 9.17 0.46378 0.454104 22750 144809 -1 2534 14 1014 3099 164622 37748 5.56006 5.56006 -128.182 -5.56006 0 0 782063. 2706.10 0.65 0.07 0.18 -1 -1 0.65 0.0374872 0.03645 140 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 16.23 vpr 63.67 MiB -1 -1 0.72 21280 12 0.46 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 0.94 1208 12167 3615 7245 1307 63.7 MiB 0.21 0.00 6.4388 -137.229 -6.4388 6.4388 2.57 0.000220228 0.000181404 0.168754 0.166189 28 3215 28 6.55708e+06 313430 500653. 1732.36 4.92 0.380326 0.373049 21310 115450 -1 2672 18 1117 2854 165121 38557 5.75926 5.75926 -133.58 -5.75926 0 0 612192. 2118.31 0.91 0.14 0.23 -1 -1 0.91 0.0143963 0.0131338 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 17.42 vpr 63.75 MiB -1 -1 0.69 21432 13 0.63 -1 -1 36588 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 1.05 1179 13949 3758 7924 2267 63.8 MiB 0.25 0.00 7.37832 -161.437 -7.37832 7.37832 2.38 9.599e-05 7.6318e-05 0.119345 0.116725 28 3430 36 6.55708e+06 301375 500653. 1732.36 4.74 0.293365 0.285342 21310 115450 -1 2902 18 1151 3063 181567 42392 6.49978 6.49978 -160.111 -6.49978 0 0 612192. 2118.31 0.68 0.11 0.16 -1 -1 0.68 0.0152348 0.0138431 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 16.24 vpr 63.22 MiB -1 -1 0.59 21432 12 0.52 -1 -1 36400 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 24.9 MiB 0.81 981 5378 1128 4037 213 63.2 MiB 0.21 0.00 7.10558 -136.499 -7.10558 7.10558 2.45 0.000172321 0.000139139 0.181602 0.180431 28 2857 37 6.55708e+06 289320 500653. 1732.36 4.93 0.400055 0.3933 21310 115450 -1 2456 20 1059 3011 230424 69009 6.18298 6.18298 -135.053 -6.18298 0 0 612192. 2118.31 0.71 0.06 0.08 -1 -1 0.71 0.0108761 0.0096872 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 15.76 vpr 63.22 MiB -1 -1 0.79 21584 12 0.40 -1 -1 36532 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 24.9 MiB 0.88 1197 6890 1537 4796 557 63.2 MiB 0.07 0.00 6.77748 -151.802 -6.77748 6.77748 2.62 0.000185316 0.000149828 0.041666 0.0399195 28 3023 34 6.55708e+06 265210 500653. 1732.36 4.20 0.0762246 0.0698229 21310 115450 -1 2655 25 1046 2873 228066 76603 6.12952 6.12952 -149.175 -6.12952 0 0 612192. 2118.31 0.98 0.18 0.28 -1 -1 0.98 0.0227078 0.0210598 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 17.87 vpr 63.82 MiB -1 -1 0.51 21584 13 1.06 -1 -1 36496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1356 7123 1389 5311 423 63.8 MiB 0.07 0.00 8.23449 -171.323 -8.23449 8.23449 2.35 0.000243511 0.000198708 0.0359604 0.0342467 28 3890 40 6.55708e+06 361650 500653. 1732.36 5.65 0.205475 0.196524 21310 115450 -1 3255 17 1399 4014 246791 56259 6.96836 6.96836 -162.616 -6.96836 0 0 612192. 2118.31 0.84 0.22 0.12 -1 -1 0.84 0.0189513 0.0172631 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 29.78 vpr 64.23 MiB -1 -1 0.62 21888 14 1.04 -1 -1 36524 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1483 9892 2515 6721 656 64.2 MiB 0.32 0.00 8.67238 -180.492 -8.67238 8.67238 2.33 0.000277293 0.000230932 0.132532 0.0125186 28 4160 43 6.55708e+06 361650 500653. 1732.36 18.60 0.399221 0.261397 21310 115450 -1 3424 19 1558 4418 249183 58613 7.71769 7.71769 -175.116 -7.71769 0 0 612192. 2118.31 0.27 0.06 0.08 -1 -1 0.27 0.0193934 0.0176474 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 17.84 vpr 63.53 MiB -1 -1 0.42 21280 11 0.77 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1052 8473 2221 5229 1023 63.5 MiB 0.24 0.00 6.75495 -130.804 -6.75495 6.75495 2.09 0.000186347 0.000143367 0.0568755 0.054588 26 3163 38 6.55708e+06 325485 477104. 1650.88 7.03 0.196024 0.090564 21022 109990 -1 2641 18 1106 3044 195220 44709 5.89878 5.89878 -129.109 -5.89878 0 0 585099. 2024.56 0.83 0.14 0.30 -1 -1 0.83 0.142459 0.141024 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 24.43 vpr 64.20 MiB -1 -1 0.75 22040 12 0.90 -1 -1 36384 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 25.5 MiB 1.42 1418 15859 4433 8623 2803 64.2 MiB 0.19 0.00 7.2388 -152.411 -7.2388 7.2388 2.44 0.000246247 0.000201596 0.0224514 0.0186579 38 3937 42 6.55708e+06 397815 638502. 2209.35 11.61 0.490081 0.47489 23326 155178 -1 3172 19 1543 5081 250926 58666 6.31284 6.31284 -144.952 -6.31284 0 0 851065. 2944.86 0.84 0.15 0.22 -1 -1 0.84 0.061565 0.0599219 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 14.97 vpr 63.89 MiB -1 -1 0.59 21736 14 0.65 -1 -1 36480 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 25.2 MiB 1.00 1479 5553 1093 3977 483 63.9 MiB 0.05 0.00 7.46703 -157.396 -7.46703 7.46703 2.16 0.000215532 0.000174512 0.00882704 0.0074498 30 3622 19 6.55708e+06 349595 526063. 1820.29 3.64 0.0545283 0.0418286 21886 126133 -1 3092 20 1468 4351 216807 50395 6.51004 6.51004 -150.243 -6.51004 0 0 666494. 2306.21 0.80 0.15 0.48 -1 -1 0.80 0.0171737 0.0155255 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 14.91 vpr 63.70 MiB -1 -1 0.51 21280 12 0.63 -1 -1 36152 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 24.9 MiB 1.04 1106 10647 2481 6612 1554 63.7 MiB 0.12 0.00 7.21601 -163.068 -7.21601 7.21601 2.54 0.000187149 0.000150026 0.0132073 0.0108813 30 2675 16 6.55708e+06 277265 526063. 1820.29 2.51 0.271777 0.26609 21886 126133 -1 2211 14 913 2619 128595 30382 6.0827 6.0827 -149.905 -6.0827 0 0 666494. 2306.21 0.86 0.09 0.46 -1 -1 0.86 0.0708267 0.0698649 140 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 13.04 vpr 63.02 MiB -1 -1 0.31 21128 10 0.42 -1 -1 36008 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64532 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 24.4 MiB 0.51 832 5390 1191 3544 655 63.0 MiB 0.17 0.00 5.518 -123.291 -5.518 5.518 2.63 0.000152041 0.000120499 0.00890047 0.00777637 26 2051 19 6.55708e+06 192880 477104. 1650.88 2.88 0.109942 0.0347068 21022 109990 -1 1867 14 674 1612 92831 22529 4.88266 4.88266 -120.898 -4.88266 0 0 585099. 2024.56 0.73 0.06 0.29 -1 -1 0.73 0.0398073 0.038899 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 14.37 vpr 63.63 MiB -1 -1 0.59 21432 13 0.45 -1 -1 36228 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1110 11991 2880 6757 2354 63.6 MiB 0.09 0.00 6.78754 -145.779 -6.78754 6.78754 2.18 0.000196194 0.000160243 0.0160642 0.0133819 30 2893 20 6.55708e+06 289320 526063. 1820.29 2.61 0.275191 0.26788 21886 126133 -1 2396 23 1175 3120 155208 36586 6.34238 6.34238 -146.063 -6.34238 0 0 666494. 2306.21 0.86 0.33 0.20 -1 -1 0.86 0.224556 0.222885 144 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 17.87 vpr 64.18 MiB -1 -1 0.80 21736 13 0.98 -1 -1 37016 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1342 7223 1422 5428 373 64.2 MiB 0.16 0.00 8.47343 -161.189 -8.47343 8.47343 2.81 0.000250521 0.000205034 0.128684 0.126853 28 3766 23 6.55708e+06 373705 500653. 1732.36 4.48 0.405878 0.398506 21310 115450 -1 3211 18 1501 4368 238128 57322 7.45116 7.45116 -159.426 -7.45116 0 0 612192. 2118.31 0.85 0.06 0.26 -1 -1 0.85 0.0183187 0.0167523 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 20.39 vpr 64.12 MiB -1 -1 0.63 21888 13 1.14 -1 -1 36612 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1497 6415 1520 4239 656 64.1 MiB 0.07 0.00 7.98903 -167.855 -7.98903 7.98903 2.04 0.000323605 0.000262002 0.0112534 0.00944675 40 3422 18 6.55708e+06 325485 666494. 2306.21 7.61 0.198638 0.165212 23614 160646 -1 3409 19 1476 4945 367187 102218 6.7993 6.7993 -155.211 -6.7993 0 0 872365. 3018.56 0.99 0.35 0.29 -1 -1 0.99 0.156283 0.154534 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 14.77 vpr 62.78 MiB -1 -1 0.49 20824 9 0.54 -1 -1 36212 -1 -1 24 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64284 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 24.2 MiB 0.79 608 5066 1233 3547 286 62.8 MiB 0.02 0.00 4.88957 -92.6709 -4.88957 4.88957 2.35 0.000133007 9.854e-05 0.00499856 0.00407266 26 1805 25 6.55708e+06 289320 477104. 1650.88 3.97 0.0276024 0.0233125 21022 109990 -1 1575 17 648 1573 109617 25292 4.37994 4.37994 -93.4687 -4.37994 0 0 585099. 2024.56 0.70 0.27 0.47 -1 -1 0.70 0.00860853 0.00762772 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 16.99 vpr 63.90 MiB -1 -1 0.72 21736 13 0.87 -1 -1 36664 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 25.3 MiB 0.90 1399 12365 2949 7626 1790 63.9 MiB 0.16 0.00 7.71183 -153.087 -7.71183 7.71183 2.32 0.000240156 0.000189192 0.0726536 0.0692838 30 3944 35 6.55708e+06 301375 526063. 1820.29 5.68 0.122996 0.112997 21886 126133 -1 3008 16 1345 4034 208784 46996 6.6837 6.6837 -146.667 -6.6837 0 0 666494. 2306.21 0.67 0.21 0.25 -1 -1 0.67 0.0656513 0.0642845 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 15.13 vpr 62.72 MiB -1 -1 0.42 20976 8 0.55 -1 -1 36284 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64228 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 24.3 MiB 0.38 748 11432 3918 5733 1781 62.7 MiB 0.14 0.00 4.04251 -94.2802 -4.04251 4.04251 2.74 5.5568e-05 4.227e-05 0.00616164 0.00489562 26 1864 42 6.55708e+06 192880 477104. 1650.88 3.68 0.184232 0.178598 21022 109990 -1 1673 21 698 1622 148867 52760 3.61128 3.61128 -96.2364 -3.61128 0 0 585099. 2024.56 0.84 0.17 0.29 -1 -1 0.84 0.00892278 0.00792332 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 20.32 vpr 63.86 MiB -1 -1 0.41 21432 15 0.78 -1 -1 36360 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 25.2 MiB 1.11 1245 4853 801 3926 126 63.9 MiB 0.21 0.00 8.34392 -162.215 -8.34392 8.34392 2.94 0.000228798 0.000182974 0.00810016 0.00680192 36 3046 29 6.55708e+06 337540 612192. 2118.31 8.11 0.292767 0.191697 22750 144809 -1 2703 17 1198 3396 181585 42343 7.3199 7.3199 -156.187 -7.3199 0 0 782063. 2706.10 0.80 0.26 0.22 -1 -1 0.80 0.143782 0.142284 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 18.30 vpr 63.91 MiB -1 -1 0.47 21736 13 0.83 -1 -1 36524 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 25.2 MiB 1.06 1269 7326 1600 4999 727 63.9 MiB 0.12 0.00 6.99575 -156.984 -6.99575 6.99575 2.56 0.000272806 0.000225815 0.0536456 0.0516748 38 2907 28 6.55708e+06 313430 638502. 2209.35 5.81 0.438504 0.360134 23326 155178 -1 2573 15 1095 3179 157613 36582 6.05878 6.05878 -145.261 -6.05878 0 0 851065. 2944.86 1.10 0.39 0.42 -1 -1 1.10 0.0152471 0.0136767 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 17.94 vpr 64.05 MiB -1 -1 0.59 21736 13 0.92 -1 -1 36404 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 25.3 MiB 0.97 1254 7023 1455 4777 791 64.1 MiB 0.12 0.00 7.90752 -158.46 -7.90752 7.90752 2.44 0.00024355 0.000200794 0.0840947 0.0823705 28 3963 35 6.55708e+06 349595 500653. 1732.36 5.47 0.278187 0.270082 21310 115450 -1 3108 24 1793 5650 321202 75149 6.97296 6.97296 -156.634 -6.97296 0 0 612192. 2118.31 0.90 0.16 0.27 -1 -1 0.90 0.0206062 0.0184945 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 23.86 vpr 63.64 MiB -1 -1 0.94 21432 12 0.59 -1 -1 36216 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 24.9 MiB 0.86 1268 6039 1228 4546 265 63.6 MiB 0.05 0.00 6.67895 -148.946 -6.67895 6.67895 2.35 0.000190361 0.000155114 0.0240746 0.0226558 34 3542 37 6.55708e+06 277265 585099. 2024.56 12.51 0.114243 0.103952 22462 138074 -1 2861 18 1194 3516 235049 51260 5.84732 5.84732 -144.45 -5.84732 0 0 742403. 2568.87 0.86 0.09 0.44 -1 -1 0.86 0.0146786 0.0133221 147 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 15.82 vpr 63.39 MiB -1 -1 0.46 21280 11 0.52 -1 -1 36216 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64916 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.59 950 9199 2047 6588 564 63.4 MiB 0.30 0.00 6.46258 -131.985 -6.46258 6.46258 2.18 0.000175295 0.000140354 0.236808 0.234731 26 2917 23 6.55708e+06 277265 477104. 1650.88 5.71 0.338338 0.331592 21022 109990 -1 2253 16 947 2456 142297 33659 5.84932 5.84932 -128.893 -5.84932 0 0 585099. 2024.56 0.73 0.08 0.32 -1 -1 0.73 0.00708358 0.00648819 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 17.35 vpr 63.62 MiB -1 -1 0.58 21584 11 0.74 -1 -1 36388 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1027 5548 1148 3763 637 63.6 MiB 0.04 0.00 6.55329 -127.208 -6.55329 6.55329 2.60 0.000191834 0.000156447 0.00804838 0.00670483 24 3402 39 6.55708e+06 337540 448715. 1552.65 4.50 0.0818455 0.0748876 20734 103517 -1 2645 17 1143 3034 196743 45248 6.18298 6.18298 -132.987 -6.18298 0 0 554710. 1919.41 0.50 0.17 0.50 -1 -1 0.50 0.00923821 0.0083866 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 14.71 vpr 63.95 MiB -1 -1 0.77 21280 12 0.95 -1 -1 36912 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 25.2 MiB 0.87 1316 8331 2003 5453 875 64.0 MiB 0.25 0.00 7.36014 -161.452 -7.36014 7.36014 1.87 0.000225881 0.000179942 0.0117248 0.00968874 28 3531 24 6.55708e+06 313430 500653. 1732.36 3.73 0.100884 0.0927577 21310 115450 -1 3128 17 1351 3514 217723 49912 6.51204 6.51204 -165.193 -6.51204 0 0 612192. 2118.31 0.62 0.31 0.18 -1 -1 0.62 0.22437 0.223004 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 16.32 vpr 63.64 MiB -1 -1 0.61 21280 12 0.81 -1 -1 36220 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 24.9 MiB 2.05 1054 7268 1685 4837 746 63.6 MiB 0.11 0.00 7.17381 -146.631 -7.17381 7.17381 2.27 0.000214669 0.000167288 0.0102319 0.00840821 28 2898 38 6.55708e+06 277265 500653. 1732.36 4.27 0.0536111 0.0458587 21310 115450 -1 2411 16 1060 2835 167693 41951 6.1239 6.1239 -140.345 -6.1239 0 0 612192. 2118.31 0.72 0.10 0.15 -1 -1 0.72 0.0917908 0.0911649 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 14.96 vpr 63.23 MiB -1 -1 0.67 21432 10 0.58 -1 -1 36280 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64748 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 24.7 MiB 0.75 1026 7463 1753 4811 899 63.2 MiB 0.08 0.00 5.795 -123.2 -5.795 5.795 2.57 0.000183162 0.000148206 0.0104414 0.00867176 28 2799 27 6.55708e+06 265210 500653. 1732.36 4.49 0.343749 0.337303 21310 115450 -1 2318 15 862 2491 156851 35739 5.15966 5.15966 -121.068 -5.15966 0 0 612192. 2118.31 0.79 0.11 0.17 -1 -1 0.79 0.0102541 0.00927236 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 17.41 vpr 64.05 MiB -1 -1 0.82 22192 13 0.90 -1 -1 36856 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1543 8303 1822 5923 558 64.1 MiB 0.24 0.00 7.75344 -163.706 -7.75344 7.75344 2.25 0.000265666 0.000212728 0.132232 0.130695 30 3739 28 6.55708e+06 373705 526063. 1820.29 5.42 0.498812 0.491204 21886 126133 -1 3152 19 1483 4706 232308 53814 6.7595 6.7595 -157.725 -6.7595 0 0 666494. 2306.21 0.78 0.29 0.28 -1 -1 0.78 0.0205875 0.0187715 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 20.13 vpr 64.11 MiB -1 -1 0.56 22192 14 1.03 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 25.3 MiB 1.50 1334 6095 1239 4218 638 64.1 MiB 0.07 0.00 7.39355 -163.567 -7.39355 7.39355 2.47 0.000234887 0.000189243 0.0104702 0.00869405 36 3537 22 6.55708e+06 337540 612192. 2118.31 6.93 0.25808 0.246451 22750 144809 -1 3005 17 1412 4093 215219 50717 6.65518 6.65518 -154.201 -6.65518 0 0 782063. 2706.10 1.21 0.29 0.23 -1 -1 1.21 0.0526924 0.0510832 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 14.55 vpr 63.66 MiB -1 -1 0.50 21584 12 0.28 -1 -1 36256 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 25.0 MiB 0.59 1163 7958 1799 5552 607 63.7 MiB 0.02 0.00 7.47368 -147.272 -7.47368 7.47368 2.74 9.2641e-05 7.5569e-05 0.00750833 0.00669275 30 2894 20 6.55708e+06 349595 526063. 1820.29 3.31 0.038813 0.0338137 21886 126133 -1 2412 14 945 2660 131405 30625 6.4819 6.4819 -139.307 -6.4819 0 0 666494. 2306.21 0.88 0.15 0.16 -1 -1 0.88 0.0119178 0.0108661 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 15.73 vpr 63.97 MiB -1 -1 0.52 22040 12 0.79 -1 -1 36540 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1468 11922 3374 7097 1451 64.0 MiB 0.15 0.00 7.8013 -160.233 -7.8013 7.8013 2.45 0.000122797 9.9447e-05 0.0095185 0.00773894 30 3747 34 6.55708e+06 397815 526063. 1820.29 3.74 0.064967 0.0565504 21886 126133 -1 3088 18 1392 3987 196092 45720 6.7601 6.7601 -154.181 -6.7601 0 0 666494. 2306.21 0.88 0.22 0.33 -1 -1 0.88 0.0714129 0.0698807 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 16.46 vpr 64.17 MiB -1 -1 0.67 22192 14 1.41 -1 -1 36384 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 25.5 MiB 1.02 1386 14996 4276 8243 2477 64.2 MiB 0.18 0.00 8.29295 -162.632 -8.29295 8.29295 1.99 0.000266032 0.000221603 0.0212762 0.0174012 30 3602 23 6.55708e+06 349595 526063. 1820.29 4.52 0.175185 0.165434 21886 126133 -1 2932 17 1464 4453 204275 49023 7.4421 7.4421 -155.552 -7.4421 0 0 666494. 2306.21 1.05 0.03 0.67 -1 -1 1.05 0.00948041 0.00856926 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 19.06 vpr 63.71 MiB -1 -1 0.83 22040 13 1.12 -1 -1 36368 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 25.2 MiB 1.02 1440 7639 1723 5234 682 63.7 MiB 0.23 0.00 7.87383 -161.518 -7.87383 7.87383 2.54 0.000226965 0.000177067 0.0506055 0.0484879 36 3587 30 6.55708e+06 337540 612192. 2118.31 6.56 0.335546 0.323666 22750 144809 -1 3109 20 1413 4024 228012 52562 6.82884 6.82884 -152.617 -6.82884 0 0 782063. 2706.10 0.73 0.31 0.34 -1 -1 0.73 0.0184968 0.0167916 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 17.21 vpr 63.46 MiB -1 -1 0.76 21584 13 0.62 -1 -1 36512 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64980 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.9 MiB 1.62 1318 11375 3119 6567 1689 63.5 MiB 0.18 0.00 7.15329 -140.404 -7.15329 7.15329 2.07 0.000208219 0.00016891 0.069416 0.0667563 30 3610 35 6.55708e+06 313430 526063. 1820.29 5.92 0.118316 0.108947 21886 126133 -1 2841 17 1212 4040 206173 47346 6.10964 6.10964 -133.356 -6.10964 0 0 666494. 2306.21 0.82 0.14 0.24 -1 -1 0.82 0.016796 0.0154272 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 14.96 vpr 63.80 MiB -1 -1 0.64 21736 12 0.51 -1 -1 36504 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65328 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1298 13348 3331 7818 2199 63.8 MiB 0.38 0.00 7.05352 -145.133 -7.05352 7.05352 2.61 9.3972e-05 7.6073e-05 0.225936 0.223059 30 2991 25 6.55708e+06 289320 526063. 1820.29 3.09 0.278448 0.2707 21886 126133 -1 2438 15 1115 3199 150136 35932 6.21758 6.21758 -138.799 -6.21758 0 0 666494. 2306.21 1.08 0.02 0.43 -1 -1 1.08 0.00859725 0.00797514 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 31.49 vpr 64.26 MiB -1 -1 0.57 22648 14 1.69 -1 -1 37236 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 25.8 MiB 1.84 1672 6791 1273 5168 350 64.3 MiB 0.10 0.00 8.30332 -177.675 -8.30332 8.30332 2.29 0.000257115 0.000209385 0.0605124 0.0586785 36 4717 39 6.55708e+06 373705 612192. 2118.31 17.89 0.150156 0.13635 22750 144809 -1 3779 17 1578 5239 295382 66337 6.80696 6.80696 -165.263 -6.80696 0 0 782063. 2706.10 1.14 0.18 0.49 -1 -1 1.14 0.0681389 0.0664953 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 16.21 vpr 63.78 MiB -1 -1 0.36 21432 11 0.56 -1 -1 36288 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 1.07 1193 12761 3444 7164 2153 63.8 MiB 0.06 0.00 6.7976 -143.12 -6.7976 6.7976 2.55 0.000214399 0.000174452 0.0168284 0.0137851 30 3532 31 6.55708e+06 313430 526063. 1820.29 4.66 0.0530741 0.0450625 21886 126133 -1 2773 16 1151 3356 185089 44645 6.14118 6.14118 -140.277 -6.14118 0 0 666494. 2306.21 1.17 0.24 0.21 -1 -1 1.17 0.218687 0.218009 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 29.73 vpr 64.07 MiB -1 -1 0.67 21584 13 1.18 -1 -1 37116 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 25.3 MiB 1.12 1353 4987 879 3661 447 64.1 MiB 0.20 0.00 8.21906 -157.673 -8.21906 8.21906 2.60 0.000250076 0.000208563 0.00876377 0.00744684 30 3230 17 6.55708e+06 337540 526063. 1820.29 16.21 0.772674 0.759543 21886 126133 -1 2967 17 1184 3879 195213 44958 7.17156 7.17156 -150.888 -7.17156 0 0 666494. 2306.21 1.14 0.19 0.24 -1 -1 1.14 0.0171481 0.0156243 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 34.50 vpr 64.04 MiB -1 -1 0.55 21736 12 0.78 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 25.5 MiB 1.50 1498 9753 2481 6035 1237 64.0 MiB 0.13 0.00 7.14558 -152.066 -7.14558 7.14558 2.43 0.000231845 0.00018863 0.0144424 0.0120127 38 3600 24 6.55708e+06 349595 638502. 2209.35 22.01 0.256602 0.237007 23326 155178 -1 3037 27 1318 4614 456379 202726 6.43304 6.43304 -143.219 -6.43304 0 0 851065. 2944.86 0.97 0.35 0.25 -1 -1 0.97 0.056061 0.0540156 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 19.32 vpr 64.02 MiB -1 -1 0.71 21432 13 0.86 -1 -1 36500 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 25.3 MiB 0.89 1297 6813 1586 4608 619 64.0 MiB 0.09 0.00 7.48135 -156.262 -7.48135 7.48135 2.51 0.000234673 0.000194611 0.0106816 0.00890808 28 3823 45 6.55708e+06 349595 500653. 1732.36 6.71 0.0599986 0.051646 21310 115450 -1 3148 50 2968 10537 948366 364515 6.70864 6.70864 -156.965 -6.70864 0 0 612192. 2118.31 1.16 0.62 0.19 -1 -1 1.16 0.222713 0.219997 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 17.04 vpr 63.94 MiB -1 -1 0.79 21736 13 0.81 -1 -1 36676 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 25.2 MiB 1.09 1336 8733 2203 5909 621 63.9 MiB 0.17 0.00 7.1624 -156.518 -7.1624 7.1624 2.75 0.00023066 0.000188295 0.0131387 0.0109622 30 3329 42 6.55708e+06 313430 526063. 1820.29 4.71 0.202045 0.193331 21886 126133 -1 2751 17 1169 3376 161624 38182 6.13918 6.13918 -146.674 -6.13918 0 0 666494. 2306.21 0.64 0.19 0.37 -1 -1 0.64 0.162788 0.161418 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 24.77 vpr 64.28 MiB -1 -1 1.07 21584 12 0.81 -1 -1 36388 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 25.6 MiB 1.36 1360 10531 2375 7022 1134 64.3 MiB 0.20 0.00 7.39995 -157.446 -7.39995 7.39995 2.36 0.000239352 0.000191892 0.0797961 0.0770977 34 3908 49 6.55708e+06 361650 585099. 2024.56 10.61 0.198538 0.184351 22462 138074 -1 3165 29 1382 4606 460541 182677 6.65918 6.65918 -152.88 -6.65918 0 0 742403. 2568.87 1.20 0.47 0.24 -1 -1 1.20 0.133076 0.130756 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 22.30 vpr 64.08 MiB -1 -1 0.74 22040 13 0.93 -1 -1 37212 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65620 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 25.3 MiB 1.31 1514 8087 1653 5822 612 64.1 MiB 0.27 0.00 7.8424 -163.45 -7.8424 7.8424 2.74 0.000264498 0.000217875 0.0132645 0.0110633 36 3909 42 6.55708e+06 373705 612192. 2118.31 10.15 0.270623 0.246172 22750 144809 -1 3194 16 1545 4822 245446 57058 7.03004 7.03004 -158.179 -7.03004 0 0 782063. 2706.10 0.91 0.06 0.44 -1 -1 0.91 0.0134039 0.0123141 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 19.07 vpr 63.90 MiB -1 -1 0.66 21432 14 1.30 -1 -1 36368 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1270 6328 1321 4213 794 63.9 MiB 0.09 0.00 8.25686 -165.075 -8.25686 8.25686 2.45 0.000215573 0.000167457 0.0102148 0.00840408 36 3201 36 6.55708e+06 289320 612192. 2118.31 6.64 0.163844 0.152244 22750 144809 -1 2629 17 1114 3456 183339 42268 7.17216 7.17216 -154.805 -7.17216 0 0 782063. 2706.10 1.10 0.17 0.38 -1 -1 1.10 0.0150727 0.013776 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 19.31 vpr 64.12 MiB -1 -1 0.68 21584 13 1.02 -1 -1 36948 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65656 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1492 5845 1128 4445 272 64.1 MiB 0.12 0.00 8.14181 -162.894 -8.14181 8.14181 2.88 0.000305495 0.000206887 0.0109095 0.00917872 30 3707 27 6.55708e+06 361650 526063. 1820.29 5.69 0.167922 0.159794 21886 126133 -1 3113 28 1502 4504 339845 128741 6.93376 6.93376 -156.281 -6.93376 0 0 666494. 2306.21 0.88 0.19 0.32 -1 -1 0.88 0.134558 0.132516 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 23.19 vpr 64.18 MiB -1 -1 1.08 22040 13 0.88 -1 -1 36480 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1346 6910 1355 5304 251 64.2 MiB 0.12 0.00 7.86512 -160.397 -7.86512 7.86512 2.22 0.00027271 0.000225967 0.0116621 0.00977571 36 3748 41 6.55708e+06 373705 612192. 2118.31 10.67 0.519042 0.505558 22750 144809 -1 3175 17 1501 4433 254001 59081 6.8411 6.8411 -154.25 -6.8411 0 0 782063. 2706.10 1.17 0.20 0.27 -1 -1 1.17 0.0185331 0.0170229 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 16.21 vpr 64.22 MiB -1 -1 0.67 22192 12 1.31 -1 -1 36540 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 25.5 MiB 0.96 1434 5869 1120 4385 364 64.2 MiB 0.26 0.00 7.65261 -158.289 -7.65261 7.65261 2.82 0.000263311 0.000207925 0.0103096 0.00864459 30 3474 18 6.55708e+06 397815 526063. 1820.29 3.65 0.156344 0.040551 21886 126133 -1 3042 18 1420 3930 177067 43130 6.71064 6.71064 -152.19 -6.71064 0 0 666494. 2306.21 0.72 0.27 0.24 -1 -1 0.72 0.0152312 0.0139051 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 16.28 vpr 63.12 MiB -1 -1 0.70 21432 11 0.49 -1 -1 36216 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 24.7 MiB 0.82 938 4354 809 3198 347 63.1 MiB 0.26 0.00 6.12166 -126.096 -6.12166 6.12166 2.58 0.000171101 0.000136213 0.00610813 0.00510208 26 2897 47 6.55708e+06 216990 477104. 1650.88 5.12 0.248103 0.241724 21022 109990 -1 2246 24 996 2582 215122 70691 5.29012 5.29012 -126.877 -5.29012 0 0 585099. 2024.56 0.84 0.07 0.30 -1 -1 0.84 0.0237992 0.0118264 125 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 16.99 vpr 63.66 MiB -1 -1 0.54 21584 13 0.65 -1 -1 36168 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1244 6913 1456 4785 672 63.7 MiB 0.31 0.00 7.60641 -160.262 -7.60641 7.60641 2.39 0.000259354 0.000220131 0.00774441 0.00638308 30 2996 21 6.55708e+06 289320 526063. 1820.29 3.17 0.0450548 0.0388259 21886 126133 -1 2594 16 1049 3039 145132 34838 6.38724 6.38724 -146.837 -6.38724 0 0 666494. 2306.21 1.29 0.41 0.27 -1 -1 1.29 0.379267 0.337094 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 18.90 vpr 64.51 MiB -1 -1 0.91 22040 14 1.68 -1 -1 36812 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 25.8 MiB 1.02 1644 9865 2502 6499 864 64.5 MiB 0.17 0.00 8.53135 -177.728 -8.53135 8.53135 2.66 0.000277105 0.000229784 0.121284 0.118597 30 4291 29 6.55708e+06 397815 526063. 1820.29 6.73 0.418134 0.408261 21886 126133 -1 3602 17 1729 5456 262006 60865 7.3591 7.3591 -165.422 -7.3591 0 0 666494. 2306.21 0.96 0.24 0.19 -1 -1 0.96 0.0203461 0.0186193 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 20.65 vpr 64.07 MiB -1 -1 0.69 22040 13 1.12 -1 -1 36524 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 25.3 MiB 1.23 1387 8863 2093 6011 759 64.1 MiB 0.16 0.00 7.926 -171.401 -7.926 7.926 2.23 0.000224463 0.000185258 0.0770665 0.0107625 36 3165 17 6.55708e+06 325485 612192. 2118.31 8.13 0.418835 0.343493 22750 144809 -1 2855 15 1125 3293 180680 41408 6.9587 6.9587 -159.721 -6.9587 0 0 782063. 2706.10 1.00 0.21 0.48 -1 -1 1.00 0.0159113 0.014596 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 23.65 vpr 63.25 MiB -1 -1 0.61 21432 11 0.98 -1 -1 36708 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.57 1027 8641 2218 5647 776 63.2 MiB 0.08 0.00 6.67134 -137.606 -6.67134 6.67134 2.52 0.000185245 0.000151747 0.0487789 0.0468227 30 2408 35 6.55708e+06 277265 526063. 1820.29 12.15 0.462091 0.211644 21886 126133 -1 2006 16 836 2500 120266 28573 5.92772 5.92772 -132.802 -5.92772 0 0 666494. 2306.21 0.73 0.06 0.37 -1 -1 0.73 0.039015 0.0379287 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 22.35 vpr 63.96 MiB -1 -1 0.62 22496 15 2.30 -1 -1 36816 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 25.9 MiB 0.83 1739 8198 1861 5696 641 64.0 MiB 0.08 0.00 9.48099 -183.773 -9.48099 9.48099 2.27 0.000393793 0.000326572 0.0152582 0.0129286 30 4842 45 6.55708e+06 409870 526063. 1820.29 9.12 0.0878706 0.0762725 21886 126133 -1 3846 19 2218 7365 378356 84596 8.21781 8.21781 -174.493 -8.21781 0 0 666494. 2306.21 0.69 0.23 0.10 -1 -1 0.69 0.04138 0.039349 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 19.59 vpr 63.97 MiB -1 -1 0.64 21888 13 0.97 -1 -1 36348 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1439 6509 1332 4682 495 64.0 MiB 0.08 0.00 8.18652 -164.372 -8.18652 8.18652 2.34 0.000239808 0.000197306 0.0110964 0.00935483 28 3956 45 6.55708e+06 337540 500653. 1732.36 8.19 0.210958 0.201628 21310 115450 -1 3396 19 1656 5038 310374 70106 7.4441 7.4441 -166.884 -7.4441 0 0 612192. 2118.31 0.67 0.25 0.30 -1 -1 0.67 0.24297 0.242014 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 14.49 vpr 63.32 MiB -1 -1 0.77 21128 11 0.50 -1 -1 36244 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64840 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 24.7 MiB 0.97 1055 6512 1402 4966 144 63.3 MiB 0.17 0.00 6.21838 -133.407 -6.21838 6.21838 2.46 0.000180908 0.000144444 0.121739 0.12007 28 3026 28 6.55708e+06 265210 500653. 1732.36 3.42 0.281054 0.274966 21310 115450 -1 2445 16 1058 2966 177272 41624 5.68992 5.68992 -134.582 -5.68992 0 0 612192. 2118.31 0.73 0.11 0.35 -1 -1 0.73 0.0124398 0.0113336 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 19.76 vpr 64.24 MiB -1 -1 0.71 21736 12 1.04 -1 -1 36320 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1408 8188 1789 5868 531 64.2 MiB 0.16 0.00 7.58418 -153.318 -7.58418 7.58418 2.65 0.000273585 0.000227731 0.014541 0.0122114 30 3802 49 6.55708e+06 361650 526063. 1820.29 6.02 0.0697067 0.0596566 21886 126133 -1 3014 16 1306 4296 205583 47349 6.8823 6.8823 -149.116 -6.8823 0 0 666494. 2306.21 1.01 0.11 0.27 -1 -1 1.01 0.0180854 0.0166347 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 30.15 vpr 63.76 MiB -1 -1 0.49 21432 12 0.58 -1 -1 36228 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 0.99 1181 8733 2191 5537 1005 63.8 MiB 0.10 0.00 7.34198 -153.7 -7.34198 7.34198 2.27 0.000284073 0.000245447 0.0134034 0.0108118 28 3451 25 6.55708e+06 313430 500653. 1732.36 18.65 0.1461 0.131578 21310 115450 -1 2819 17 1129 3314 185185 43189 6.47284 6.47284 -151.063 -6.47284 0 0 612192. 2118.31 0.74 0.24 0.29 -1 -1 0.74 0.171431 0.17017 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 16.90 vpr 63.52 MiB -1 -1 0.58 21584 12 0.70 -1 -1 36352 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 24.7 MiB 0.52 977 10163 2498 5973 1692 63.5 MiB 0.12 0.00 7.03389 -140.137 -7.03389 7.03389 2.89 0.000180603 0.00014552 0.0821045 0.0110786 26 2674 45 6.55708e+06 253155 477104. 1650.88 5.31 0.33595 0.144389 21022 109990 -1 2235 19 900 2564 151191 35379 6.23184 6.23184 -136.811 -6.23184 0 0 585099. 2024.56 1.27 0.14 0.29 -1 -1 1.27 0.0141995 0.0129324 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 15.57 vpr 64.05 MiB -1 -1 0.70 21736 12 1.03 -1 -1 36356 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1286 8165 1985 5620 560 64.0 MiB 0.19 0.00 6.66378 -127.805 -6.66378 6.66378 2.21 0.000265504 0.000223022 0.157749 0.114161 30 3497 38 6.55708e+06 373705 526063. 1820.29 4.02 0.206106 0.155828 21886 126133 -1 2685 18 1204 3985 199862 45719 5.82238 5.82238 -124.619 -5.82238 0 0 666494. 2306.21 0.81 0.16 0.37 -1 -1 0.81 0.0498197 0.0483227 191 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 20.60 vpr 64.41 MiB -1 -1 0.67 21736 13 0.86 -1 -1 36380 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 25.6 MiB 1.80 1575 8089 1792 5648 649 64.4 MiB 0.31 0.13 8.199 -173.718 -8.199 8.199 2.81 0.129128 0.129066 0.14304 0.140801 30 4366 46 6.55708e+06 397815 526063. 1820.29 6.44 0.41256 0.402106 21886 126133 -1 3389 25 1746 4854 343466 119381 7.16956 7.16956 -166.873 -7.16956 0 0 666494. 2306.21 0.85 0.25 0.25 -1 -1 0.85 0.125728 0.124294 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 21.88 vpr 63.96 MiB -1 -1 0.66 21736 12 0.61 -1 -1 36516 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 25.3 MiB 1.33 1304 13674 3198 8447 2029 64.0 MiB 0.23 0.00 7.70392 -150.607 -7.70392 7.70392 2.62 0.000287756 0.000243993 0.0156864 0.0131775 36 3558 36 6.55708e+06 385760 612192. 2118.31 10.03 0.140172 0.0835049 22750 144809 -1 2907 21 1684 5666 329352 73961 6.79104 6.79104 -144.906 -6.79104 0 0 782063. 2706.10 0.97 0.18 0.37 -1 -1 0.97 0.0190456 0.0172129 200 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 17.17 vpr 63.38 MiB -1 -1 0.28 21584 12 0.72 -1 -1 36536 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 24.7 MiB 1.82 1050 7587 1832 5326 429 63.4 MiB 0.08 0.00 6.64951 -139.656 -6.64951 6.64951 2.79 0.000174859 0.000141086 0.00982881 0.00812266 28 2914 43 6.55708e+06 241100 500653. 1732.36 5.09 0.0518456 0.0444756 21310 115450 -1 2569 21 989 2719 224458 66094 5.72972 5.72972 -139.691 -5.72972 0 0 612192. 2118.31 0.61 0.45 0.24 -1 -1 0.61 0.405671 0.40421 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 17.94 vpr 63.74 MiB -1 -1 0.74 21432 12 0.86 -1 -1 36188 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 1.21 1153 6039 1205 4356 478 63.7 MiB 0.14 0.00 6.87029 -138.197 -6.87029 6.87029 2.28 0.000202327 0.000164137 0.00945293 0.00786813 28 3361 44 6.55708e+06 289320 500653. 1732.36 6.30 0.154211 0.146761 21310 115450 -1 2772 17 1156 3559 199622 46561 6.42138 6.42138 -144.612 -6.42138 0 0 612192. 2118.31 0.72 0.11 0.13 -1 -1 0.72 0.0136977 0.012436 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 19.58 vpr 63.81 MiB -1 -1 0.74 21280 11 0.73 -1 -1 36512 -1 -1 30 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1269 13340 3337 7820 2183 63.8 MiB 0.20 0.00 6.87709 -132.09 -6.87709 6.87709 2.44 0.000243462 0.000198361 0.0204075 0.0170615 36 3124 36 6.55708e+06 361650 612192. 2118.31 7.91 0.381597 0.163625 22750 144809 -1 2680 15 1122 3678 200840 45836 6.15344 6.15344 -128.496 -6.15344 0 0 782063. 2706.10 1.16 0.19 0.28 -1 -1 1.16 0.162084 0.014053 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 18.52 vpr 63.81 MiB -1 -1 0.59 21432 11 0.46 -1 -1 36348 -1 -1 27 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.2 MiB 0.65 1130 7959 1993 5244 722 63.8 MiB 0.13 0.00 6.52095 -121.312 -6.52095 6.52095 2.30 0.000215182 0.000169722 0.0966236 0.0946183 28 3267 50 6.55708e+06 325485 500653. 1732.36 7.89 0.302792 0.133017 21310 115450 -1 2607 21 1291 4624 265920 59926 6.02298 6.02298 -121.386 -6.02298 0 0 612192. 2118.31 0.70 0.25 0.21 -1 -1 0.70 0.094331 0.0927083 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 27.39 vpr 63.68 MiB -1 -1 0.81 21584 13 0.61 -1 -1 36484 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.84 1062 5655 1187 4180 288 63.7 MiB 0.22 0.00 7.51524 -139.468 -7.51524 7.51524 2.18 9.3136e-05 7.5513e-05 0.00720594 0.00606239 30 2774 25 6.55708e+06 301375 526063. 1820.29 16.46 0.20291 0.175792 21886 126133 -1 2453 31 1002 3188 344719 155581 6.43104 6.43104 -133.612 -6.43104 0 0 666494. 2306.21 0.90 0.26 0.21 -1 -1 0.90 0.0172822 0.0153141 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 17.61 vpr 63.89 MiB -1 -1 0.57 21584 12 0.66 -1 -1 36704 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 25.2 MiB 0.71 1223 6923 1491 4662 770 63.9 MiB 0.08 0.00 7.37241 -157.796 -7.37241 7.37241 2.53 0.000235551 0.000191972 0.0108155 0.00907941 28 3438 19 6.55708e+06 337540 500653. 1732.36 6.57 0.0505002 0.0437114 21310 115450 -1 2927 15 1236 3365 193788 45715 6.4427 6.4427 -155.406 -6.4427 0 0 612192. 2118.31 0.62 0.15 0.40 -1 -1 0.62 0.0215211 0.0203 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 19.66 vpr 64.04 MiB -1 -1 0.80 21584 13 1.13 -1 -1 36712 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1253 5919 1160 4308 451 64.0 MiB 0.02 0.00 8.10858 -155.032 -8.10858 8.10858 2.93 9.9363e-05 8.0103e-05 0.00460606 0.00385389 28 3477 40 6.55708e+06 325485 500653. 1732.36 6.03 0.275341 0.155675 21310 115450 -1 2926 18 1294 3788 266712 71814 7.24996 7.24996 -156.034 -7.24996 0 0 612192. 2118.31 0.85 0.14 0.14 -1 -1 0.85 0.0173078 0.0157634 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 14.49 vpr 63.93 MiB -1 -1 0.84 21888 14 0.79 -1 -1 36636 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 25.3 MiB 0.99 1284 10442 2916 6424 1102 63.9 MiB 0.17 0.00 8.2513 -166.21 -8.2513 8.2513 2.53 0.000114041 9.1017e-05 0.0138308 0.0115221 28 3487 25 6.55708e+06 337540 500653. 1732.36 3.67 0.0549611 0.0471063 21310 115450 -1 3128 21 1567 4269 260536 59014 7.4395 7.4395 -165.331 -7.4395 0 0 612192. 2118.31 0.69 0.32 0.23 -1 -1 0.69 0.013333 0.0120216 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 39.21 vpr 63.95 MiB -1 -1 0.75 22192 14 1.00 -1 -1 36832 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1345 13751 3514 7977 2260 64.0 MiB 0.19 0.00 7.89392 -157.269 -7.89392 7.89392 2.69 0.000218832 0.00017508 0.136029 0.132626 28 3938 44 6.55708e+06 301375 500653. 1732.36 25.85 0.240042 0.220753 21310 115450 -1 3166 45 2401 8589 1037444 427254 7.26844 7.26844 -156.544 -7.26844 0 0 612192. 2118.31 0.71 0.82 0.20 -1 -1 0.71 0.164016 0.160598 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 16.66 vpr 64.11 MiB -1 -1 0.60 21888 13 1.34 -1 -1 36260 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1380 7443 1649 5147 647 64.1 MiB 0.20 0.00 8.01781 -156.923 -8.01781 8.01781 2.19 0.000253427 0.000209441 0.0128526 0.0108606 30 3412 19 6.55708e+06 349595 526063. 1820.29 3.34 0.0563902 0.0485874 21886 126133 -1 2981 16 1289 4003 190097 45381 6.97036 6.97036 -150.248 -6.97036 0 0 666494. 2306.21 0.88 0.17 0.28 -1 -1 0.88 0.0168691 0.0154788 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 15.50 vpr 63.66 MiB -1 -1 0.44 21432 13 0.71 -1 -1 36264 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 25.2 MiB 1.49 1107 9158 2494 5916 748 63.7 MiB 0.13 0.00 7.35655 -149.828 -7.35655 7.35655 2.75 0.000262176 0.000216583 0.0554604 0.053026 30 2818 21 6.55708e+06 289320 526063. 1820.29 3.38 0.091842 0.0844766 21886 126133 -1 2341 16 962 2571 120557 29483 6.50744 6.50744 -141.672 -6.50744 0 0 666494. 2306.21 0.77 0.06 0.28 -1 -1 0.77 0.155731 0.0121329 147 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 21.33 vpr 64.20 MiB -1 -1 0.64 22040 13 1.46 -1 -1 36388 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 25.6 MiB 1.01 1381 6484 1204 4933 347 64.2 MiB 0.49 0.00 8.19984 -161.023 -8.19984 8.19984 2.13 0.00026095 0.000215637 0.00782817 0.00655675 36 3648 26 6.55708e+06 385760 612192. 2118.31 7.77 0.265722 0.25413 22750 144809 -1 3201 17 1547 4352 233422 54419 7.04936 7.04936 -153.097 -7.04936 0 0 782063. 2706.10 1.00 0.36 0.35 -1 -1 1.00 0.0182814 0.0169265 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 18.70 vpr 64.01 MiB -1 -1 0.70 22040 14 1.32 -1 -1 36532 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 25.3 MiB 1.65 1305 5599 950 4386 263 64.0 MiB 0.14 0.00 8.03849 -165.113 -8.03849 8.03849 2.30 0.000228771 0.000188167 0.106627 0.10508 30 3350 18 6.55708e+06 325485 526063. 1820.29 5.63 0.225627 0.21883 21886 126133 -1 2845 17 1252 4156 204492 47404 6.93176 6.93176 -158.794 -6.93176 0 0 666494. 2306.21 0.93 0.29 0.27 -1 -1 0.93 0.252371 0.250949 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 17.87 vpr 63.89 MiB -1 -1 0.63 22040 13 0.82 -1 -1 36360 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1143 8473 2254 5090 1129 63.9 MiB 0.16 0.00 7.8048 -151.404 -7.8048 7.8048 2.31 0.000313906 0.000265347 0.00642095 0.00525225 36 3221 20 6.55708e+06 301375 612192. 2118.31 7.08 0.0681647 0.059318 22750 144809 -1 2693 17 1231 3664 204139 47159 7.1997 7.1997 -150.348 -7.1997 0 0 782063. 2706.10 0.69 0.20 0.28 -1 -1 0.69 0.0282677 0.0269425 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 20.90 vpr 63.82 MiB -1 -1 0.57 21736 13 0.83 -1 -1 36676 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 25.2 MiB 1.43 1313 4445 808 3252 385 63.8 MiB 0.15 0.00 7.65777 -143.701 -7.65777 7.65777 2.59 0.00020558 0.00016777 0.0081875 0.00688493 28 3663 37 6.55708e+06 325485 500653. 1732.36 8.21 0.234629 0.129027 21310 115450 -1 3035 17 1282 3751 215756 50319 6.8013 6.8013 -143.19 -6.8013 0 0 612192. 2118.31 0.70 0.21 0.20 -1 -1 0.70 0.0151123 0.0137949 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 45.30 vpr 64.34 MiB -1 -1 0.63 22040 14 1.64 -1 -1 36380 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 25.6 MiB 1.28 1488 10441 2580 6390 1471 64.3 MiB 0.28 0.00 8.09286 -167.507 -8.09286 8.09286 2.76 0.000263127 0.000203516 0.198848 0.196182 30 3818 36 6.55708e+06 446035 526063. 1820.29 32.31 0.852786 0.829196 21886 126133 -1 3099 18 1565 4417 210129 50150 7.06724 7.06724 -157.302 -7.06724 0 0 666494. 2306.21 0.81 0.11 0.17 -1 -1 0.81 0.0192087 0.0176027 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 17.62 vpr 63.88 MiB -1 -1 0.54 21888 11 0.87 -1 -1 36436 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.9 MiB 1.48 1205 8130 1875 5560 695 63.9 MiB 0.05 0.00 6.90974 -135.543 -6.90974 6.90974 2.56 0.000216654 0.000177734 0.0122832 0.0101735 28 3454 29 6.55708e+06 349595 500653. 1732.36 5.26 0.137545 0.12948 21310 115450 -1 2951 16 1464 4326 256241 59312 6.18098 6.18098 -136.432 -6.18098 0 0 612192. 2118.31 0.85 0.15 0.25 -1 -1 0.85 0.109371 0.107951 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 20.04 vpr 63.26 MiB -1 -1 0.55 21280 13 0.58 -1 -1 36372 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64776 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1186 6328 1272 4421 635 63.3 MiB 0.05 0.00 7.14789 -159.983 -7.14789 7.14789 2.68 0.000173826 0.000139063 0.00908981 0.00769341 26 3313 36 6.55708e+06 289320 477104. 1650.88 9.52 0.367453 0.360281 21022 109990 -1 2803 19 1167 3155 260805 62504 6.33838 6.33838 -161.077 -6.33838 0 0 585099. 2024.56 0.76 0.24 0.16 -1 -1 0.76 0.00941676 0.00853264 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 23.88 vpr 63.79 MiB -1 -1 0.84 22040 14 0.87 -1 -1 36588 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1337 6509 1295 4681 533 63.8 MiB 0.04 0.00 7.98458 -168.027 -7.98458 7.98458 2.26 0.000209332 0.000169761 0.0092842 0.00773734 36 3424 21 6.55708e+06 337540 612192. 2118.31 11.37 0.589778 0.579204 22750 144809 -1 2895 15 1148 3462 205457 45599 7.1187 7.1187 -160.111 -7.1187 0 0 782063. 2706.10 0.80 0.07 0.42 -1 -1 0.80 0.0154346 0.0141391 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 34.93 vpr 64.30 MiB -1 -1 0.61 22040 15 1.44 -1 -1 36548 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1610 8311 1730 5798 783 64.3 MiB 0.17 0.00 9.07969 -190.885 -9.07969 9.07969 2.45 0.000135824 0.000110209 0.137955 0.136462 34 5238 35 6.55708e+06 397815 585099. 2024.56 21.23 0.463497 0.443696 22462 138074 -1 3827 17 1741 5120 299981 68588 8.10021 8.10021 -185.163 -8.10021 0 0 742403. 2568.87 0.94 0.39 0.36 -1 -1 0.94 0.160426 0.158717 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 14.63 vpr 63.39 MiB -1 -1 0.53 21128 11 0.56 -1 -1 36216 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64908 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 24.9 MiB 1.31 979 5945 1142 4535 268 63.4 MiB 0.13 0.00 6.54888 -132.473 -6.54888 6.54888 2.54 0.000176056 0.000141464 0.00771292 0.0064609 28 2730 19 6.55708e+06 265210 500653. 1732.36 2.97 0.0385242 0.0330155 21310 115450 -1 2351 19 899 2612 163258 37580 6.17332 6.17332 -135.267 -6.17332 0 0 612192. 2118.31 0.65 0.16 0.36 -1 -1 0.65 0.013447 0.0117404 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 17.94 vpr 63.50 MiB -1 -1 0.71 21128 12 1.31 -1 -1 36552 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65028 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 0.68 1184 5435 1029 3992 414 63.5 MiB 0.12 0.00 6.88026 -147.814 -6.88026 6.88026 2.72 0.000197667 0.000161384 0.0969983 0.00664193 34 3286 21 6.55708e+06 313430 585099. 2024.56 5.65 0.270517 0.173041 22462 138074 -1 2758 16 1351 3898 222252 50537 6.34238 6.34238 -146.944 -6.34238 0 0 742403. 2568.87 1.04 0.17 0.15 -1 -1 1.04 0.0139047 0.012623 156 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 16.70 vpr 64.19 MiB -1 -1 0.62 21432 12 1.26 -1 -1 36372 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1451 10608 2638 6974 996 64.2 MiB 0.23 0.00 7.23744 -159.275 -7.23744 7.23744 2.53 0.000266829 0.000219688 0.0470763 0.0442255 30 3847 24 6.55708e+06 385760 526063. 1820.29 4.26 0.259313 0.219445 21886 126133 -1 3154 17 1634 4863 229621 53777 6.11164 6.11164 -150.417 -6.11164 0 0 666494. 2306.21 0.83 0.07 0.22 -1 -1 0.83 0.0310462 0.0293725 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 20.53 vpr 63.94 MiB -1 -1 0.57 21888 12 0.78 -1 -1 36364 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 25.2 MiB 1.04 1398 8733 1967 5833 933 63.9 MiB 0.09 0.00 7.43539 -158.721 -7.43539 7.43539 2.42 0.000101209 8.1922e-05 0.0367919 0.0346588 36 3499 50 6.55708e+06 313430 612192. 2118.31 9.03 0.119948 0.106485 22750 144809 -1 2978 18 1249 3803 214372 48233 6.50944 6.50944 -152.45 -6.50944 0 0 782063. 2706.10 0.85 0.22 0.18 -1 -1 0.85 0.164066 0.163122 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 32.50 vpr 64.48 MiB -1 -1 0.48 22040 14 1.63 -1 -1 36584 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 25.6 MiB 1.74 1665 7871 1657 5890 324 64.5 MiB 0.08 0.00 8.95358 -178.735 -8.95358 8.95358 2.64 0.000284162 0.000233941 0.0150876 0.0127451 36 4345 46 6.55708e+06 373705 612192. 2118.31 17.57 0.396241 0.380917 22750 144809 -1 3738 21 1755 5604 309051 70573 7.56735 7.56735 -165.176 -7.56735 0 0 782063. 2706.10 1.02 0.27 0.50 -1 -1 1.02 0.236488 0.234385 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 21.24 vpr 63.82 MiB -1 -1 0.41 21432 12 0.70 -1 -1 36312 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1243 8727 1998 5960 769 63.8 MiB 0.05 0.00 7.13411 -137.801 -7.13411 7.13411 2.76 0.000214917 0.00017616 0.0124163 0.0103993 28 3796 35 6.55708e+06 301375 500653. 1732.36 9.10 0.0560087 0.0482166 21310 115450 -1 3051 19 1280 3899 258917 56182 6.07244 6.07244 -135.214 -6.07244 0 0 612192. 2118.31 0.84 0.13 0.34 -1 -1 0.84 0.0158643 0.01436 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 14.64 vpr 63.50 MiB -1 -1 0.65 21584 11 0.91 -1 -1 36376 -1 -1 26 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 24.9 MiB 1.10 979 9199 2492 5781 926 63.5 MiB 0.22 0.00 6.86503 -123.275 -6.86503 6.86503 2.41 0.000148718 0.000119219 0.0880429 0.0858612 28 2433 14 6.55708e+06 313430 500653. 1732.36 3.45 0.122087 0.115606 21310 115450 -1 2270 16 958 2833 142761 34649 6.11164 6.11164 -124.578 -6.11164 0 0 612192. 2118.31 0.84 0.17 0.23 -1 -1 0.84 0.0123848 0.0112841 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 25.81 vpr 64.21 MiB -1 -1 0.73 22648 13 1.74 -1 -1 36944 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 26.1 MiB 1.66 1739 8400 1898 5561 941 64.2 MiB 0.10 0.00 7.90403 -157.442 -7.90403 7.90403 2.69 0.000145006 0.000116969 0.00711472 0.00594781 40 4484 27 6.55708e+06 482200 666494. 2306.21 10.92 0.576451 0.417348 23614 160646 -1 4165 48 2168 7136 946474 418918 6.98824 6.98824 -160.523 -6.98824 0 0 872365. 3018.56 0.90 0.86 0.37 -1 -1 0.90 0.291696 0.286513 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 21.51 vpr 63.98 MiB -1 -1 0.60 22040 14 0.81 -1 -1 36316 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 25.2 MiB 0.59 1261 11107 2450 7308 1349 64.0 MiB 0.10 0.00 8.13646 -161.778 -8.13646 8.13646 2.93 0.000303035 0.000248085 0.0173497 0.0143451 26 3804 44 6.55708e+06 337540 477104. 1650.88 9.56 0.437548 0.427134 21022 109990 -1 3218 21 1579 4615 281022 64145 7.1207 7.1207 -158.888 -7.1207 0 0 585099. 2024.56 0.64 0.31 0.30 -1 -1 0.64 0.0183211 0.0165306 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 16.59 vpr 63.49 MiB -1 -1 0.66 21432 12 0.62 -1 -1 36308 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65012 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1200 9883 2726 6549 608 63.5 MiB 0.08 0.00 7.16941 -157.701 -7.16941 7.16941 2.56 0.000216681 0.000179978 0.0128806 0.0106838 28 3138 32 6.55708e+06 325485 500653. 1732.36 5.23 0.0539984 0.0460065 21310 115450 -1 2690 20 1031 2884 216722 59938 6.22984 6.22984 -151.345 -6.22984 0 0 612192. 2118.31 0.95 0.24 0.16 -1 -1 0.95 0.0151819 0.0137866 145 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 16.04 vpr 63.93 MiB -1 -1 0.53 21432 13 0.87 -1 -1 36516 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 25.2 MiB 1.70 1270 7326 1666 5130 530 63.9 MiB 0.20 0.00 7.85381 -158.457 -7.85381 7.85381 2.17 0.000317738 0.000277571 0.00849541 0.00711264 30 3165 23 6.55708e+06 313430 526063. 1820.29 3.27 0.113822 0.107585 21886 126133 -1 2770 17 1193 3505 177808 41085 6.6837 6.6837 -148.567 -6.6837 0 0 666494. 2306.21 0.99 0.21 0.35 -1 -1 0.99 0.199937 0.19853 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 20.90 vpr 64.28 MiB -1 -1 0.68 22040 13 1.19 -1 -1 36724 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1567 6848 1250 5272 326 64.3 MiB 0.26 0.00 7.93997 -162.463 -7.93997 7.93997 2.85 0.000299121 0.000246874 0.0121347 0.0102921 38 3708 19 6.55708e+06 421925 638502. 2209.35 6.17 0.159794 0.148938 23326 155178 -1 3143 17 1425 4356 200675 47264 6.7993 6.7993 -151.68 -6.7993 0 0 851065. 2944.86 0.87 0.11 0.32 -1 -1 0.87 0.0627839 0.0612129 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 26.17 vpr 63.89 MiB -1 -1 0.56 21280 11 0.79 -1 -1 36508 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 25.1 MiB 1.06 1431 6393 1248 4502 643 63.9 MiB 0.18 0.00 6.69021 -132.692 -6.69021 6.69021 2.41 0.000247256 0.000203975 0.0195902 0.0179785 36 3521 32 6.55708e+06 373705 612192. 2118.31 14.36 0.497843 0.293119 22750 144809 -1 3125 16 1366 4654 263593 59413 5.61352 5.61352 -125.306 -5.61352 0 0 782063. 2706.10 0.94 0.24 0.16 -1 -1 0.94 0.0155604 0.0141295 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 17.22 vpr 64.23 MiB -1 -1 0.81 22040 15 1.49 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1449 8493 1841 5572 1080 64.2 MiB 0.10 0.00 8.92955 -182.976 -8.92955 8.92955 2.39 0.000266432 0.000222595 0.0137991 0.0114588 30 3750 34 6.55708e+06 349595 526063. 1820.29 4.98 0.270437 0.260407 21886 126133 -1 3091 17 1328 4240 214055 52083 7.85721 7.85721 -175.244 -7.85721 0 0 666494. 2306.21 0.87 0.16 0.35 -1 -1 0.87 0.0139463 0.0126962 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 42.74 vpr 64.14 MiB -1 -1 0.53 22192 13 1.32 -1 -1 36540 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.26 1371 7123 1421 5075 627 64.1 MiB 0.04 0.00 7.82963 -168.646 -7.82963 7.82963 2.74 0.000268144 0.000204209 0.0115893 0.00966903 28 3926 46 6.55708e+06 361650 500653. 1732.36 30.07 0.726607 0.709572 21310 115450 -1 3335 19 1629 4866 338502 84493 7.0789 7.0789 -166.74 -7.0789 0 0 612192. 2118.31 0.97 0.06 0.26 -1 -1 0.97 0.0137997 0.0124569 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 17.53 vpr 63.73 MiB -1 -1 0.62 21128 12 0.70 -1 -1 36568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 25.0 MiB 1.76 1076 11145 2707 7146 1292 63.7 MiB 0.19 0.00 7.48815 -152.335 -7.48815 7.48815 2.54 0.000202076 0.000164647 0.0101914 0.00843458 28 3225 39 6.55708e+06 349595 500653. 1732.36 5.57 0.054545 0.0459509 21310 115450 -1 2808 31 1706 5012 357270 109600 6.8013 6.8013 -150.093 -6.8013 0 0 612192. 2118.31 0.83 0.30 0.24 -1 -1 0.83 0.0198867 0.0175138 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 15.74 vpr 63.53 MiB -1 -1 0.57 21280 11 0.50 -1 -1 36568 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1137 9013 2200 5776 1037 63.5 MiB 0.12 0.00 6.83529 -140.07 -6.83529 6.83529 2.41 0.000261816 0.000189468 0.08647 0.0843987 28 3006 21 6.55708e+06 253155 500653. 1732.36 4.09 0.121576 0.114766 21310 115450 -1 2732 20 1198 3249 245239 65915 5.99344 5.99344 -138.61 -5.99344 0 0 612192. 2118.31 0.74 0.08 0.23 -1 -1 0.74 0.013749 0.0124021 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 18.46 vpr 64.16 MiB -1 -1 0.44 21432 13 1.10 -1 -1 36676 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 25.5 MiB 1.54 1445 8165 2047 5274 844 64.2 MiB 0.09 0.00 8.06583 -161.677 -8.06583 8.06583 2.45 0.000227039 0.000183839 0.0451328 0.0429252 30 3916 30 6.55708e+06 349595 526063. 1820.29 5.98 0.335156 0.326465 21886 126133 -1 3095 19 1441 4607 229808 53551 7.2409 7.2409 -157.975 -7.2409 0 0 666494. 2306.21 0.81 0.26 0.15 -1 -1 0.81 0.243106 0.241879 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 16.66 vpr 63.45 MiB -1 -1 0.47 21432 10 0.70 -1 -1 36428 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 24.9 MiB 0.95 1034 4921 1106 3348 467 63.5 MiB 0.06 0.00 5.68406 -116.659 -5.68406 5.68406 2.65 0.000194951 0.000154172 0.0072483 0.00599133 28 2904 50 6.55708e+06 289320 500653. 1732.36 5.17 0.13373 0.126419 21310 115450 -1 2328 20 1017 3150 214868 53978 4.85252 4.85252 -113.547 -4.85252 0 0 612192. 2118.31 0.83 0.14 0.27 -1 -1 0.83 0.00851497 0.00779482 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 33.77 vpr 63.58 MiB -1 -1 0.64 21584 14 0.58 -1 -1 36564 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65104 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 1.83 1088 10813 2512 6516 1785 63.6 MiB 0.12 0.00 7.85572 -162.036 -7.85572 7.85572 2.21 8.8625e-05 7.1171e-05 0.0760038 0.0737786 30 3060 27 6.55708e+06 289320 526063. 1820.29 20.47 0.576154 0.514953 21886 126133 -1 2356 20 1065 3088 150557 36243 6.94764 6.94764 -155.495 -6.94764 0 0 666494. 2306.21 1.11 0.12 0.33 -1 -1 1.11 0.223001 0.221609 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 16.90 vpr 63.97 MiB -1 -1 0.85 21736 13 0.73 -1 -1 36532 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1286 9333 2274 5926 1133 64.0 MiB 0.02 0.00 7.57111 -160.828 -7.57111 7.57111 2.66 9.6321e-05 7.7635e-05 0.00577312 0.00477365 30 3224 26 6.55708e+06 361650 526063. 1820.29 4.20 0.0508096 0.0440078 21886 126133 -1 2739 31 1261 3631 322025 126066 6.78964 6.78964 -157.409 -6.78964 0 0 666494. 2306.21 0.95 0.20 0.24 -1 -1 0.95 0.0145648 0.0130551 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 16.05 vpr 63.50 MiB -1 -1 0.49 21432 12 0.42 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 24.9 MiB 1.16 1206 10385 2702 6390 1293 63.5 MiB 0.14 0.00 6.65202 -141.569 -6.65202 6.65202 2.44 0.00017718 0.000142804 0.0906394 0.0108084 28 3085 18 6.55708e+06 313430 500653. 1732.36 4.95 0.126224 0.0414493 21310 115450 -1 2720 16 1096 2873 182715 40890 6.21052 6.21052 -143.237 -6.21052 0 0 612192. 2118.31 0.79 0.09 0.30 -1 -1 0.79 0.0127089 0.0115179 138 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 20.78 vpr 64.00 MiB -1 -1 0.68 21736 12 0.84 -1 -1 36880 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1371 5718 1045 4451 222 64.0 MiB 0.15 0.00 7.06387 -150.59 -7.06387 7.06387 2.52 0.000114925 9.1852e-05 0.00983158 0.00812829 36 3301 40 6.55708e+06 313430 612192. 2118.31 8.58 0.435218 0.313633 22750 144809 -1 2800 18 1332 4379 231281 52794 6.35464 6.35464 -143.763 -6.35464 0 0 782063. 2706.10 0.86 0.25 0.38 -1 -1 0.86 0.0170465 0.0154706 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 19.26 vpr 64.26 MiB -1 -1 0.82 21888 13 1.01 -1 -1 36316 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 25.5 MiB 1.83 1352 12719 3295 7542 1882 64.3 MiB 0.09 0.00 7.66758 -155.332 -7.66758 7.66758 2.58 0.000246481 0.000200712 0.0189413 0.0156962 34 3530 22 6.55708e+06 349595 585099. 2024.56 6.54 0.243093 0.198409 22462 138074 -1 2931 15 1284 3916 202762 47937 6.6811 6.6811 -148.35 -6.6811 0 0 742403. 2568.87 0.89 0.07 0.46 -1 -1 0.89 0.0171879 0.0158956 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 24.33 vpr 63.64 MiB -1 -1 0.59 21280 11 0.56 -1 -1 36396 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1082 7415 1581 5155 679 63.6 MiB 0.15 0.00 6.31359 -143.036 -6.31359 6.31359 2.53 9.2361e-05 7.3812e-05 0.0101807 0.00838108 28 3145 30 6.55708e+06 301375 500653. 1732.36 12.17 0.43249 0.417527 21310 115450 -1 2638 23 1177 3451 274589 87116 5.57232 5.57232 -137.488 -5.57232 0 0 612192. 2118.31 0.60 0.25 0.31 -1 -1 0.60 0.00998682 0.00912745 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 22.53 vpr 63.64 MiB -1 -1 0.40 21280 13 0.99 -1 -1 36544 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 25.0 MiB 1.25 1235 12763 3469 7332 1962 63.6 MiB 0.33 0.00 7.41461 -156.931 -7.41461 7.41461 2.43 0.000196035 0.000159111 0.0910167 0.0879632 28 4307 47 6.55708e+06 289320 500653. 1732.36 10.79 0.141304 0.131292 21310 115450 -1 3200 23 1577 4702 304620 67065 6.55124 6.55124 -157.29 -6.55124 0 0 612192. 2118.31 0.73 0.21 0.24 -1 -1 0.73 0.017403 0.0156288 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 20.85 vpr 64.09 MiB -1 -1 0.58 21584 13 1.01 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 25.5 MiB 2.61 1388 6302 1254 4414 634 64.1 MiB 0.02 0.00 7.89081 -170.839 -7.89081 7.89081 2.57 0.000116871 9.4236e-05 0.00503171 0.00421225 36 3241 19 6.55708e+06 337540 612192. 2118.31 6.67 0.261633 0.251399 22750 144809 -1 2886 17 1230 3457 177414 41371 7.0397 7.0397 -161.129 -7.0397 0 0 782063. 2706.10 0.70 0.08 0.29 -1 -1 0.70 0.0170939 0.0156853 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 25.91 vpr 63.74 MiB -1 -1 0.91 21736 11 0.67 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 25.0 MiB 0.75 1142 12958 3537 7390 2031 63.7 MiB 0.26 0.00 6.51109 -124.99 -6.51109 6.51109 2.45 0.000196599 0.000158198 0.00898598 0.00731972 28 3194 50 6.55708e+06 325485 500653. 1732.36 14.43 0.131746 0.115841 21310 115450 -1 2802 20 1392 4118 270857 60473 5.90278 5.90278 -123.786 -5.90278 0 0 612192. 2118.31 0.99 0.16 0.19 -1 -1 0.99 0.0954845 0.0938832 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 20.07 vpr 64.51 MiB -1 -1 0.79 22192 14 1.40 -1 -1 36796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 25.8 MiB 1.40 1576 7851 1546 5933 372 64.5 MiB 0.06 0.00 8.33526 -182.394 -8.33526 8.33526 2.51 0.000252892 0.000201319 0.0122387 0.0103391 30 4450 35 6.55708e+06 421925 526063. 1820.29 6.61 0.169597 0.161469 21886 126133 -1 3611 19 2114 6505 329298 76485 7.4375 7.4375 -177.262 -7.4375 0 0 666494. 2306.21 0.93 0.20 0.19 -1 -1 0.93 0.0438397 0.0419185 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 17.39 vpr 63.51 MiB -1 -1 0.31 21280 12 0.56 -1 -1 36420 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 24.9 MiB 1.21 1099 11311 2604 7322 1385 63.5 MiB 0.10 0.00 6.85552 -147.848 -6.85552 6.85552 2.41 0.000253518 0.000215242 0.0129724 0.0106323 28 3319 44 6.55708e+06 337540 500653. 1732.36 6.22 0.128867 0.120467 21310 115450 -1 2599 16 1007 2535 159007 36657 5.94058 5.94058 -140.231 -5.94058 0 0 612192. 2118.31 0.62 0.14 0.23 -1 -1 0.62 0.0127789 0.0116796 138 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 21.00 vpr 64.04 MiB -1 -1 0.72 22040 13 1.05 -1 -1 36476 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 25.3 MiB 1.20 1274 9395 2232 5867 1296 64.0 MiB 0.09 0.00 7.81266 -155.924 -7.81266 7.81266 2.08 0.000241124 0.000189534 0.0142489 0.0116792 30 3950 46 6.55708e+06 301375 526063. 1820.29 7.59 0.149933 0.139424 21886 126133 -1 2874 18 1346 4256 223788 52651 6.7575 6.7575 -149.517 -6.7575 0 0 666494. 2306.21 1.02 0.11 0.18 -1 -1 1.02 0.0174635 0.0159086 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 16.17 vpr 63.66 MiB -1 -1 0.72 21736 13 0.54 -1 -1 36328 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 1.10 1170 8130 1915 5523 692 63.7 MiB 0.10 0.00 7.51063 -158.904 -7.51063 7.51063 2.53 0.000237302 0.0002003 0.0834198 0.0824587 28 3271 29 6.55708e+06 313430 500653. 1732.36 3.72 0.121986 0.115319 21310 115450 -1 2765 19 1149 3037 195902 43669 6.4015 6.4015 -153.619 -6.4015 0 0 612192. 2118.31 1.23 0.19 0.23 -1 -1 1.23 0.156756 0.15548 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 16.14 vpr 63.95 MiB -1 -1 0.60 21736 12 0.55 -1 -1 36644 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 25.2 MiB 1.12 1308 9336 2430 5918 988 63.9 MiB 0.23 0.00 6.8413 -150.87 -6.8413 6.8413 2.54 0.000238638 0.000196606 0.188629 0.186352 30 3266 30 6.55708e+06 313430 526063. 1820.29 4.79 0.366116 0.219908 21886 126133 -1 2614 15 969 2999 146300 33820 6.02098 6.02098 -141.15 -6.02098 0 0 666494. 2306.21 1.01 0.06 0.14 -1 -1 1.01 0.0396405 0.0384656 176 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.36 vpr 64.23 MiB -1 -1 0.79 22648 15 1.52 -1 -1 36972 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 25.9 MiB 0.96 1721 13324 3640 7906 1778 64.2 MiB 0.18 0.00 8.79929 -171.347 -8.79929 8.79929 2.10 0.000331813 0.000264381 0.0230625 0.0192312 42 4722 27 6.55708e+06 433980 701300. 2426.64 6.32 0.122376 0.105414 23902 167433 -1 3406 18 1713 5652 297793 70623 7.57196 7.57196 -160.34 -7.57196 0 0 896083. 3100.63 1.30 0.16 0.31 -1 -1 1.30 0.089046 0.0870372 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 14.53 vpr 62.89 MiB -1 -1 0.44 21280 10 0.40 -1 -1 36224 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64404 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 24.4 MiB 0.25 909 3864 801 2776 287 62.9 MiB 0.02 0.00 5.1986 -120.097 -5.1986 5.1986 2.07 0.00013744 0.000109457 0.00471201 0.00389925 26 2630 39 6.55708e+06 216990 477104. 1650.88 5.35 0.0397896 0.0289415 21022 109990 -1 2051 24 908 2419 229724 74560 4.57854 4.57854 -120.707 -4.57854 0 0 585099. 2024.56 0.51 0.24 0.25 -1 -1 0.51 0.0095774 0.00836982 92 86 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 14.34 vpr 63.56 MiB -1 -1 0.59 21432 13 0.72 -1 -1 36228 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 24.9 MiB 0.65 1036 7575 1525 5019 1031 63.6 MiB 0.14 0.00 7.36426 -147.717 -7.36426 7.36426 2.60 0.000200261 0.000162076 0.00680068 0.00561287 28 2807 17 6.55708e+06 301375 500653. 1732.36 3.28 0.30259 0.29688 21310 115450 -1 2630 19 1085 3009 178566 41937 6.89818 6.89818 -147.006 -6.89818 0 0 612192. 2118.31 0.70 0.13 0.22 -1 -1 0.70 0.048305 0.0470081 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 18.31 vpr 63.75 MiB -1 -1 0.57 21280 12 1.11 -1 -1 36552 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 25.0 MiB 0.80 1153 10813 3047 5880 1886 63.8 MiB 0.26 0.00 7.55494 -153.61 -7.55494 7.55494 2.35 0.000205015 0.000165666 0.217296 0.214747 34 3390 41 6.55708e+06 289320 585099. 2024.56 6.49 0.6696 0.657872 22462 138074 -1 2527 16 1208 3085 158441 40340 6.53698 6.53698 -151.4 -6.53698 0 0 742403. 2568.87 0.95 0.15 0.22 -1 -1 0.95 0.13273 0.13205 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 12.79 vpr 63.16 MiB -1 -1 0.68 21280 9 0.50 -1 -1 36052 -1 -1 22 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64672 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 24.6 MiB 0.45 830 9374 2202 6391 781 63.2 MiB 0.02 0.00 5.41683 -98.6163 -5.41683 5.41683 2.25 6.612e-05 5.28e-05 0.00476596 0.00388661 30 1933 18 6.55708e+06 265210 526063. 1820.29 2.56 0.0303849 0.0257861 21886 126133 -1 1678 18 701 2000 93548 22278 4.64166 4.64166 -93.7436 -4.64166 0 0 666494. 2306.21 0.91 0.05 0.23 -1 -1 0.91 0.0288552 0.027802 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 27.84 vpr 64.16 MiB -1 -1 0.65 21584 12 1.23 -1 -1 36696 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1426 9865 2341 6996 528 64.2 MiB 0.21 0.00 7.21898 -157.037 -7.21898 7.21898 2.43 0.000272854 0.000224147 0.0711103 0.0685632 36 3904 23 6.55708e+06 397815 612192. 2118.31 14.40 0.240858 0.223214 22750 144809 -1 3229 18 1463 4336 244473 57297 6.2833 6.2833 -150.434 -6.2833 0 0 782063. 2706.10 0.96 0.29 0.41 -1 -1 0.96 0.148595 0.146946 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 19.32 vpr 64.16 MiB -1 -1 0.79 22192 13 1.16 -1 -1 36384 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 25.5 MiB 0.95 1441 7863 1836 5236 791 64.2 MiB 0.14 0.00 8.16309 -168.172 -8.16309 8.16309 2.01 0.000118535 9.5207e-05 0.00623797 0.00519187 36 3766 31 6.55708e+06 361650 612192. 2118.31 7.09 0.133697 0.121616 22750 144809 -1 3302 19 1605 5170 286230 64164 6.8385 6.8385 -155.599 -6.8385 0 0 782063. 2706.10 0.95 0.16 0.20 -1 -1 0.95 0.0595597 0.0578422 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 14.02 vpr 63.95 MiB -1 -1 0.28 21432 1 0.11 -1 -1 33732 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1016 11703 2995 7482 1226 63.9 MiB 0.24 0.00 5.5261 -159.162 -5.5261 5.5261 2.69 0.000199142 0.000148429 0.0547026 0.0525283 32 2517 20 6.64007e+06 401856 554710. 1919.41 2.60 0.220658 0.213887 22834 132086 -1 2177 23 1613 2478 162394 38899 4.28389 4.28389 -145.187 -4.28389 0 0 701300. 2426.64 0.83 0.13 0.26 -1 -1 0.83 0.0141837 0.0126231 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 13.70 vpr 64.03 MiB -1 -1 0.42 21432 1 0.25 -1 -1 33892 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1071 13527 3636 8473 1418 64.0 MiB 0.23 0.00 4.97921 -144.408 -4.97921 4.97921 2.22 0.000188257 0.000152253 0.0151584 0.0123761 32 2462 22 6.64007e+06 313950 554710. 1919.41 2.57 0.185138 0.0523855 22834 132086 -1 2136 20 1596 2436 165467 39561 4.22989 4.22989 -144.826 -4.22989 0 0 701300. 2426.64 0.85 0.21 0.58 -1 -1 0.85 0.0126255 0.0112347 141 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 12.34 vpr 63.71 MiB -1 -1 0.33 21280 1 0.07 -1 -1 33860 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.2 MiB 0.93 1074 15639 5003 8705 1931 63.7 MiB 0.23 0.00 4.31513 -125.567 -4.31513 4.31513 2.17 0.000153124 0.000121434 0.013837 0.0111992 32 2473 24 6.64007e+06 288834 554710. 1919.41 2.19 0.0332637 0.0276406 22834 132086 -1 2087 22 1207 1679 121084 27669 3.58462 3.58462 -122.891 -3.58462 0 0 701300. 2426.64 0.74 0.05 0.37 -1 -1 0.74 0.034181 0.0331543 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 13.00 vpr 63.84 MiB -1 -1 0.43 21280 1 0.02 -1 -1 33796 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.11 931 15103 4868 7954 2281 63.8 MiB 0.25 0.00 4.52953 -121.776 -4.52953 4.52953 2.18 0.000243489 0.000133266 0.0143754 0.0115775 32 2343 23 6.64007e+06 339066 554710. 1919.41 2.21 0.0304969 0.025206 22834 132086 -1 2027 20 1332 2473 182462 40684 3.68663 3.68663 -118.519 -3.68663 0 0 701300. 2426.64 1.06 0.27 0.20 -1 -1 1.06 0.0094445 0.00832293 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 13.64 vpr 64.02 MiB -1 -1 0.45 21280 1 0.03 -1 -1 33724 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.08 1007 10071 2662 6608 801 64.0 MiB 0.22 0.00 4.57112 -132.997 -4.57112 4.57112 2.57 0.000153706 0.000123216 0.0105035 0.00854908 32 2451 20 6.64007e+06 288834 554710. 1919.41 2.62 0.122666 0.116991 22834 132086 -1 2111 23 1634 3182 210560 47673 3.68143 3.68143 -129.344 -3.68143 0 0 701300. 2426.64 0.92 0.17 0.33 -1 -1 0.92 0.0626375 0.061067 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 14.18 vpr 64.16 MiB -1 -1 0.37 21584 1 0.04 -1 -1 33696 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 25.5 MiB 0.38 1015 12248 3024 8320 904 64.2 MiB 0.17 0.00 3.5011 -120.544 -3.5011 3.5011 2.18 0.000170627 0.000136834 0.0121241 0.00999843 28 2553 23 6.64007e+06 426972 500653. 1732.36 3.70 0.303422 0.296356 21970 115934 -1 2229 18 1361 2235 156699 36852 2.86697 2.86697 -117.824 -2.86697 0 0 612192. 2118.31 0.73 0.16 0.30 -1 -1 0.73 0.132936 0.131511 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 12.24 vpr 63.58 MiB -1 -1 0.32 21128 1 0.06 -1 -1 34172 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 24.9 MiB 0.33 708 9374 2595 5724 1055 63.6 MiB 0.25 0.00 4.05083 -102.502 -4.05083 4.05083 2.49 0.000158 0.000128677 0.00974979 0.00793241 32 1565 22 6.64007e+06 238602 554710. 1919.41 2.12 0.0308785 0.0260617 22834 132086 -1 1374 20 859 1459 94904 22873 2.69757 2.69757 -93.296 -2.69757 0 0 701300. 2426.64 1.00 0.03 0.21 -1 -1 1.00 0.00953158 0.00839753 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.66 vpr 63.84 MiB -1 -1 0.27 20976 1 0.15 -1 -1 33844 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.26 827 11383 2423 8400 560 63.8 MiB 0.32 0.00 3.48559 -101.391 -3.48559 3.48559 2.84 0.000150132 0.000117586 0.0119231 0.0100775 28 2232 37 6.64007e+06 389298 500653. 1732.36 3.02 0.150056 0.109857 21970 115934 -1 1893 16 957 1699 120491 27748 2.88597 2.88597 -100.419 -2.88597 0 0 612192. 2118.31 0.92 0.11 0.22 -1 -1 0.92 0.0086401 0.00769204 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 13.87 vpr 63.96 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33900 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 25.4 MiB 0.76 888 14123 4595 7521 2007 64.0 MiB 0.23 0.00 3.62422 -120.034 -3.62422 3.62422 2.77 0.000136738 0.000107672 0.0138099 0.011095 32 1942 19 6.64007e+06 251160 554710. 1919.41 2.05 0.07235 0.06559 22834 132086 -1 1735 19 1183 1753 113197 25999 3.07917 3.07917 -116.763 -3.07917 0 0 701300. 2426.64 0.77 0.15 0.16 -1 -1 0.77 0.0101034 0.00888188 111 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 13.34 vpr 63.81 MiB -1 -1 0.39 21432 1 0.20 -1 -1 33556 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.48 874 11631 3631 6742 1258 63.8 MiB 0.16 0.00 3.92955 -127.77 -3.92955 3.92955 2.91 7.4847e-05 5.8313e-05 0.126775 0.125018 32 1924 20 6.64007e+06 213486 554710. 1919.41 2.27 0.147771 0.142884 22834 132086 -1 1758 17 1045 1692 112022 26273 2.88977 2.88977 -116.793 -2.88977 0 0 701300. 2426.64 0.97 0.08 0.48 -1 -1 0.97 0.0100006 0.00888423 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 13.04 vpr 63.79 MiB -1 -1 0.45 21280 1 0.11 -1 -1 33556 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 729 11571 3200 7477 894 63.8 MiB 0.24 0.00 4.09995 -111.19 -4.09995 4.09995 3.04 0.000149469 0.00011699 0.143407 0.140961 28 1721 20 6.64007e+06 213486 500653. 1732.36 2.12 0.200653 0.194605 21970 115934 -1 1497 19 809 1291 80635 19647 3.03316 3.03316 -103.694 -3.03316 0 0 612192. 2118.31 0.75 0.11 0.15 -1 -1 0.75 0.0102693 0.00910464 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.55 vpr 63.83 MiB -1 -1 0.41 21128 1 0.08 -1 -1 33744 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 793 12008 4624 6064 1320 63.8 MiB 0.17 0.00 3.82041 -120.561 -3.82041 3.82041 2.70 0.000174605 0.000118395 0.0116815 0.00940972 32 2319 19 6.64007e+06 226044 554710. 1919.41 2.54 0.0357017 0.0298223 22834 132086 -1 1793 18 1119 1519 109025 25250 3.04617 3.04617 -114.291 -3.04617 0 0 701300. 2426.64 0.94 0.02 0.43 -1 -1 0.94 0.00564448 0.00507263 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 14.74 vpr 64.17 MiB -1 -1 0.58 21128 1 0.12 -1 -1 33932 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.4 MiB 0.86 921 8863 1921 5548 1394 64.2 MiB 0.16 0.00 4.43584 -138.372 -4.43584 4.43584 3.06 0.000159144 0.000128163 0.00994967 0.00823373 32 2799 27 6.64007e+06 301392 554710. 1919.41 3.03 0.041536 0.0353973 22834 132086 -1 2064 19 1688 2550 183073 44808 3.29303 3.29303 -127.355 -3.29303 0 0 701300. 2426.64 1.03 0.06 0.18 -1 -1 1.03 0.011807 0.0105417 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 14.90 vpr 64.17 MiB -1 -1 0.44 21432 1 0.03 -1 -1 33696 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.4 MiB 0.52 885 17591 4750 10764 2077 64.2 MiB 0.36 0.00 4.98464 -139.028 -4.98464 4.98464 3.05 0.000235917 0.000196846 0.017372 0.01406 28 2431 24 6.64007e+06 389298 500653. 1732.36 3.28 0.165166 0.157571 21970 115934 -1 1980 21 1567 2474 160909 37169 3.86263 3.86263 -134.833 -3.86263 0 0 612192. 2118.31 0.63 0.16 0.13 -1 -1 0.63 0.0132013 0.011718 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 13.12 vpr 63.28 MiB -1 -1 0.42 21128 1 0.15 -1 -1 33608 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64800 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.32 748 11118 2695 7379 1044 63.3 MiB 0.28 0.00 3.28519 -94.0444 -3.28519 3.28519 2.73 0.000123249 9.761e-05 0.0104396 0.00848623 28 1638 21 6.64007e+06 263718 500653. 1732.36 2.22 0.0449587 0.0397738 21970 115934 -1 1444 20 818 1388 87790 20501 2.65757 2.65757 -90.3394 -2.65757 0 0 612192. 2118.31 0.73 0.13 0.21 -1 -1 0.73 0.111596 0.110375 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 13.19 vpr 64.18 MiB -1 -1 0.35 21280 1 0.14 -1 -1 33684 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 25.4 MiB 0.33 992 9914 2318 7193 403 64.2 MiB 0.18 0.08 4.02307 -125.622 -4.02307 4.02307 2.70 0.000173456 0.00013884 0.0117563 0.00960212 32 2532 20 6.64007e+06 276276 554710. 1919.41 2.64 0.0661736 0.0590957 22834 132086 -1 2139 19 1418 2476 173944 39189 3.03517 3.03517 -118.418 -3.03517 0 0 701300. 2426.64 0.81 0.10 0.44 -1 -1 0.81 0.0126859 0.011326 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 13.87 vpr 64.15 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33716 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 25.4 MiB 0.61 1076 14679 4725 7906 2048 64.1 MiB 0.14 0.00 4.55604 -146.606 -4.55604 4.55604 2.38 0.000165186 0.00013192 0.0149448 0.0122204 28 2564 23 6.64007e+06 288834 500653. 1732.36 3.00 0.0442953 0.0376948 21970 115934 -1 2305 19 1419 1997 147886 33366 3.41523 3.41523 -130.731 -3.41523 0 0 612192. 2118.31 1.01 0.14 0.41 -1 -1 1.01 0.0121935 0.0106907 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 12.92 vpr 63.93 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33688 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.2 MiB 0.23 793 7443 1484 5603 356 63.9 MiB 0.36 0.10 2.85064 -101.719 -2.85064 2.85064 2.51 0.0993528 0.0993126 0.106602 0.105223 30 1820 20 6.64007e+06 364182 526063. 1820.29 2.83 0.307575 0.30212 22546 126617 -1 1601 18 995 1636 84292 20439 2.03391 2.03391 -94.6392 -2.03391 0 0 666494. 2306.21 1.05 0.09 0.43 -1 -1 1.05 0.00959526 0.00847234 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 13.13 vpr 63.36 MiB -1 -1 0.46 21128 1 0.12 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.6 MiB 0.05 601 7249 1675 5111 463 63.4 MiB 0.27 0.00 2.38033 -78.5571 -2.38033 2.38033 2.15 0.000120811 9.369e-05 0.149253 0.147855 28 1406 21 6.64007e+06 188370 500653. 1732.36 2.37 0.171004 0.16582 21970 115934 -1 1259 21 659 961 75275 17283 1.93811 1.93811 -80.7431 -1.93811 0 0 612192. 2118.31 0.81 0.12 0.28 -1 -1 0.81 0.00845134 0.00722996 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 13.43 vpr 63.89 MiB -1 -1 0.41 21432 1 0.10 -1 -1 33884 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 0.73 928 14123 4909 7107 2107 63.9 MiB 0.57 0.00 4.89847 -147.53 -4.89847 4.89847 2.66 0.000163803 0.000133719 0.0138283 0.0110452 30 2053 21 6.64007e+06 251160 526063. 1820.29 2.38 0.0398206 0.0332004 22546 126617 -1 1815 20 1083 1623 94455 22070 3.67843 3.67843 -136.048 -3.67843 0 0 666494. 2306.21 0.97 0.13 0.28 -1 -1 0.97 0.113405 0.112226 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 12.62 vpr 64.07 MiB -1 -1 0.44 21432 1 0.06 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.5 MiB 0.11 927 7007 1409 5318 280 64.1 MiB 0.04 0.00 4.20815 -131.502 -4.20815 4.20815 2.64 0.000164372 0.000130898 0.00691655 0.00446861 30 2075 21 6.64007e+06 389298 526063. 1820.29 2.51 0.100907 0.0942374 22546 126617 -1 1916 21 1089 1828 106454 24448 3.50443 3.50443 -124.356 -3.50443 0 0 666494. 2306.21 0.60 0.05 0.25 -1 -1 0.60 0.0121851 0.010816 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 14.30 vpr 63.96 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33964 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 25.4 MiB 0.97 1164 13949 4120 8434 1395 64.0 MiB 0.19 0.00 4.61182 -142.538 -4.61182 4.61182 2.45 0.000189308 0.000153941 0.0149428 0.0121387 32 2749 21 6.64007e+06 313950 554710. 1919.41 2.32 0.0420661 0.0350828 22834 132086 -1 2382 20 1492 2358 164989 37724 4.01422 4.01422 -134.266 -4.01422 0 0 701300. 2426.64 1.18 0.04 0.28 -1 -1 1.18 0.0128044 0.0114016 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 13.60 vpr 63.09 MiB -1 -1 0.40 21432 1 0.05 -1 -1 34280 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64600 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.6 MiB 0.31 372 9836 3040 4897 1899 63.1 MiB 0.08 0.00 2.3975 -64.6606 -2.3975 2.3975 2.15 9.7093e-05 7.3797e-05 0.00748263 0.00591588 32 1098 34 6.64007e+06 226044 554710. 1919.41 2.78 0.0264807 0.0215137 22834 132086 -1 833 22 664 959 61491 17296 1.91611 1.91611 -63.8808 -1.91611 0 0 701300. 2426.64 0.80 0.10 0.20 -1 -1 0.80 0.0079382 0.00691268 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 14.94 vpr 63.86 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33420 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.1 MiB 0.21 962 9571 2597 6402 572 63.9 MiB 0.10 0.00 5.07715 -127.364 -5.07715 5.07715 3.16 0.000140406 0.000112436 0.00930876 0.00759333 26 2489 49 6.64007e+06 263718 477104. 1650.88 3.59 0.0472842 0.0393665 21682 110474 -1 2143 18 1204 2227 165254 36642 4.14842 4.14842 -134.356 -4.14842 0 0 585099. 2024.56 0.69 0.15 0.25 -1 -1 0.69 0.00904524 0.00800916 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 12.46 vpr 63.19 MiB -1 -1 0.35 20824 1 0.09 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64708 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.5 MiB 0.10 489 9374 3820 5276 278 63.2 MiB 0.19 0.00 2.56853 -74.8406 -2.56853 2.56853 2.40 0.000104711 8.0703e-05 0.00697369 0.00546991 28 1211 17 6.64007e+06 175812 500653. 1732.36 2.44 0.0628252 0.059166 21970 115934 -1 1057 16 515 587 47034 11592 1.92111 1.92111 -73.3479 -1.92111 0 0 612192. 2118.31 0.97 0.18 0.42 -1 -1 0.97 0.0057727 0.00508576 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 12.81 vpr 63.91 MiB -1 -1 0.43 21128 1 0.04 -1 -1 33500 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 873 9040 2110 6495 435 63.9 MiB 0.11 0.00 4.62197 -125.344 -4.62197 4.62197 2.56 0.000159609 0.000126491 0.0653272 0.00673556 28 2023 22 6.64007e+06 376740 500653. 1732.36 2.46 0.249907 0.18766 21970 115934 -1 1797 21 990 1707 119519 26176 3.53223 3.53223 -116.512 -3.53223 0 0 612192. 2118.31 1.08 0.08 0.46 -1 -1 1.08 0.0584738 0.0572238 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 13.10 vpr 63.95 MiB -1 -1 0.32 21128 1 0.05 -1 -1 33848 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.2 MiB 0.28 1042 8735 1871 6045 819 63.9 MiB 0.12 0.00 3.82887 -111.523 -3.82887 3.82887 2.43 0.00014814 0.000119006 0.00802507 0.00654743 32 2314 22 6.64007e+06 389298 554710. 1919.41 2.73 0.294072 0.288443 22834 132086 -1 2058 21 1192 2083 149507 33934 2.77076 2.77076 -105.552 -2.77076 0 0 701300. 2426.64 1.26 0.19 0.21 -1 -1 1.26 0.011288 0.00989814 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.54 vpr 64.06 MiB -1 -1 0.55 21584 1 0.12 -1 -1 33820 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 25.4 MiB 0.40 1095 14371 4083 8488 1800 64.1 MiB 0.19 0.00 4.70658 -136.83 -4.70658 4.70658 2.76 0.000192621 0.000159106 0.0188175 0.0162845 32 2512 22 6.64007e+06 339066 554710. 1919.41 2.51 0.0485059 0.0415846 22834 132086 -1 2305 21 1361 2316 168554 36841 3.80283 3.80283 -132.416 -3.80283 0 0 701300. 2426.64 1.02 0.02 0.24 -1 -1 1.02 0.0188367 0.00516954 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 12.28 vpr 63.75 MiB -1 -1 0.50 21280 1 0.10 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.1 MiB 0.24 785 11260 3393 5970 1897 63.7 MiB 0.13 0.00 3.03896 -100.907 -3.03896 3.03896 2.44 0.000148882 0.000117882 0.0110971 0.00895171 32 1733 18 6.64007e+06 200928 554710. 1919.41 2.74 0.280938 0.175077 22834 132086 -1 1542 17 742 1230 80790 18773 2.77597 2.77597 -101.487 -2.77597 0 0 701300. 2426.64 0.96 0.01 0.39 -1 -1 0.96 0.00575695 0.00510181 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 11.16 vpr 63.61 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33756 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.9 MiB 0.08 760 10873 2730 7151 992 63.6 MiB 0.08 0.00 3.24119 -98.8846 -3.24119 3.24119 2.52 0.000156114 0.000123869 0.010338 0.0082996 32 1673 19 6.64007e+06 288834 554710. 1919.41 1.91 0.0351917 0.0293014 22834 132086 -1 1523 15 747 1145 76032 17223 2.68277 2.68277 -95.1674 -2.68277 0 0 701300. 2426.64 1.00 0.20 0.38 -1 -1 1.00 0.00495117 0.00445152 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 12.25 vpr 63.55 MiB -1 -1 0.62 20824 1 0.11 -1 -1 33436 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.9 MiB 0.04 598 14123 3741 8412 1970 63.6 MiB 0.27 0.00 3.43604 -92.6832 -3.43604 3.43604 2.27 0.000144052 0.000113818 0.0125319 0.00997179 28 1736 22 6.64007e+06 288834 500653. 1732.36 2.63 0.150119 0.144433 21970 115934 -1 1466 17 864 1511 96966 23302 3.08217 3.08217 -97.7481 -3.08217 0 0 612192. 2118.31 0.68 0.01 0.26 -1 -1 0.68 0.00410301 0.00363012 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.95 vpr 63.68 MiB -1 -1 0.54 21128 1 0.20 -1 -1 33728 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.12 729 8183 1849 5637 697 63.7 MiB 0.08 0.00 3.94895 -114.681 -3.94895 3.94895 2.82 0.000143534 0.000114161 0.00825563 0.00671299 28 2003 19 6.64007e+06 238602 500653. 1732.36 2.84 0.272777 0.267656 21970 115934 -1 1799 21 1146 1871 122649 29376 2.89097 2.89097 -111.719 -2.89097 0 0 612192. 2118.31 0.85 0.08 0.35 -1 -1 0.85 0.00955595 0.00837989 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 12.25 vpr 63.57 MiB -1 -1 0.39 21128 1 0.14 -1 -1 33464 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.18 868 7527 1581 5352 594 63.6 MiB 0.31 0.00 3.56847 -107.495 -3.56847 3.56847 2.28 6.6268e-05 5.1978e-05 0.0079333 0.00654043 30 1788 18 6.64007e+06 339066 526063. 1820.29 2.26 0.0331832 0.0281346 22546 126617 -1 1653 21 736 1288 67223 15752 2.91597 2.91597 -101.045 -2.91597 0 0 666494. 2306.21 0.78 0.11 0.33 -1 -1 0.78 0.0100359 0.00883265 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.91 vpr 63.70 MiB -1 -1 0.81 21280 1 0.20 -1 -1 33804 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 25.1 MiB 0.26 739 9495 2355 6085 1055 63.7 MiB 0.33 0.00 3.3589 -103.891 -3.3589 3.3589 2.31 0.000149647 0.000119008 0.00884932 0.00713222 28 1746 18 6.64007e+06 326508 500653. 1732.36 2.21 0.033907 0.0283431 21970 115934 -1 1647 16 885 1292 83362 20140 2.38151 2.38151 -96.3639 -2.38151 0 0 612192. 2118.31 0.70 0.01 0.25 -1 -1 0.70 0.00526488 0.00476692 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 17.31 vpr 64.29 MiB -1 -1 0.55 21280 1 0.13 -1 -1 34168 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 25.5 MiB 0.64 1107 10336 2265 7034 1037 64.3 MiB 0.21 0.00 4.35696 -123.755 -4.35696 4.35696 2.04 0.000217399 0.000181351 0.0105331 0.00880557 26 3217 50 6.64007e+06 477204 477104. 1650.88 5.70 0.243549 0.236092 21682 110474 -1 2430 20 1394 2554 184895 41388 3.94202 3.94202 -125.549 -3.94202 0 0 585099. 2024.56 0.68 0.22 0.30 -1 -1 0.68 0.097148 0.0115271 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 12.70 vpr 64.03 MiB -1 -1 0.57 21584 1 0.05 -1 -1 33556 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 25.3 MiB 0.42 971 9971 2311 7104 556 64.0 MiB 0.08 0.00 3.87558 -129.13 -3.87558 3.87558 1.60 0.000191473 0.000155165 0.0337501 0.0211453 26 2546 26 6.64007e+06 464646 477104. 1650.88 1.84 0.1875 0.16984 21682 110474 -1 2085 21 1581 2420 157485 36073 3.08017 3.08017 -124.613 -3.08017 0 0 585099. 2024.56 0.51 0.20 0.22 -1 -1 0.51 0.0145844 0.0129331 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 14.11 vpr 63.68 MiB -1 -1 0.75 21128 1 0.10 -1 -1 33716 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.1 MiB 1.10 966 12186 3700 6821 1665 63.7 MiB 0.07 0.00 4.35701 -128.732 -4.35701 4.35701 1.75 0.000138399 0.000109051 0.0111862 0.00894908 32 2082 19 6.64007e+06 238602 554710. 1919.41 1.36 0.035185 0.0293146 22834 132086 -1 1879 19 1113 1632 117971 27140 3.12563 3.12563 -115.654 -3.12563 0 0 701300. 2426.64 0.66 0.14 0.31 -1 -1 0.66 0.07853 0.0774681 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 15.59 vpr 64.20 MiB -1 -1 0.44 21280 1 0.20 -1 -1 34036 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 0.26 1053 13933 4032 7624 2277 64.2 MiB 0.34 0.00 4.30797 -133.935 -4.30797 4.30797 3.00 0.000222897 0.000182784 0.112058 0.109189 30 2300 22 6.64007e+06 313950 526063. 1820.29 2.26 0.145191 0.137476 22546 126617 -1 1981 18 1358 2350 138922 31524 2.76797 2.76797 -112.105 -2.76797 0 0 666494. 2306.21 0.70 0.14 0.30 -1 -1 0.70 0.0127393 0.0113077 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 15.72 vpr 63.82 MiB -1 -1 0.34 21584 1 0.08 -1 -1 33836 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 25.7 MiB 2.00 1119 14375 4168 8092 2115 63.8 MiB 0.18 0.00 5.89333 -172.903 -5.89333 5.89333 2.95 0.000174271 0.000139019 0.0155371 0.0127587 32 3473 30 6.64007e+06 364182 554710. 1919.41 1.79 0.0792757 0.0711823 22834 132086 -1 2375 21 2390 3588 239228 57632 4.68934 4.68934 -158.968 -4.68934 0 0 701300. 2426.64 0.85 0.17 0.21 -1 -1 0.85 0.0137103 0.0122178 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 15.41 vpr 64.33 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 25.5 MiB 1.51 1191 15768 5423 8594 1751 64.3 MiB 0.20 0.00 5.08361 -153.384 -5.08361 5.08361 2.65 0.000201829 0.00016399 0.0172026 0.0140998 32 2811 23 6.64007e+06 339066 554710. 1919.41 1.06 0.112891 0.104888 22834 132086 -1 2395 21 1809 2783 211924 45230 4.56048 4.56048 -153.028 -4.56048 0 0 701300. 2426.64 1.02 0.22 0.34 -1 -1 1.02 0.0144434 0.0129432 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 15.13 vpr 64.00 MiB -1 -1 0.38 21280 1 0.11 -1 -1 33504 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1006 12661 3249 8412 1000 64.0 MiB 0.28 0.08 4.68524 -135.636 -4.68524 4.68524 3.06 0.000193995 0.000158496 0.0133197 0.0110247 32 2363 21 6.64007e+06 389298 554710. 1919.41 1.91 0.0461921 0.0391972 22834 132086 -1 2116 17 995 1684 110019 25787 3.33983 3.33983 -121.897 -3.33983 0 0 701300. 2426.64 0.84 0.03 0.52 -1 -1 0.84 0.00968633 0.00858817 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 16.22 vpr 63.91 MiB -1 -1 0.45 21280 1 0.15 -1 -1 33884 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 25.2 MiB 0.85 1070 14679 4337 8393 1949 63.9 MiB 0.33 0.00 4.36796 -120.329 -4.36796 4.36796 2.79 0.000159796 0.00012668 0.11478 0.0118549 32 2358 21 6.64007e+06 288834 554710. 1919.41 2.97 0.213476 0.0337542 22834 132086 -1 2004 21 1171 1731 118584 26899 3.84083 3.84083 -121.035 -3.84083 0 0 701300. 2426.64 1.00 0.21 0.30 -1 -1 1.00 0.0116537 0.0104155 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 15.83 vpr 64.25 MiB -1 -1 0.70 21584 1 0.10 -1 -1 33796 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.0 MiB 0.76 1249 19868 5433 11877 2558 64.3 MiB 0.60 0.28 5.1415 -166.814 -5.1415 5.1415 2.63 0.000248789 0.00020764 0.021394 0.0174957 32 2903 23 6.64007e+06 502320 554710. 1919.41 1.66 0.0654387 0.051033 22834 132086 -1 2475 21 1616 2412 153796 35137 3.92729 3.92729 -147.478 -3.92729 0 0 701300. 2426.64 0.85 0.17 0.37 -1 -1 0.85 0.0158723 0.014163 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 14.95 vpr 63.68 MiB -1 -1 0.31 21128 1 0.03 -1 -1 33912 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.9 MiB 0.18 803 5025 1005 3649 371 63.7 MiB 0.15 0.00 3.83987 -104.767 -3.83987 3.83987 3.06 0.000136515 0.000107519 0.00602699 0.00497481 30 1771 17 6.64007e+06 263718 526063. 1820.29 2.98 0.0300062 0.0252814 22546 126617 -1 1613 18 779 1393 81598 18704 2.73857 2.73857 -99.0848 -2.73857 0 0 666494. 2306.21 0.85 0.03 0.26 -1 -1 0.85 0.00875297 0.00774801 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 17.37 vpr 64.16 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33628 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 25.4 MiB 0.57 1162 10228 2647 6642 939 64.2 MiB 0.25 0.00 5.14752 -155.108 -5.14752 5.14752 2.87 0.000191031 0.000134154 0.0114316 0.00940382 26 2968 23 6.64007e+06 313950 477104. 1650.88 4.73 0.400076 0.134395 21682 110474 -1 2490 20 1430 2050 143308 32562 4.33708 4.33708 -147.453 -4.33708 0 0 585099. 2024.56 0.73 0.10 0.35 -1 -1 0.73 0.0675381 0.0661694 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 16.99 vpr 64.15 MiB -1 -1 0.68 21128 1 0.14 -1 -1 33876 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 25.4 MiB 0.51 1031 9643 2047 7145 451 64.1 MiB 0.48 0.00 4.0171 -121.518 -4.0171 4.0171 2.66 0.000161868 0.000130124 0.422908 0.301811 28 2635 19 6.64007e+06 414414 500653. 1732.36 3.82 0.453902 0.328294 21970 115934 -1 2235 20 1444 2574 170168 39668 3.08817 3.08817 -113.812 -3.08817 0 0 612192. 2118.31 0.87 0.12 0.09 -1 -1 0.87 0.0123934 0.0108191 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 15.58 vpr 63.88 MiB -1 -1 0.52 21432 1 0.04 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 25.2 MiB 0.06 912 5938 1237 4353 348 63.9 MiB 0.13 0.00 4.13756 -120.743 -4.13756 4.13756 2.45 0.000185711 0.000130447 0.00636428 0.00525361 32 2155 20 6.64007e+06 301392 554710. 1919.41 3.16 0.131566 0.0293915 22834 132086 -1 1880 19 1203 2210 129597 30645 3.47223 3.47223 -118.931 -3.47223 0 0 701300. 2426.64 1.18 0.14 0.33 -1 -1 1.18 0.0114014 0.0101009 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 17.29 vpr 64.19 MiB -1 -1 1.00 21584 1 0.30 -1 -1 33776 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.63 1105 14713 4479 8365 1869 64.2 MiB 0.21 0.00 4.89735 -144.949 -4.89735 4.89735 2.90 0.000168871 0.000134126 0.0156264 0.0127157 32 2397 20 6.64007e+06 301392 554710. 1919.41 2.78 0.131745 0.124274 22834 132086 -1 2149 17 1067 1469 112692 24874 3.50943 3.50943 -128.789 -3.50943 0 0 701300. 2426.64 1.22 0.03 0.36 -1 -1 1.22 0.0114101 0.0103052 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 15.48 vpr 64.20 MiB -1 -1 1.30 21432 1 0.12 -1 -1 33544 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 25.4 MiB 0.26 1031 9513 2066 6737 710 64.2 MiB 0.31 0.00 3.7565 -124.965 -3.7565 3.7565 2.77 0.000183549 0.000150674 0.0100477 0.00825976 32 2453 19 6.64007e+06 401856 554710. 1919.41 2.91 0.151794 0.0352663 22834 132086 -1 2103 18 1153 1864 122502 28274 2.98197 2.98197 -117.268 -2.98197 0 0 701300. 2426.64 1.07 0.20 0.45 -1 -1 1.07 0.0125097 0.0112065 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 16.27 vpr 64.25 MiB -1 -1 0.59 21432 1 0.18 -1 -1 33732 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1092 11616 2944 7805 867 64.3 MiB 0.26 0.00 4.776 -145.641 -4.776 4.776 2.43 0.000189539 0.000154761 0.0108773 0.00891344 30 2383 19 6.64007e+06 464646 526063. 1820.29 2.78 0.266334 0.259319 22546 126617 -1 2037 16 956 1502 76540 18706 3.47103 3.47103 -128.78 -3.47103 0 0 666494. 2306.21 1.37 0.03 0.48 -1 -1 1.37 0.0116124 0.0104606 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 20.02 vpr 63.93 MiB -1 -1 0.40 21432 1 0.14 -1 -1 34120 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.1 MiB 0.08 830 7023 1481 5311 231 63.9 MiB 0.24 0.00 4.19967 -120.859 -4.19967 4.19967 2.78 0.000157482 0.0001245 0.0069072 0.00562662 30 2090 21 6.64007e+06 364182 526063. 1820.29 3.23 0.0359906 0.0304569 22546 126617 -1 1637 18 960 1653 89780 21310 3.90303 3.90303 -116.463 -3.90303 0 0 666494. 2306.21 0.96 0.03 0.39 -1 -1 0.96 0.0135745 0.0124929 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 14.87 vpr 64.04 MiB -1 -1 0.78 21280 1 0.17 -1 -1 33648 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.67 1049 7498 1593 5357 548 64.0 MiB 0.35 0.17 5.183 -143.62 -5.183 5.183 2.42 0.000161802 0.000128753 0.00815827 0.00675629 28 2436 22 6.64007e+06 301392 500653. 1732.36 1.84 0.0955921 0.0900453 21970 115934 -1 2277 17 1337 1977 137691 32123 3.84302 3.84302 -134.69 -3.84302 0 0 612192. 2118.31 0.92 0.15 0.34 -1 -1 0.92 0.011473 0.0100386 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 15.98 vpr 64.27 MiB -1 -1 0.57 21432 1 0.03 -1 -1 33808 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 25.5 MiB 1.16 1063 10423 2679 6644 1100 64.3 MiB 0.12 0.00 5.14867 -149.951 -5.14867 5.14867 2.82 0.000187399 0.000152424 0.0114909 0.00944423 32 2827 22 6.64007e+06 313950 554710. 1919.41 2.18 0.0440822 0.0373757 22834 132086 -1 2429 19 1531 2436 167558 39145 4.38209 4.38209 -145.471 -4.38209 0 0 701300. 2426.64 0.92 0.11 0.55 -1 -1 0.92 0.0123503 0.0110317 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 15.48 vpr 64.17 MiB -1 -1 0.98 21736 1 0.12 -1 -1 33644 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 25.4 MiB 0.82 999 9347 2537 5990 820 64.2 MiB 0.34 0.00 4.30607 -131.887 -4.30607 4.30607 2.70 0.000191115 0.000154774 0.0115097 0.00955572 32 2621 18 6.64007e+06 276276 554710. 1919.41 2.05 0.0600607 0.0369295 22834 132086 -1 2135 21 1630 2937 190918 44267 3.45022 3.45022 -127.121 -3.45022 0 0 701300. 2426.64 0.96 0.09 0.46 -1 -1 0.96 0.0134535 0.0119462 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 14.97 vpr 63.26 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33688 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64780 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.8 MiB 0.30 707 15103 5445 7308 2350 63.3 MiB 0.32 0.00 3.43127 -100.64 -3.43127 3.43127 2.78 0.000145001 0.000111646 0.0123216 0.00982106 30 1671 23 6.64007e+06 301392 526063. 1820.29 2.26 0.0642437 0.0579831 22546 126617 -1 1434 19 724 1170 74656 16740 2.77677 2.77677 -95.239 -2.77677 0 0 666494. 2306.21 1.13 0.02 0.19 -1 -1 1.13 0.00849099 0.00751566 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 15.24 vpr 64.27 MiB -1 -1 0.49 21128 1 0.09 -1 -1 33948 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 25.5 MiB 0.78 879 16907 6072 8286 2549 64.3 MiB 0.33 0.00 4.05536 -136.666 -4.05536 4.05536 2.54 0.000169209 0.000133494 0.117933 0.114598 30 2336 24 6.64007e+06 276276 526063. 1820.29 3.01 0.148276 0.140395 22546 126617 -1 1899 27 1588 2334 172460 38388 3.44717 3.44717 -125.656 -3.44717 0 0 666494. 2306.21 0.85 0.22 0.19 -1 -1 0.85 0.165319 0.163663 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 18.30 vpr 64.05 MiB -1 -1 0.49 21432 1 0.07 -1 -1 33680 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 25.8 MiB 0.95 1391 17943 5776 10036 2131 64.0 MiB 0.57 0.10 5.4603 -163.746 -5.4603 5.4603 2.99 0.000200748 0.000161365 0.0197282 0.0159715 26 3829 37 6.64007e+06 364182 477104. 1650.88 5.10 0.12643 0.116478 21682 110474 -1 2903 21 2212 3431 279508 61047 4.77288 4.77288 -159.713 -4.77288 0 0 585099. 2024.56 0.78 0.21 0.26 -1 -1 0.78 0.0152005 0.0136309 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.80 vpr 63.93 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33988 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 25.2 MiB 0.66 899 8418 1747 6220 451 63.9 MiB 0.12 0.00 4.50246 -133.681 -4.50246 4.50246 2.39 0.00020338 0.000166538 0.0715383 0.069946 30 2214 19 6.64007e+06 401856 526063. 1820.29 2.72 0.123628 0.117608 22546 126617 -1 1757 20 950 1554 85616 20273 3.01637 3.01637 -112.762 -3.01637 0 0 666494. 2306.21 0.95 0.13 0.18 -1 -1 0.95 0.0128968 0.0115379 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 14.73 vpr 63.76 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33760 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.1 MiB 0.14 644 6718 1441 4611 666 63.8 MiB 0.13 0.00 3.45804 -101.577 -3.45804 3.45804 3.27 0.000146923 0.000116831 0.0066095 0.00537478 32 1668 19 6.64007e+06 326508 554710. 1919.41 2.63 0.134918 0.129651 22834 132086 -1 1494 17 978 1572 96866 23828 2.87177 2.87177 -100.543 -2.87177 0 0 701300. 2426.64 0.55 0.06 0.26 -1 -1 0.55 0.00896691 0.00797922 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 17.93 vpr 63.96 MiB -1 -1 0.53 21280 1 0.13 -1 -1 33744 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 25.8 MiB 1.27 1258 17023 5454 8906 2663 64.0 MiB 0.48 0.00 6.52766 -186.909 -6.52766 6.52766 2.44 0.00021071 0.000171224 0.0211344 0.0174472 32 3197 27 6.64007e+06 339066 554710. 1919.41 4.23 0.141289 0.0515818 22834 132086 -1 2657 22 2151 3021 219961 49163 5.34414 5.34414 -174.228 -5.34414 0 0 701300. 2426.64 0.73 0.22 0.44 -1 -1 0.73 0.0167397 0.0148986 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 15.80 vpr 64.05 MiB -1 -1 0.48 21280 1 0.10 -1 -1 33616 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 25.3 MiB 0.41 911 6091 1101 4753 237 64.1 MiB 0.16 0.00 4.60401 -138.195 -4.60401 4.60401 2.97 0.000169471 0.000135364 0.00679144 0.00568019 26 2378 47 6.64007e+06 414414 477104. 1650.88 4.03 0.145776 0.138443 21682 110474 -1 2062 21 1448 2243 152231 34470 3.70502 3.70502 -129.318 -3.70502 0 0 585099. 2024.56 0.51 0.13 0.18 -1 -1 0.51 0.0128087 0.0114353 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 16.23 vpr 63.68 MiB -1 -1 0.49 20672 1 0.13 -1 -1 33648 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.9 MiB 0.23 820 12375 3515 6889 1971 63.7 MiB 0.11 0.00 3.58247 -102.931 -3.58247 3.58247 3.69 0.000132157 0.000104545 0.0101192 0.00806529 26 1931 26 6.64007e+06 288834 477104. 1650.88 3.88 0.144927 0.139074 21682 110474 -1 1824 20 946 1569 120750 26711 2.80577 2.80577 -101.898 -2.80577 0 0 585099. 2024.56 0.98 0.13 0.19 -1 -1 0.98 0.00900647 0.00783961 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 22.26 vpr 63.98 MiB -1 -1 0.51 21432 1 0.07 -1 -1 33448 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1059 11573 2749 8139 685 64.0 MiB 0.20 0.00 5.58461 -136.884 -5.58461 5.58461 3.76 0.000259232 0.000217727 0.0117972 0.00968879 26 3084 26 6.64007e+06 426972 477104. 1650.88 9.48 0.0468167 0.0394879 21682 110474 -1 2444 21 1450 2812 206053 44907 4.99708 4.99708 -139.387 -4.99708 0 0 585099. 2024.56 1.14 0.33 0.27 -1 -1 1.14 0.0209779 0.015682 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 15.61 vpr 63.59 MiB -1 -1 0.40 21128 1 0.04 -1 -1 33856 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.9 MiB 0.12 692 7404 1537 5210 657 63.6 MiB 0.14 0.00 3.45624 -104.571 -3.45624 3.45624 3.37 0.000134082 0.000105468 0.00729556 0.00588096 28 1972 25 6.64007e+06 251160 500653. 1732.36 3.29 0.0323933 0.0271628 21970 115934 -1 1674 19 1142 1970 132697 34368 2.78177 2.78177 -106.065 -2.78177 0 0 612192. 2118.31 0.74 0.12 0.28 -1 -1 0.74 0.0141877 0.0131792 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 15.62 vpr 63.77 MiB -1 -1 0.70 21432 1 0.18 -1 -1 33912 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65296 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.1 MiB 0.19 661 13271 3491 8020 1760 63.8 MiB 0.36 0.00 4.08278 -107.388 -4.08278 4.08278 3.25 0.000154168 0.000122978 0.123273 0.121177 26 1782 23 6.64007e+06 414414 477104. 1650.88 3.28 0.2287 0.222436 21682 110474 -1 1560 18 844 1535 98500 23978 2.80376 2.80376 -99.1998 -2.80376 0 0 585099. 2024.56 0.92 0.03 0.43 -1 -1 0.92 0.0093052 0.00828504 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 16.32 vpr 64.20 MiB -1 -1 0.85 21432 1 0.11 -1 -1 33872 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 25.5 MiB 1.20 1051 14871 4721 7474 2676 64.2 MiB 0.26 0.00 4.65946 -136.547 -4.65946 4.65946 2.53 0.000172473 0.000137511 0.0152604 0.0124275 32 2635 26 6.64007e+06 326508 554710. 1919.41 3.76 0.466617 0.138305 22834 132086 -1 2198 18 1449 2156 149608 34012 3.61362 3.61362 -122.49 -3.61362 0 0 701300. 2426.64 1.02 0.21 0.31 -1 -1 1.02 0.0131463 0.0119163 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 14.33 vpr 64.03 MiB -1 -1 0.54 21432 1 0.17 -1 -1 33816 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.3 MiB 0.35 788 7108 1431 5495 182 64.0 MiB 0.15 0.00 4.47545 -132.712 -4.47545 4.47545 2.71 0.000178399 0.000143622 0.00841994 0.00695599 32 2149 22 6.64007e+06 301392 554710. 1919.41 2.20 0.0423484 0.0360955 22834 132086 -1 1836 22 1619 2505 199669 44463 3.78683 3.78683 -129.199 -3.78683 0 0 701300. 2426.64 1.41 0.32 0.28 -1 -1 1.41 0.013947 0.0124082 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 15.22 vpr 64.06 MiB -1 -1 0.50 21280 1 0.07 -1 -1 33692 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 25.5 MiB 0.51 1016 16652 4669 9876 2107 64.1 MiB 0.23 0.00 4.72138 -141.559 -4.72138 4.72138 2.57 0.000174713 0.000139391 0.126072 0.122738 32 2235 17 6.64007e+06 351624 554710. 1919.41 2.56 0.155042 0.147507 22834 132086 -1 2079 18 1060 1825 121513 27657 3.44402 3.44402 -125.897 -3.44402 0 0 701300. 2426.64 0.85 0.13 0.43 -1 -1 0.85 0.0115813 0.0104165 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 15.93 vpr 63.59 MiB -1 -1 0.42 21432 1 0.18 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.1 MiB 0.59 739 10406 2871 6114 1421 63.6 MiB 0.26 0.00 4.77715 -129.788 -4.77715 4.77715 2.54 0.000130957 0.000103633 0.0100465 0.00812432 26 2464 34 6.64007e+06 213486 477104. 1650.88 4.10 0.195544 0.188982 21682 110474 -1 1874 21 1194 1673 136353 31626 3.37823 3.37823 -117.547 -3.37823 0 0 585099. 2024.56 0.76 0.19 0.22 -1 -1 0.76 0.0104379 0.0092344 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 15.74 vpr 63.82 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33640 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.87 900 13966 4576 7232 2158 63.8 MiB 0.36 0.00 3.96736 -126.928 -3.96736 3.96736 3.04 0.000155506 0.000122347 0.0146695 0.0118338 32 2032 19 6.64007e+06 238602 554710. 1919.41 2.39 0.043114 0.0360288 22834 132086 -1 1796 19 1186 1711 121103 26352 3.03063 3.03063 -115.915 -3.03063 0 0 701300. 2426.64 1.01 0.07 0.24 -1 -1 1.01 0.0114055 0.0101854 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.57 vpr 64.00 MiB -1 -1 0.35 21584 1 0.07 -1 -1 33764 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 0.63 869 11759 2827 8114 818 64.0 MiB 0.19 0.00 3.56047 -98.9603 -3.56047 3.56047 3.06 0.000162187 0.000128606 0.0112268 0.00915129 26 2451 35 6.64007e+06 414414 477104. 1650.88 4.28 0.124398 0.117208 21682 110474 -1 1883 19 1046 1820 121515 28037 3.00517 3.00517 -101.278 -3.00517 0 0 585099. 2024.56 1.02 0.16 0.16 -1 -1 1.02 0.132944 0.131712 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 16.11 vpr 63.82 MiB -1 -1 0.59 21128 1 0.08 -1 -1 33768 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 25.2 MiB 0.64 923 12623 3556 7108 1959 63.8 MiB 0.29 0.00 4.42192 -107.107 -4.42192 4.42192 2.88 0.000154515 0.000123667 0.011005 0.00887745 26 2207 22 6.64007e+06 439530 477104. 1650.88 3.42 0.038703 0.0324006 21682 110474 -1 1846 21 1076 1977 144972 32111 3.60762 3.60762 -103.379 -3.60762 0 0 585099. 2024.56 0.71 0.04 0.18 -1 -1 0.71 0.0102956 0.00885177 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 16.31 vpr 63.78 MiB -1 -1 0.64 21584 1 0.14 -1 -1 33868 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 25.2 MiB 1.12 868 13152 3960 7274 1918 63.8 MiB 0.52 0.00 4.18997 -120.71 -4.18997 4.18997 3.07 0.000159962 0.000127892 0.458529 0.11426 30 1859 20 6.64007e+06 226044 526063. 1820.29 2.79 0.485888 0.137589 22546 126617 -1 1604 16 950 1642 89587 20645 2.88777 2.88777 -111.889 -2.88777 0 0 666494. 2306.21 0.74 0.13 0.49 -1 -1 0.74 0.107574 0.106506 108 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 17.94 vpr 63.89 MiB -1 -1 0.51 21128 1 0.03 -1 -1 33752 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 25.2 MiB 0.66 936 13105 4260 6168 2677 63.9 MiB 0.29 0.00 3.98936 -131.555 -3.98936 3.98936 3.43 0.000156337 0.000123429 0.0135869 0.0110377 32 2306 23 6.64007e+06 263718 554710. 1919.41 3.05 0.0426464 0.0355717 22834 132086 -1 1937 17 1188 1717 111112 25766 3.11317 3.11317 -120.016 -3.11317 0 0 701300. 2426.64 1.04 0.07 0.24 -1 -1 1.04 0.0119899 0.0109284 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.77 vpr 63.78 MiB -1 -1 0.52 21128 1 0.12 -1 -1 33872 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.21 1072 16295 4636 9641 2018 63.8 MiB 0.32 0.00 4.60183 -132.105 -4.60183 4.60183 2.76 0.000157977 0.000125883 0.0136171 0.0110441 32 2361 23 6.64007e+06 401856 554710. 1919.41 3.08 0.0425043 0.0357157 22834 132086 -1 2070 21 1298 2300 158131 35716 3.58143 3.58143 -121.596 -3.58143 0 0 701300. 2426.64 0.98 0.17 0.34 -1 -1 0.98 0.0120079 0.0107192 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 16.54 vpr 63.99 MiB -1 -1 0.47 21280 1 0.11 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 25.4 MiB 1.12 1141 10618 2698 7154 766 64.0 MiB 0.21 0.00 5.38066 -169.108 -5.38066 5.38066 2.36 0.000187965 0.000153004 0.0789252 0.0768864 32 2828 24 6.64007e+06 301392 554710. 1919.41 3.28 0.138799 0.133123 22834 132086 -1 2471 20 1618 2374 162388 37377 4.22469 4.22469 -153.669 -4.22469 0 0 701300. 2426.64 1.02 0.12 0.34 -1 -1 1.02 0.0126606 0.0112805 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 15.80 vpr 64.25 MiB -1 -1 0.42 21584 1 0.10 -1 -1 33844 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 0.48 1093 17423 4766 10394 2263 64.3 MiB 0.32 0.00 5.20872 -147.682 -5.20872 5.20872 2.77 0.000211969 0.000174725 0.120411 0.117243 32 2487 20 6.64007e+06 426972 554710. 1919.41 2.98 0.351042 0.342995 22834 132086 -1 2176 22 1357 2464 161896 37754 4.13968 4.13968 -138.72 -4.13968 0 0 701300. 2426.64 1.14 0.33 0.33 -1 -1 1.14 0.0139973 0.0123757 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 20.38 vpr 64.29 MiB -1 -1 0.38 21280 1 0.21 -1 -1 33796 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.28 1020 5976 1067 4592 317 64.3 MiB 0.23 0.00 4.48481 -139.253 -4.48481 4.48481 2.65 0.000271766 0.000232292 0.00762352 0.00621737 26 3037 34 6.64007e+06 464646 477104. 1650.88 9.27 0.278558 0.271695 21682 110474 -1 2532 19 1528 2617 199141 44832 4.02223 4.02223 -142.177 -4.02223 0 0 585099. 2024.56 0.63 0.09 0.23 -1 -1 0.63 0.0128737 0.0114939 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 19.84 vpr 63.53 MiB -1 -1 0.49 21128 1 0.34 -1 -1 34048 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.9 MiB 0.97 720 9706 2873 5961 872 63.5 MiB 0.10 0.00 3.87875 -113.748 -3.87875 3.87875 3.20 0.000142299 0.000113822 0.0097933 0.00797525 26 2012 21 6.64007e+06 238602 477104. 1650.88 4.02 0.201287 0.195543 21682 110474 -1 1680 20 1072 1796 126030 29211 2.77977 2.77977 -103.879 -2.77977 0 0 585099. 2024.56 0.92 0.04 0.22 -1 -1 0.92 0.0099439 0.00876209 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 20.88 vpr 64.00 MiB -1 -1 0.36 21432 1 0.05 -1 -1 33908 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 0.44 943 11431 3023 6401 2007 64.0 MiB 0.16 0.00 4.78844 -139.402 -4.78844 4.78844 3.11 0.000186671 0.000151959 0.0145199 0.0119405 32 2200 19 6.64007e+06 288834 554710. 1919.41 3.61 0.047531 0.040402 22834 132086 -1 1954 22 1661 2537 190798 42661 3.78083 3.78083 -134.259 -3.78083 0 0 701300. 2426.64 0.98 0.10 0.26 -1 -1 0.98 0.0132331 0.0116885 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 21.02 vpr 63.92 MiB -1 -1 0.71 20976 1 0.05 -1 -1 33728 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 25.3 MiB 0.60 1173 16170 4393 9836 1941 63.9 MiB 0.38 0.00 5.44166 -158.46 -5.44166 5.44166 2.91 0.000235363 0.000199151 0.0169446 0.0138694 26 3066 44 6.64007e+06 326508 477104. 1650.88 7.70 0.163087 0.154107 21682 110474 -1 2530 20 1510 2361 214573 45177 4.20469 4.20469 -146.692 -4.20469 0 0 585099. 2024.56 0.78 0.06 0.10 -1 -1 0.78 0.0454405 0.0440837 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 17.06 vpr 64.02 MiB -1 -1 1.00 21584 1 0.03 -1 -1 33772 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1218 15003 4568 8445 1990 64.0 MiB 0.48 0.00 5.37715 -156.36 -5.37715 5.37715 3.05 0.000182094 0.000146667 0.0149055 0.0122418 30 2584 21 6.64007e+06 376740 526063. 1820.29 3.43 0.0994961 0.0925531 22546 126617 -1 2097 19 945 1496 90295 19909 4.17788 4.17788 -140.711 -4.17788 0 0 666494. 2306.21 0.84 0.06 0.35 -1 -1 0.84 0.0118243 0.0106109 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 16.42 vpr 64.22 MiB -1 -1 0.91 21280 1 0.19 -1 -1 33648 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 25.5 MiB 0.67 896 9167 2079 5963 1125 64.2 MiB 0.24 0.00 4.45681 -129.866 -4.45681 4.45681 2.76 0.000180568 0.000142043 0.00790361 0.00646221 32 2155 17 6.64007e+06 414414 554710. 1919.41 2.83 0.0407063 0.0347473 22834 132086 -1 1914 20 1197 2020 120534 29155 3.30083 3.30083 -120.042 -3.30083 0 0 701300. 2426.64 1.57 0.18 0.40 -1 -1 1.57 0.0136899 0.012031 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 15.40 vpr 63.93 MiB -1 -1 0.44 21432 1 0.18 -1 -1 33708 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1055 11059 3307 6879 873 63.9 MiB 0.12 0.00 5.0056 -144.674 -5.0056 5.0056 2.88 0.000173519 0.000140153 0.0150455 0.0128531 32 2576 22 6.64007e+06 263718 554710. 1919.41 2.57 0.127457 0.120909 22834 132086 -1 2335 18 1326 2304 163091 36087 3.94982 3.94982 -137.537 -3.94982 0 0 701300. 2426.64 1.32 0.44 0.24 -1 -1 1.32 0.0118253 0.0105433 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 16.24 vpr 64.13 MiB -1 -1 0.48 21736 1 0.27 -1 -1 33816 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 25.5 MiB 0.62 991 14168 3722 8736 1710 64.1 MiB 0.30 0.00 4.90164 -138.394 -4.90164 4.90164 2.61 0.000168324 0.000134752 0.189668 0.187041 26 2502 24 6.64007e+06 389298 477104. 1650.88 2.33 0.222331 0.214911 21682 110474 -1 2063 15 1013 1655 107542 24963 3.75663 3.75663 -132.162 -3.75663 0 0 585099. 2024.56 1.15 0.11 0.27 -1 -1 1.15 0.0116906 0.0105427 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 13.28 vpr 63.55 MiB -1 -1 0.60 20976 1 0.19 -1 -1 33912 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65072 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.22 698 12416 3955 6725 1736 63.5 MiB 0.17 0.00 3.88758 -112.897 -3.88758 3.88758 2.64 0.000133485 0.00010512 0.0114222 0.00915776 28 1787 17 6.64007e+06 188370 500653. 1732.36 3.09 0.0347648 0.0292322 21970 115934 -1 1611 20 959 1457 110874 25319 2.99497 2.99497 -107.803 -2.99497 0 0 612192. 2118.31 0.68 0.14 0.13 -1 -1 0.68 0.00911602 0.00808967 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 16.52 vpr 64.19 MiB -1 -1 0.48 21432 1 0.09 -1 -1 33704 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 25.4 MiB 0.67 964 13455 3168 8058 2229 64.2 MiB 0.27 0.00 4.65236 -138.008 -4.65236 4.65236 2.98 0.00016497 0.000131649 0.0127342 0.010377 32 2137 22 6.64007e+06 401856 554710. 1919.41 2.40 0.0733045 0.0661312 22834 132086 -1 1819 19 1275 2138 130681 30237 3.85002 3.85002 -129.858 -3.85002 0 0 701300. 2426.64 1.02 0.22 0.24 -1 -1 1.02 0.0114272 0.0101271 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 15.90 vpr 64.29 MiB -1 -1 0.59 21736 1 0.18 -1 -1 33792 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1060 10103 2308 6560 1235 64.3 MiB 0.34 0.00 4.84241 -152.382 -4.84241 4.84241 2.76 0.000180796 0.000145089 0.0122441 0.0100669 32 2600 21 6.64007e+06 276276 554710. 1919.41 3.19 0.207791 0.20069 22834 132086 -1 2330 23 1974 3186 228432 52206 3.99923 3.99923 -143.607 -3.99923 0 0 701300. 2426.64 1.15 0.22 0.26 -1 -1 1.15 0.0148665 0.013219 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 15.54 vpr 63.82 MiB -1 -1 0.41 21280 1 0.10 -1 -1 33720 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 25.1 MiB 0.63 948 13992 4317 7911 1764 63.8 MiB 0.24 0.00 4.31784 -124.811 -4.31784 4.31784 2.96 0.000138163 0.000110108 0.0297505 0.0271951 32 2139 22 6.64007e+06 251160 554710. 1919.41 3.01 0.055222 0.0489866 22834 132086 -1 1864 17 941 1225 86209 19856 3.21283 3.21283 -114.944 -3.21283 0 0 701300. 2426.64 1.21 0.11 0.28 -1 -1 1.21 0.00974595 0.00874286 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 15.95 vpr 63.65 MiB -1 -1 0.44 21128 1 0.14 -1 -1 33644 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.14 781 9417 2297 6451 669 63.7 MiB 0.15 0.00 3.81035 -110.01 -3.81035 3.81035 3.05 0.000126892 0.000100235 0.108806 0.107235 32 1781 20 6.64007e+06 263718 554710. 1919.41 2.74 0.239682 0.234428 22834 132086 -1 1576 20 946 1624 103938 23927 2.61437 2.61437 -99.4048 -2.61437 0 0 701300. 2426.64 0.83 0.21 0.52 -1 -1 0.83 0.00918862 0.00810276 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 19.82 vpr 64.23 MiB -1 -1 0.44 21584 1 0.24 -1 -1 33980 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 25.7 MiB 1.01 895 10542 2890 7065 587 64.2 MiB 0.18 0.00 5.11544 -156.548 -5.11544 5.11544 2.76 0.00018834 0.000155804 0.0250306 0.0230352 26 3084 38 6.64007e+06 326508 477104. 1650.88 6.97 0.100407 0.0925314 21682 110474 -1 2430 24 1928 2531 182863 44364 4.40329 4.40329 -157.453 -4.40329 0 0 585099. 2024.56 1.00 0.15 0.28 -1 -1 1.00 0.0142369 0.0126004 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 16.84 vpr 64.21 MiB -1 -1 0.45 21432 1 0.20 -1 -1 33696 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1180 8283 2004 5658 621 64.2 MiB 0.46 0.00 4.91139 -150.395 -4.91139 4.91139 2.94 0.000164407 0.00013181 0.00923235 0.00764545 26 3166 31 6.64007e+06 364182 477104. 1650.88 3.53 0.0641874 0.0573494 21682 110474 -1 2596 21 1653 2552 195854 42702 4.72769 4.72769 -160.09 -4.72769 0 0 585099. 2024.56 0.90 0.16 0.44 -1 -1 0.90 0.0118917 0.0105273 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 16.15 vpr 64.20 MiB -1 -1 0.72 21432 1 0.17 -1 -1 33824 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 0.37 1180 11932 3220 7881 831 64.2 MiB 0.41 0.00 5.49089 -148.419 -5.49089 5.49089 2.66 8.2603e-05 6.6418e-05 0.0107358 0.00881626 26 3069 24 6.64007e+06 452088 477104. 1650.88 4.66 0.0456321 0.0388008 21682 110474 -1 2506 19 1528 2735 230515 47745 4.29109 4.29109 -144.084 -4.29109 0 0 585099. 2024.56 0.89 0.15 0.20 -1 -1 0.89 0.10888 0.107563 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 15.13 vpr 63.76 MiB -1 -1 0.51 21432 1 0.13 -1 -1 33872 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.46 874 9892 2506 6506 880 63.8 MiB 0.17 0.00 3.51924 -104.27 -3.51924 3.51924 3.24 0.000150198 0.000118987 0.00985718 0.008063 30 1829 20 6.64007e+06 401856 526063. 1820.29 2.48 0.0541673 0.0483061 22546 126617 -1 1618 20 1032 1862 89124 21789 2.85117 2.85117 -98.5541 -2.85117 0 0 666494. 2306.21 0.96 0.18 0.23 -1 -1 0.96 0.0106496 0.00932537 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 15.57 vpr 63.57 MiB -1 -1 0.49 21128 1 0.15 -1 -1 33992 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.9 MiB 0.11 565 12120 3265 7503 1352 63.6 MiB 0.26 0.01 3.49724 -93.0073 -3.49724 3.49724 3.21 0.000207145 0.000119599 0.140462 0.0104618 28 1515 21 6.64007e+06 263718 500653. 1732.36 3.35 0.163059 0.0294724 21970 115934 -1 1345 20 1021 1500 104776 24885 2.81977 2.81977 -92.0925 -2.81977 0 0 612192. 2118.31 0.87 0.11 0.29 -1 -1 0.87 0.00902791 0.0079083 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.69 vpr 64.15 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.0 MiB 0.80 1325 16572 5453 8679 2440 64.1 MiB 0.65 0.00 4.38715 -140.393 -4.38715 4.38715 3.08 0.000213999 0.000174654 0.0200508 0.0165729 30 3034 21 6.64007e+06 326508 526063. 1820.29 4.10 0.0571257 0.0483967 22546 126617 -1 2563 21 1577 2693 157209 34685 3.79562 3.79562 -131.292 -3.79562 0 0 666494. 2306.21 0.81 0.09 0.37 -1 -1 0.81 0.0150537 0.0134463 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.09 vpr 64.05 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33820 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 25.4 MiB 1.09 1050 12371 3182 7852 1337 64.0 MiB 0.37 0.00 5.43386 -156.366 -5.43386 5.43386 2.63 0.000189602 0.000151836 0.0145547 0.0119459 32 2552 19 6.64007e+06 288834 554710. 1919.41 3.96 0.0833293 0.0760052 22834 132086 -1 2272 19 1328 2229 177284 38269 4.53868 4.53868 -149.07 -4.53868 0 0 701300. 2426.64 0.92 0.33 0.22 -1 -1 0.92 0.01275 0.0112861 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 15.00 vpr 63.86 MiB -1 -1 0.81 21280 1 0.09 -1 -1 33900 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 25.2 MiB 0.81 933 12503 3459 6938 2106 63.9 MiB 0.31 0.11 4.6127 -134.066 -4.6127 4.6127 2.69 0.000156579 0.000123722 0.0140047 0.011438 32 2147 19 6.64007e+06 238602 554710. 1919.41 2.51 0.0444918 0.037324 22834 132086 -1 1840 19 1044 1556 100816 23869 3.64062 3.64062 -129.026 -3.64062 0 0 701300. 2426.64 1.20 0.07 0.60 -1 -1 1.20 0.0114341 0.0102186 128 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 16.85 vpr 63.99 MiB -1 -1 1.27 21432 1 0.32 -1 -1 33896 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.14 1025 10744 3084 7154 506 64.0 MiB 0.53 0.00 5.21217 -134.409 -5.21217 5.21217 2.61 0.000187256 0.000150924 0.0104094 0.00850576 30 2159 18 6.64007e+06 376740 526063. 1820.29 2.98 0.330271 0.324297 22546 126617 -1 1910 16 853 1431 84040 19166 3.71062 3.71062 -116.778 -3.71062 0 0 666494. 2306.21 1.08 0.18 0.21 -1 -1 1.08 0.0102292 0.00920341 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 15.29 vpr 63.95 MiB -1 -1 0.75 21736 1 0.31 -1 -1 33644 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 25.4 MiB 0.70 1033 6757 1363 4872 522 64.0 MiB 0.17 0.01 5.06104 -138.95 -5.06104 5.06104 2.42 0.0002631 0.000224286 0.00784096 0.00647057 26 2561 28 6.64007e+06 426972 477104. 1650.88 3.10 0.106525 0.100029 21682 110474 -1 2314 22 1657 2659 173769 40695 3.98123 3.98123 -132.364 -3.98123 0 0 585099. 2024.56 1.12 0.28 0.10 -1 -1 1.12 0.0156275 0.0138381 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 14.55 vpr 64.01 MiB -1 -1 0.53 21280 1 0.22 -1 -1 33848 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.38 1000 10383 2504 6736 1143 64.0 MiB 0.20 0.00 3.67989 -112.635 -3.67989 3.67989 2.51 0.000150293 0.000120629 0.0748244 0.0730702 32 2161 21 6.64007e+06 389298 554710. 1919.41 2.77 0.105066 0.0990775 22834 132086 -1 1932 19 1040 1868 122635 27445 2.80577 2.80577 -103.61 -2.80577 0 0 701300. 2426.64 0.95 0.06 0.21 -1 -1 0.95 0.0112735 0.0100274 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 16.65 vpr 64.26 MiB -1 -1 0.55 21128 1 0.11 -1 -1 33572 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 25.4 MiB 0.94 1181 8207 1889 5862 456 64.3 MiB 0.45 0.00 5.21333 -162.921 -5.21333 5.21333 2.80 0.000172101 0.000137943 0.0097321 0.00814023 32 2904 26 6.64007e+06 313950 554710. 1919.41 2.70 0.0427823 0.0363362 22834 132086 -1 2532 20 1642 2507 198128 48981 4.24869 4.24869 -149.377 -4.24869 0 0 701300. 2426.64 1.25 0.29 0.70 -1 -1 1.25 0.0382263 0.0117094 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 16.37 vpr 64.29 MiB -1 -1 0.94 21280 1 0.16 -1 -1 33556 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 25.5 MiB 0.47 1091 17268 5141 9536 2591 64.3 MiB 0.26 0.00 4.75546 -148.32 -4.75546 4.75546 2.55 0.000185292 0.000148593 0.101831 0.0989298 26 2731 18 6.64007e+06 452088 477104. 1650.88 3.44 0.353629 0.345733 21682 110474 -1 2313 20 1346 2148 152692 34194 3.49323 3.49323 -133.83 -3.49323 0 0 585099. 2024.56 0.72 0.30 0.29 -1 -1 0.72 0.265859 0.264415 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 14.11 vpr 63.61 MiB -1 -1 0.50 21280 1 0.05 -1 -1 33980 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.1 MiB 0.36 588 12030 3358 7039 1633 63.6 MiB 0.17 0.00 3.76255 -108.245 -3.76255 3.76255 2.45 0.000137363 0.00010971 0.0112015 0.00903923 30 1298 16 6.64007e+06 213486 526063. 1820.29 3.23 0.115989 0.110395 22546 126617 -1 1213 18 814 1184 79092 17906 2.64337 2.64337 -97.4669 -2.64337 0 0 666494. 2306.21 0.67 0.08 0.23 -1 -1 0.67 0.0087734 0.00776095 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 15.77 vpr 63.81 MiB -1 -1 0.44 21584 1 0.15 -1 -1 33936 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.69 949 13477 3807 7672 1998 63.8 MiB 0.39 0.00 4.03956 -129.699 -4.03956 4.03956 3.13 0.000178409 0.000146207 0.0128127 0.0103408 32 2133 21 6.64007e+06 263718 554710. 1919.41 3.09 0.0407616 0.0340457 22834 132086 -1 1934 20 1418 1884 150949 33366 3.26203 3.26203 -124.39 -3.26203 0 0 701300. 2426.64 0.99 0.08 0.23 -1 -1 0.99 0.0108118 0.00962557 117 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 14.60 vpr 64.04 MiB -1 -1 0.42 21584 1 0.08 -1 -1 34012 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.4 MiB 0.14 995 9844 2080 6870 894 64.0 MiB 0.24 0.00 4.75944 -128.498 -4.75944 4.75944 2.95 0.000175967 0.000144685 0.0967692 0.0950938 26 2592 22 6.64007e+06 464646 477104. 1650.88 3.44 0.160522 0.121809 21682 110474 -1 2114 23 1575 2842 209005 45595 4.04523 4.04523 -131.074 -4.04523 0 0 585099. 2024.56 0.62 0.46 0.16 -1 -1 0.62 0.414673 0.41311 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 15.65 vpr 63.80 MiB -1 -1 0.37 21280 1 0.11 -1 -1 33852 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 25.1 MiB 0.82 751 14303 4644 7433 2226 63.8 MiB 0.16 0.00 4.32884 -115.621 -4.32884 4.32884 2.49 0.000132445 0.000104318 0.0129675 0.0104452 32 1888 19 6.64007e+06 276276 554710. 1919.41 3.29 0.0686792 0.0626623 22834 132086 -1 1653 16 948 1246 90708 21403 3.22283 3.22283 -105.877 -3.22283 0 0 701300. 2426.64 0.86 0.14 0.45 -1 -1 0.86 0.00847928 0.00758461 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 16.18 vpr 63.72 MiB -1 -1 0.35 21432 1 0.04 -1 -1 33668 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 0.83 868 10406 2691 6847 868 63.7 MiB 0.17 0.00 3.9428 -121.707 -3.9428 3.9428 2.93 0.000150632 0.000117836 0.0102124 0.00821785 32 1928 20 6.64007e+06 213486 554710. 1919.41 3.81 0.133181 0.0305639 22834 132086 -1 1672 22 1231 2092 145429 32765 2.92497 2.92497 -111.874 -2.92497 0 0 701300. 2426.64 0.63 0.10 0.41 -1 -1 0.63 0.0105003 0.00928887 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 15.97 vpr 64.21 MiB -1 -1 0.31 21280 1 0.20 -1 -1 33684 -1 -1 36 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 0.52 875 8079 1601 6137 341 64.2 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 2.99 0.000183268 0.000147059 0.0401663 0.0386513 28 2428 45 6.64007e+06 452088 500653. 1732.36 3.79 0.181188 0.173418 21970 115934 -1 1818 21 1389 2252 139313 34864 3.21357 3.21357 -119.357 -3.21357 0 0 612192. 2118.31 0.78 0.10 0.50 -1 -1 0.78 0.0126824 0.0111577 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 14.58 vpr 63.63 MiB -1 -1 0.55 21432 1 0.11 -1 -1 33768 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 24.9 MiB 0.55 883 11423 3367 6862 1194 63.6 MiB 0.29 0.00 4.01573 -121.888 -4.01573 4.01573 2.96 0.0001487 0.000120504 0.0105262 0.00848528 26 2105 22 6.64007e+06 251160 477104. 1650.88 2.29 0.0349779 0.0291737 21682 110474 -1 1781 20 1084 1550 105200 24764 3.38823 3.38823 -119.287 -3.38823 0 0 585099. 2024.56 0.89 0.17 0.26 -1 -1 0.89 0.00999951 0.00880361 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 16.48 vpr 64.08 MiB -1 -1 0.42 21584 1 0.07 -1 -1 33512 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 25.4 MiB 0.52 851 8418 1678 5980 760 64.1 MiB 0.74 0.00 3.82753 -117.666 -3.82753 3.82753 2.48 0.000178865 0.0001431 0.0407285 0.0391382 28 2323 24 6.64007e+06 401856 500653. 1732.36 3.96 0.264858 0.258516 21970 115934 -1 1878 17 1091 1908 119655 28509 2.81677 2.81677 -108.693 -2.81677 0 0 612192. 2118.31 0.86 0.08 0.17 -1 -1 0.86 0.0507462 0.0495496 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.90 vpr 64.11 MiB -1 -1 0.39 21432 1 0.17 -1 -1 33688 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.5 MiB 0.61 892 11111 2659 7794 658 64.1 MiB 0.17 0.00 4.34696 -134.35 -4.34696 4.34696 3.12 0.000197662 0.000162007 0.110856 0.108595 30 2086 20 6.64007e+06 401856 526063. 1820.29 3.06 0.144481 0.137365 22546 126617 -1 1791 17 945 1349 73917 18038 3.11862 3.11862 -122.994 -3.11862 0 0 666494. 2306.21 0.97 0.04 0.25 -1 -1 0.97 0.0151819 0.0139036 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 16.20 vpr 63.65 MiB -1 -1 0.43 21280 1 0.04 -1 -1 33620 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.1 MiB 0.47 616 7781 1621 5271 889 63.7 MiB 0.27 0.00 3.3851 -100.212 -3.3851 3.3851 3.15 0.000151759 0.000119344 0.00912829 0.00749073 30 1724 20 6.64007e+06 213486 526063. 1820.29 2.90 0.304152 0.298238 22546 126617 -1 1320 19 756 1168 61265 15612 2.61977 2.61977 -93.8432 -2.61977 0 0 666494. 2306.21 1.11 0.11 0.31 -1 -1 1.11 0.0293754 0.00905729 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 16.57 vpr 63.68 MiB -1 -1 0.31 21280 1 0.03 -1 -1 33392 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.63 936 9013 2313 6000 700 63.7 MiB 0.41 0.00 4.41384 -137.504 -4.41384 4.41384 2.87 0.000190214 0.000144917 0.00915207 0.00745215 30 2092 23 6.64007e+06 263718 526063. 1820.29 3.31 0.0365093 0.03072 22546 126617 -1 1867 19 993 1485 95205 21004 3.29183 3.29183 -120.954 -3.29183 0 0 666494. 2306.21 1.56 0.18 0.35 -1 -1 1.56 0.0103605 0.00924106 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 14.70 vpr 64.02 MiB -1 -1 0.70 21280 1 0.20 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 25.4 MiB 0.47 1056 7959 1858 5419 682 64.0 MiB 0.18 0.00 4.69663 -140.702 -4.69663 4.69663 2.31 0.000153511 0.000123346 0.00851277 0.00700839 28 2595 21 6.64007e+06 288834 500653. 1732.36 2.73 0.0367207 0.0312071 21970 115934 -1 2216 20 1459 2035 137683 32875 3.69682 3.69682 -132.71 -3.69682 0 0 612192. 2118.31 0.79 0.36 0.21 -1 -1 0.79 0.0111409 0.00992577 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 16.24 vpr 63.99 MiB -1 -1 0.53 21584 1 0.20 -1 -1 33736 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 25.2 MiB 0.80 961 12753 3692 7785 1276 64.0 MiB 0.28 0.00 4.75755 -125.045 -4.75755 4.75755 2.71 0.000156979 0.000123656 0.01285 0.0105713 32 1977 13 6.64007e+06 364182 554710. 1919.41 2.23 0.150423 0.144611 22834 132086 -1 1820 14 789 1389 83069 19772 3.08843 3.08843 -107.515 -3.08843 0 0 701300. 2426.64 1.40 0.03 0.19 -1 -1 1.40 0.00943411 0.00856831 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 20.80 vpr 64.22 MiB -1 -1 0.79 21432 1 0.10 -1 -1 33788 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 25.6 MiB 1.25 849 9058 1982 6341 735 64.2 MiB 0.23 0.00 5.51792 -167.558 -5.51792 5.51792 2.51 0.000208254 0.000166167 0.0700767 0.0681008 34 2671 46 6.64007e+06 301392 585099. 2024.56 6.11 0.137989 0.125942 23122 138558 -1 1962 23 1487 2165 142883 37471 4.39509 4.39509 -151.818 -4.39509 0 0 742403. 2568.87 1.30 0.12 0.52 -1 -1 1.30 0.0150196 0.0134157 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 15.99 vpr 63.51 MiB -1 -1 0.47 20976 1 0.11 -1 -1 33632 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.05 584 8131 1674 5502 955 63.5 MiB 0.03 0.00 3.68846 -96.2539 -3.68846 3.68846 3.24 0.000127466 9.9072e-05 0.00725995 0.00590741 32 1613 22 6.64007e+06 226044 554710. 1919.41 2.46 0.178637 0.173886 22834 132086 -1 1240 15 632 986 57380 15840 2.66977 2.66977 -91.5146 -2.66977 0 0 701300. 2426.64 1.34 0.07 0.29 -1 -1 1.34 0.0075319 0.00680643 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 16.90 vpr 64.20 MiB -1 -1 0.54 21584 1 0.15 -1 -1 33824 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 25.5 MiB 0.45 954 8873 1826 6622 425 64.2 MiB 0.17 0.00 4.24713 -140.193 -4.24713 4.24713 3.40 0.00022127 0.000181625 0.0104051 0.0086204 28 2512 22 6.64007e+06 426972 500653. 1732.36 3.22 0.128206 0.12116 21970 115934 -1 2185 21 1637 2506 175068 40804 4.00223 4.00223 -143.716 -4.00223 0 0 612192. 2118.31 0.73 0.20 0.35 -1 -1 0.73 0.0130283 0.0114867 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 16.35 vpr 64.05 MiB -1 -1 0.99 21280 1 0.17 -1 -1 33576 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 25.2 MiB 0.59 874 12856 4533 6666 1657 64.1 MiB 0.30 0.00 3.54047 -123.335 -3.54047 3.54047 2.60 0.000161236 0.000127686 0.132267 0.0117055 32 1862 20 6.64007e+06 213486 554710. 1919.41 2.31 0.162114 0.0371195 22834 132086 -1 1645 20 1353 1998 119332 28553 3.00817 3.00817 -121.982 -3.00817 0 0 701300. 2426.64 1.06 0.18 0.30 -1 -1 1.06 0.0113663 0.010009 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 15.09 vpr 64.07 MiB -1 -1 0.36 20976 1 0.03 -1 -1 33420 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 25.5 MiB 0.53 1033 11265 2868 7471 926 64.1 MiB 0.19 0.00 4.43584 -135.56 -4.43584 4.43584 2.91 0.000186085 0.000147101 0.0116245 0.00946355 28 2195 15 6.64007e+06 401856 500653. 1732.36 3.22 0.0421695 0.0355507 21970 115934 -1 2035 16 913 1446 97781 22288 3.21363 3.21363 -116.553 -3.21363 0 0 612192. 2118.31 0.84 0.10 0.28 -1 -1 0.84 0.0106319 0.00953271 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 16.76 vpr 63.82 MiB -1 -1 0.86 21432 1 0.13 -1 -1 33640 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 25.7 MiB 0.99 1320 13963 4550 7177 2236 63.8 MiB 0.24 0.00 6.49387 -193.286 -6.49387 6.49387 2.87 0.000194217 0.000156387 0.01635 0.0134433 30 3485 22 6.64007e+06 339066 526063. 1820.29 3.93 0.189669 0.181758 22546 126617 -1 2715 20 1534 2298 173997 36446 4.99934 4.99934 -169.413 -4.99934 0 0 666494. 2306.21 0.87 0.16 0.17 -1 -1 0.87 0.0665781 0.0651215 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 16.90 vpr 63.50 MiB -1 -1 0.40 20976 1 0.14 -1 -1 33400 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 24.8 MiB 0.68 724 10744 2773 6965 1006 63.5 MiB 0.23 0.00 3.31307 -103.25 -3.31307 3.31307 3.23 0.000123634 9.7195e-05 0.0830098 0.00696291 26 1680 19 6.64007e+06 226044 477104. 1650.88 3.36 0.104242 0.0247589 21682 110474 -1 1567 18 773 964 80532 17725 2.39717 2.39717 -95.4318 -2.39717 0 0 585099. 2024.56 0.73 0.15 0.18 -1 -1 0.73 0.0187949 0.0179225 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 15.28 vpr 63.73 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33488 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.1 MiB 0.27 685 8544 2127 5949 468 63.7 MiB 0.24 0.00 4.40355 -125.154 -4.40355 4.40355 2.80 0.000164 0.000134532 0.0849194 0.083076 30 1556 19 6.64007e+06 200928 526063. 1820.29 3.10 0.109862 0.1043 22546 126617 -1 1335 19 701 1179 78223 17393 3.07117 3.07117 -110.206 -3.07117 0 0 666494. 2306.21 1.39 0.18 0.36 -1 -1 1.39 0.010628 0.00955447 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 15.61 vpr 63.82 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33980 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.28 882 10687 2740 7287 660 63.8 MiB 0.17 0.00 3.50309 -113.66 -3.50309 3.50309 2.47 0.000147526 0.000116382 0.0111376 0.00906021 32 2027 19 6.64007e+06 263718 554710. 1919.41 3.42 0.0369167 0.0310546 22834 132086 -1 1870 19 1088 2046 147915 32093 2.80877 2.80877 -108.544 -2.80877 0 0 701300. 2426.64 1.01 0.07 0.19 -1 -1 1.01 0.00994882 0.00874326 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 16.61 vpr 63.43 MiB -1 -1 0.32 20976 1 0.03 -1 -1 33852 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64956 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.8 MiB 0.19 444 9966 3251 4492 2223 63.4 MiB 0.03 0.00 3.40927 -77.6354 -3.40927 3.40927 2.92 0.00010652 8.1951e-05 0.00771971 0.0060583 28 1404 24 6.64007e+06 339066 500653. 1732.36 3.88 0.0717446 0.0238516 21970 115934 -1 1178 23 799 1357 104165 31238 3.06137 3.06137 -79.3158 -3.06137 0 0 612192. 2118.31 0.83 0.03 0.17 -1 -1 0.83 0.00863211 0.00749013 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 16.13 vpr 63.93 MiB -1 -1 0.43 21432 1 0.09 -1 -1 33688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.71 946 11431 2748 6950 1733 63.9 MiB 0.16 0.00 4.33313 -131.181 -4.33313 4.33313 2.57 0.000157662 0.000126492 0.0132089 0.010899 32 2425 18 6.64007e+06 263718 554710. 1919.41 3.09 0.0452021 0.0382412 22834 132086 -1 2140 19 1325 2354 148542 35047 3.66863 3.66863 -128.103 -3.66863 0 0 701300. 2426.64 1.52 0.09 0.51 -1 -1 1.52 0.0139287 0.0124668 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.22 vpr 64.34 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33896 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 25.7 MiB 0.54 940 9773 2306 6923 544 64.3 MiB 0.31 0.00 4.49598 -141.547 -4.49598 4.49598 2.58 0.000191051 0.000155014 0.087405 0.00863012 30 2139 21 6.64007e+06 439530 526063. 1820.29 2.85 0.123488 0.0395336 22546 126617 -1 1891 19 1291 1959 105840 25694 3.20583 3.20583 -124.668 -3.20583 0 0 666494. 2306.21 1.41 0.21 0.37 -1 -1 1.41 0.194145 0.192668 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 17.19 vpr 63.97 MiB -1 -1 0.70 21584 1 0.08 -1 -1 33496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 25.2 MiB 0.90 1148 17347 5352 9497 2498 64.0 MiB 0.79 0.00 5.20258 -155.665 -5.20258 5.20258 2.86 0.000179561 0.000145027 0.100205 0.0968258 28 2697 22 6.65987e+06 380340 500653. 1732.36 2.92 0.13314 0.125092 21970 115934 -1 2246 23 1620 2604 184581 41380 4.01751 4.01751 -143.08 -4.01751 0 0 612192. 2118.31 0.69 0.26 0.43 -1 -1 0.69 0.0149371 0.0131213 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 17.44 vpr 63.81 MiB -1 -1 0.85 21432 1 0.07 -1 -1 33596 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 865 5945 1132 3979 834 63.8 MiB 0.24 0.00 5.09836 -146.088 -5.09836 5.09836 3.04 0.000203994 0.000165875 0.00854599 0.00715284 30 2282 23 6.65987e+06 304272 526063. 1820.29 3.06 0.217249 0.211132 22546 126617 -1 1733 18 1185 1767 92489 24279 4.35403 4.35403 -145.141 -4.35403 0 0 666494. 2306.21 0.86 0.12 0.33 -1 -1 0.86 0.0124048 0.0111966 140 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 15.43 vpr 63.71 MiB -1 -1 0.55 21584 1 0.07 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.1 MiB 0.55 1073 15639 4872 8576 2191 63.7 MiB 0.15 0.00 4.07261 -120.811 -4.07261 4.07261 2.27 0.000150452 0.000119432 0.0148377 0.012055 32 2319 23 6.65987e+06 291594 554710. 1919.41 2.83 0.343985 0.212468 22834 132086 -1 2108 20 1368 1925 135511 32120 3.46811 3.46811 -117.404 -3.46811 0 0 701300. 2426.64 1.51 0.13 0.44 -1 -1 1.51 0.0115277 0.0103075 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 15.48 vpr 63.94 MiB -1 -1 0.58 20976 1 0.13 -1 -1 33576 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.20 937 15298 4951 7764 2583 63.9 MiB 0.20 0.00 4.29337 -115.569 -4.29337 4.29337 1.89 0.000148416 0.000117747 0.0141417 0.0113086 32 2433 26 6.65987e+06 342306 554710. 1919.41 2.81 0.0893313 0.0822416 22834 132086 -1 2062 24 1536 2855 239531 54215 3.41691 3.41691 -112.046 -3.41691 0 0 701300. 2426.64 1.41 0.16 0.31 -1 -1 1.41 0.0133226 0.011774 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 15.75 vpr 63.88 MiB -1 -1 0.54 21280 1 0.19 -1 -1 33704 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.48 1058 13911 3755 8078 2078 63.9 MiB 0.17 0.00 4.32255 -126.417 -4.32255 4.32255 2.48 0.000159411 0.000127659 0.0691167 0.0663448 32 2597 23 6.65987e+06 291594 554710. 1919.41 2.73 0.101975 0.0946679 22834 132086 -1 2295 23 1608 3109 256524 56322 3.66831 3.66831 -122.767 -3.66831 0 0 701300. 2426.64 0.96 0.13 0.32 -1 -1 0.96 0.336612 0.335078 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 15.20 vpr 64.04 MiB -1 -1 0.76 21280 1 0.05 -1 -1 33528 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 25.4 MiB 0.34 958 9421 2191 6624 606 64.0 MiB 0.30 0.00 3.34181 -114.642 -3.34181 3.34181 2.49 0.000179488 0.000143496 0.0103435 0.00850247 32 2455 20 6.65987e+06 418374 554710. 1919.41 2.26 0.0423713 0.0352516 22834 132086 -1 2113 22 1382 2191 144878 35192 2.81871 2.81871 -111.688 -2.81871 0 0 701300. 2426.64 0.82 0.08 0.50 -1 -1 0.82 0.0471964 0.0454126 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 14.66 vpr 63.43 MiB -1 -1 0.44 21128 1 0.17 -1 -1 34156 -1 -1 18 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64952 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 24.8 MiB 0.46 714 11813 3623 6674 1516 63.4 MiB 0.29 0.00 3.92432 -101.72 -3.92432 3.92432 2.69 0.000126252 9.8073e-05 0.185001 0.182709 32 1461 21 6.65987e+06 228204 554710. 1919.41 2.19 0.208822 0.202992 22834 132086 -1 1355 22 821 1483 100332 23866 2.83591 2.83591 -93.514 -2.83591 0 0 701300. 2426.64 0.74 0.03 0.29 -1 -1 0.74 0.0104085 0.00929258 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.72 vpr 63.70 MiB -1 -1 0.42 20976 1 0.05 -1 -1 33524 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.1 MiB 0.08 810 8614 1793 6441 380 63.7 MiB 0.14 0.00 3.36433 -97.1483 -3.36433 3.36433 2.16 0.000146838 0.000116241 0.00782936 0.00635955 32 2074 22 6.65987e+06 393018 554710. 1919.41 2.99 0.146469 0.140952 22834 132086 -1 1804 17 894 1488 103345 23925 2.68271 2.68271 -92.3065 -2.68271 0 0 701300. 2426.64 1.35 0.07 0.21 -1 -1 1.35 0.00988687 0.0088434 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 15.33 vpr 63.82 MiB -1 -1 0.60 21736 1 0.10 -1 -1 33932 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.38 912 8092 2097 5494 501 63.8 MiB 0.10 0.06 3.4209 -115.906 -3.4209 3.4209 3.45 0.0549979 0.00011767 0.0633623 0.00697732 32 2102 20 6.65987e+06 240882 554710. 1919.41 2.58 0.089974 0.0296975 22834 132086 -1 1877 18 1142 1655 118718 27709 3.09771 3.09771 -123.044 -3.09771 0 0 701300. 2426.64 0.56 0.04 0.24 -1 -1 0.56 0.0203442 0.0191812 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 15.77 vpr 63.56 MiB -1 -1 0.65 21432 1 0.03 -1 -1 33680 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.79 719 10056 2390 7132 534 63.6 MiB 0.27 0.00 3.74029 -120.95 -3.74029 3.74029 3.30 0.000180479 0.000146681 0.0106483 0.00863791 28 2131 26 6.65987e+06 215526 500653. 1732.36 2.64 0.104691 0.0984446 21970 115934 -1 1778 21 1157 1754 122038 31706 2.74131 2.74131 -114.198 -2.74131 0 0 612192. 2118.31 0.43 0.05 0.19 -1 -1 0.43 0.01185 0.0104511 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 17.37 vpr 63.61 MiB -1 -1 0.33 21280 1 0.07 -1 -1 34000 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.96 580 9374 2318 6165 891 63.6 MiB 0.16 0.00 4.00989 -106.262 -4.00989 4.00989 3.01 6.3126e-05 4.7988e-05 0.00448149 0.00359068 32 1547 21 6.65987e+06 215526 554710. 1919.41 2.94 0.0303268 0.0255406 22834 132086 -1 1369 20 840 1257 79227 20487 2.82751 2.82751 -100.698 -2.82751 0 0 701300. 2426.64 1.11 0.05 0.22 -1 -1 1.11 0.0101538 0.00899845 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.95 vpr 63.68 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33548 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 24.9 MiB 0.78 786 7256 1513 5550 193 63.7 MiB 0.27 0.00 3.75729 -118.293 -3.75729 3.75729 2.60 0.000163088 0.000133613 0.237591 0.236114 30 2178 26 6.65987e+06 215526 526063. 1820.29 2.80 0.415113 0.409558 22546 126617 -1 1724 20 995 1357 96858 22257 2.67471 2.67471 -103.361 -2.67471 0 0 666494. 2306.21 0.90 0.03 0.19 -1 -1 0.90 0.010287 0.00914634 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 17.10 vpr 64.03 MiB -1 -1 0.55 21280 1 0.36 -1 -1 33804 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.3 MiB 1.11 1144 13933 4321 8243 1369 64.0 MiB 0.30 0.00 4.40775 -144.129 -4.40775 4.40775 2.52 0.000181503 0.000149033 0.0146608 0.0119061 32 2600 23 6.65987e+06 304272 554710. 1919.41 3.28 0.0472459 0.0398395 22834 132086 -1 2311 20 1654 2470 190348 42509 3.33991 3.33991 -131.441 -3.33991 0 0 701300. 2426.64 0.46 0.05 0.24 -1 -1 0.46 0.0138104 0.0124334 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 17.19 vpr 63.78 MiB -1 -1 0.56 21280 1 0.20 -1 -1 33688 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 25.2 MiB 1.03 952 10957 2661 7671 625 63.8 MiB 0.32 0.00 4.65212 -132.497 -4.65212 4.65212 2.71 0.000220395 0.000148425 0.0117306 0.00939977 32 2382 23 6.65987e+06 380340 554710. 1919.41 3.29 0.0437524 0.0367922 22834 132086 -1 2069 23 1569 2538 191574 42780 3.49885 3.49885 -122.405 -3.49885 0 0 701300. 2426.64 0.41 0.11 0.21 -1 -1 0.41 0.0137863 0.0121765 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 15.73 vpr 63.41 MiB -1 -1 0.44 21280 1 0.13 -1 -1 33832 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64936 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.69 775 11118 2644 7385 1089 63.4 MiB 0.29 0.00 3.16393 -92.0469 -3.16393 3.16393 3.08 0.000123623 9.7143e-05 0.0104494 0.00844665 26 1825 24 6.65987e+06 266238 477104. 1650.88 3.12 0.0346417 0.0289449 21682 110474 -1 1612 20 961 1592 109887 26838 2.94405 2.94405 -95.715 -2.94405 0 0 585099. 2024.56 1.22 0.05 0.16 -1 -1 1.22 0.0096239 0.00836059 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 16.58 vpr 64.00 MiB -1 -1 0.44 21128 1 0.10 -1 -1 33976 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 25.4 MiB 1.44 1047 12733 3877 6886 1970 64.0 MiB 0.43 0.00 4.00819 -125.465 -4.00819 4.00819 2.60 0.000203841 0.00016432 0.052706 0.0499749 32 2583 22 6.65987e+06 266238 554710. 1919.41 2.86 0.227889 0.220489 22834 132086 -1 2258 21 1362 2537 186342 42439 3.30657 3.30657 -123.045 -3.30657 0 0 701300. 2426.64 1.15 0.24 0.50 -1 -1 1.15 0.126101 0.124562 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 15.94 vpr 63.76 MiB -1 -1 0.68 21432 1 0.04 -1 -1 33744 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 25.1 MiB 1.02 1072 15523 5016 8339 2168 63.8 MiB 0.32 0.00 4.31458 -139.763 -4.31458 4.31458 3.02 0.000202544 0.000168522 0.0181919 0.0150054 28 2776 23 6.65987e+06 266238 500653. 1732.36 3.37 0.197025 0.188835 21970 115934 -1 2298 21 1497 2160 165322 36545 3.24677 3.24677 -123.398 -3.24677 0 0 612192. 2118.31 0.89 0.08 0.20 -1 -1 0.89 0.0137994 0.0123673 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 14.77 vpr 63.79 MiB -1 -1 0.69 21128 1 0.15 -1 -1 33524 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.1 MiB 0.55 861 11433 2956 7633 844 63.8 MiB 0.35 0.00 2.85064 -102.994 -2.85064 2.85064 2.43 0.000149129 0.000118199 0.119171 0.117279 26 2084 22 6.65987e+06 367662 477104. 1650.88 2.54 0.222516 0.216352 21682 110474 -1 1813 18 1053 1731 134640 30044 2.15051 2.15051 -97.3318 -2.15051 0 0 585099. 2024.56 0.86 0.25 0.24 -1 -1 0.86 0.0103386 0.00911987 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 12.84 vpr 63.21 MiB -1 -1 0.51 20672 1 0.17 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64724 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.8 MiB 0.47 624 5782 1334 4080 368 63.2 MiB 0.03 0.00 2.24807 -77.3192 -2.24807 2.24807 2.53 0.00010859 8.4963e-05 0.00521969 0.00421554 32 1391 22 6.65987e+06 190170 554710. 1919.41 2.21 0.169813 0.16544 22834 132086 -1 1272 19 694 987 78395 18403 1.77965 1.77965 -78.0343 -1.77965 0 0 701300. 2426.64 1.18 0.03 0.24 -1 -1 1.18 0.00793792 0.00697421 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 15.36 vpr 63.67 MiB -1 -1 0.50 21584 1 0.09 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.1 MiB 0.91 827 15568 4612 9306 1650 63.7 MiB 0.22 0.00 4.77154 -139.927 -4.77154 4.77154 2.22 0.000169241 0.000138734 0.0876222 0.084674 28 2046 22 6.65987e+06 240882 500653. 1732.36 2.44 0.202408 0.195495 21970 115934 -1 1800 23 1198 1705 117969 27981 3.57911 3.57911 -129.346 -3.57911 0 0 612192. 2118.31 1.07 0.22 0.77 -1 -1 1.07 0.0807392 0.0793742 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 14.37 vpr 63.97 MiB -1 -1 0.43 21280 1 0.29 -1 -1 34104 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 0.12 945 6791 1317 5158 316 64.0 MiB 0.11 0.00 4.14893 -130.493 -4.14893 4.14893 2.95 0.00019616 0.000160055 0.00768591 0.00638099 30 2176 21 6.65987e+06 393018 526063. 1820.29 2.50 0.144408 0.138757 22546 126617 -1 1849 20 1024 1651 101279 23570 3.40723 3.40723 -121.542 -3.40723 0 0 666494. 2306.21 0.96 0.18 0.27 -1 -1 0.96 0.012827 0.0114798 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 25.23 vpr 64.14 MiB -1 -1 0.29 21432 1 0.22 -1 -1 33812 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 0.71 1176 13911 3816 8065 2030 64.1 MiB 0.30 0.00 4.32644 -135.935 -4.32644 4.32644 2.76 0.000189356 0.000155146 0.0151601 0.0124325 30 2785 22 6.65987e+06 291594 526063. 1820.29 13.66 0.309981 0.296455 22546 126617 -1 2302 18 1286 2013 127835 28465 3.48051 3.48051 -127.974 -3.48051 0 0 666494. 2306.21 0.88 0.26 0.32 -1 -1 0.88 0.0849454 0.0836129 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 15.12 vpr 62.93 MiB -1 -1 0.53 21128 1 0.02 -1 -1 34128 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64444 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.3 MiB 0.50 372 9836 3070 4693 2073 62.9 MiB 0.09 0.00 2.3895 -62.9737 -2.3895 2.3895 3.31 0.000117408 9.1811e-05 0.0076159 0.00601791 32 1122 48 6.65987e+06 228204 554710. 1919.41 3.42 0.0318307 0.0258784 22834 132086 -1 717 22 632 914 52787 14932 1.86985 1.86985 -59.8055 -1.86985 0 0 701300. 2426.64 0.69 0.11 0.27 -1 -1 0.69 0.00716709 0.00619496 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 13.79 vpr 63.70 MiB -1 -1 0.35 21280 1 0.04 -1 -1 33572 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.0 MiB 0.25 967 10501 2769 7029 703 63.7 MiB 0.19 0.00 4.91554 -122.72 -4.91554 4.91554 2.94 0.000159693 0.000129406 0.0106492 0.00864967 28 2269 24 6.65987e+06 266238 500653. 1732.36 2.85 0.0394979 0.0331405 21970 115934 -1 1962 20 924 1747 113203 26886 4.10317 4.10317 -126.625 -4.10317 0 0 612192. 2118.31 0.90 0.06 0.19 -1 -1 0.90 0.0111867 0.00997244 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 13.34 vpr 62.88 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33612 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64392 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.3 MiB 0.03 415 10370 2763 4961 2646 62.9 MiB 0.03 0.00 2.50649 -71.6469 -2.50649 2.50649 2.89 9.8516e-05 7.5074e-05 0.00756378 0.00592364 30 1132 25 6.65987e+06 177492 526063. 1820.29 2.60 0.0236321 0.0194845 22546 126617 -1 827 15 404 449 30442 8479 1.90085 1.90085 -68.0593 -1.90085 0 0 666494. 2306.21 1.05 0.18 0.56 -1 -1 1.05 0.00589214 0.00525725 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 14.46 vpr 63.78 MiB -1 -1 0.49 21128 1 0.10 -1 -1 33684 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.1 MiB 0.26 867 9679 2178 7022 479 63.8 MiB 0.08 0.00 4.41865 -121.392 -4.41865 4.41865 2.74 0.000152688 0.000122798 0.00888374 0.00729756 28 2060 20 6.65987e+06 380340 500653. 1732.36 2.93 0.0376907 0.0319851 21970 115934 -1 1775 21 1090 1814 122823 28767 3.22685 3.22685 -110.815 -3.22685 0 0 612192. 2118.31 0.74 0.14 0.27 -1 -1 0.74 0.0115812 0.0102113 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 15.15 vpr 63.63 MiB -1 -1 0.40 21128 1 0.18 -1 -1 34080 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1033 7655 1739 5270 646 63.6 MiB 0.07 0.00 3.58635 -107.341 -3.58635 3.58635 2.75 0.000184851 0.000152297 0.00758539 0.00621376 32 2402 25 6.65987e+06 393018 554710. 1919.41 3.68 0.0386437 0.0327177 22834 132086 -1 2155 22 1263 2296 199474 43488 3.00117 3.00117 -107.204 -3.00117 0 0 701300. 2426.64 0.76 0.59 0.28 -1 -1 0.76 0.0127388 0.0114327 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.47 vpr 63.96 MiB -1 -1 0.47 21432 1 0.24 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 25.2 MiB 0.37 935 10542 2716 6648 1178 64.0 MiB 0.42 0.00 4.36243 -125.161 -4.36243 4.36243 2.90 0.000186999 0.000152595 0.0111785 0.00917024 28 2362 26 6.65987e+06 329628 500653. 1732.36 2.80 0.207602 0.200837 21970 115934 -1 2111 20 1333 2375 164568 39080 3.50419 3.50419 -120.066 -3.50419 0 0 612192. 2118.31 0.84 0.06 0.16 -1 -1 0.84 0.0121208 0.0106313 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 14.44 vpr 63.45 MiB -1 -1 0.32 21128 1 0.19 -1 -1 33688 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.9 MiB 0.19 787 11260 3658 5658 1944 63.5 MiB 0.15 0.00 2.93487 -99.6571 -2.93487 2.93487 2.67 0.000165954 0.000135375 0.0112483 0.0090505 32 1794 20 6.65987e+06 202848 554710. 1919.41 2.68 0.0851283 0.0792685 22834 132086 -1 1628 20 958 1510 115265 27294 2.69465 2.69465 -100.105 -2.69465 0 0 701300. 2426.64 0.83 0.14 0.48 -1 -1 0.83 0.0107991 0.00957092 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 13.23 vpr 63.67 MiB -1 -1 0.55 21280 1 0.04 -1 -1 33640 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.8 MiB 0.20 776 12175 3219 7698 1258 63.7 MiB 0.24 0.00 3.0379 -97.3625 -3.0379 3.0379 3.07 0.000135761 0.000104953 0.0110177 0.00878743 28 1731 21 6.65987e+06 291594 500653. 1732.36 3.09 0.136922 0.130941 21970 115934 -1 1604 18 795 1223 81805 19071 2.88285 2.88285 -98.5106 -2.88285 0 0 612192. 2118.31 1.04 0.03 0.18 -1 -1 1.04 0.00923751 0.0082151 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 14.93 vpr 63.53 MiB -1 -1 0.47 21128 1 0.02 -1 -1 33724 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.8 MiB 0.11 626 11963 3042 7355 1566 63.5 MiB 0.38 0.00 3.31478 -92.0347 -3.31478 3.31478 2.58 0.00013723 0.000108782 0.0559424 0.0538238 28 1757 31 6.65987e+06 291594 500653. 1732.36 4.27 0.0829624 0.076471 21970 115934 -1 1589 21 988 1711 135362 30962 2.61965 2.61965 -90.1158 -2.61965 0 0 612192. 2118.31 0.84 0.08 0.28 -1 -1 0.84 0.00980462 0.00867402 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.33 vpr 63.38 MiB -1 -1 0.38 20976 1 0.10 -1 -1 33580 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.29 729 7103 1637 4961 505 63.4 MiB 0.11 0.00 3.70643 -110.184 -3.70643 3.70643 2.26 0.000141823 0.000112466 0.00715445 0.00586376 30 1871 23 6.65987e+06 240882 526063. 1820.29 2.26 0.0326046 0.0276209 22546 126617 -1 1613 21 993 1651 87012 21207 2.64151 2.64151 -103.145 -2.64151 0 0 666494. 2306.21 1.20 0.14 0.22 -1 -1 1.20 0.0102392 0.00911968 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 13.86 vpr 63.58 MiB -1 -1 0.33 20976 1 0.13 -1 -1 33744 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.23 614 5517 1006 3965 546 63.6 MiB 0.03 0.00 3.32595 -96.9255 -3.32595 3.32595 2.14 0.000154739 0.000121759 0.00563213 0.00457195 28 1836 30 6.65987e+06 342306 500653. 1732.36 3.84 0.0324284 0.0272978 21970 115934 -1 1466 20 981 1631 107215 27748 2.94891 2.94891 -103.005 -2.94891 0 0 612192. 2118.31 0.98 0.14 0.21 -1 -1 0.98 0.00998875 0.00886027 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.52 vpr 63.45 MiB -1 -1 0.60 21584 1 0.07 -1 -1 33776 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 24.9 MiB 0.84 863 12938 3773 7467 1698 63.4 MiB 0.10 0.00 3.16555 -101.958 -3.16555 3.16555 2.32 0.000136808 0.000108074 0.00584544 0.00465234 28 1851 22 6.65987e+06 316950 500653. 1732.36 2.69 0.0659643 0.0280146 21970 115934 -1 1592 20 917 1356 89468 20919 2.31685 2.31685 -94.6108 -2.31685 0 0 612192. 2118.31 1.41 0.04 0.28 -1 -1 1.41 0.0217703 0.0203851 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 13.49 vpr 64.15 MiB -1 -1 0.49 21432 1 0.12 -1 -1 34016 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 25.5 MiB 0.79 1216 15846 3922 9942 1982 64.2 MiB 0.53 0.00 3.87192 -115.022 -3.87192 3.87192 2.48 8.6659e-05 6.8732e-05 0.0134507 0.011103 32 2924 23 6.65987e+06 469086 554710. 1919.41 2.27 0.186677 0.180493 22834 132086 -1 2469 21 1434 2524 186653 41350 3.44899 3.44899 -114.802 -3.44899 0 0 701300. 2426.64 0.86 0.24 0.21 -1 -1 0.86 0.158118 0.156612 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 15.32 vpr 63.96 MiB -1 -1 0.48 21736 1 0.19 -1 -1 33576 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 25.5 MiB 0.98 918 16804 4626 9521 2657 64.0 MiB 0.24 0.00 3.76954 -123.355 -3.76954 3.76954 2.40 7.9776e-05 6.3321e-05 0.0672828 0.0123736 26 2694 44 6.65987e+06 456408 477104. 1650.88 4.61 0.28569 0.224111 21682 110474 -1 2210 21 1913 2840 206323 49013 3.03737 3.03737 -121.107 -3.03737 0 0 585099. 2024.56 0.67 0.34 0.32 -1 -1 0.67 0.0152219 0.0133563 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 13.70 vpr 63.53 MiB -1 -1 0.54 21736 1 0.02 -1 -1 33736 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 24.9 MiB 0.99 795 7304 1575 5379 350 63.5 MiB 0.13 0.00 4.09732 -119.878 -4.09732 4.09732 2.36 0.000140843 0.00011156 0.0079465 0.00650795 28 2284 28 6.65987e+06 215526 500653. 1732.36 2.96 0.0696371 0.0639517 21970 115934 -1 1853 23 1163 1584 136433 31115 2.98331 2.98331 -112.101 -2.98331 0 0 612192. 2118.31 0.78 0.19 0.24 -1 -1 0.78 0.0110742 0.00979089 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 14.30 vpr 63.86 MiB -1 -1 0.36 21432 1 0.07 -1 -1 33896 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 25.4 MiB 0.71 960 9687 2384 6351 952 63.9 MiB 0.22 0.00 4.18671 -127.263 -4.18671 4.18671 2.52 0.000182253 0.000144715 0.00706702 0.00575115 32 2417 21 6.65987e+06 304272 554710. 1919.41 2.35 0.0975316 0.0919152 22834 132086 -1 2101 21 1488 2613 194175 44081 2.97097 2.97097 -112.473 -2.97097 0 0 701300. 2426.64 1.00 0.16 0.20 -1 -1 1.00 0.0117897 0.0103715 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 13.54 vpr 63.70 MiB -1 -1 0.61 21584 1 0.18 -1 -1 33872 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 25.5 MiB 1.10 1273 15165 4552 8275 2338 63.7 MiB 0.51 0.00 5.69001 -171.445 -5.69001 5.69001 2.48 0.000199303 0.000135675 0.0170398 0.0139331 32 3130 25 6.65987e+06 342306 554710. 1919.41 2.36 0.0510807 0.0428848 22834 132086 -1 2610 20 2120 3180 234125 53075 4.91423 4.91423 -162.467 -4.91423 0 0 701300. 2426.64 0.81 0.10 0.13 -1 -1 0.81 0.0146825 0.013251 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 16.40 vpr 64.08 MiB -1 -1 0.48 21736 1 0.06 -1 -1 33916 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 25.4 MiB 3.64 1090 15493 4707 8769 2017 64.1 MiB 0.20 0.00 4.85933 -146.856 -4.85933 4.85933 2.13 9.0883e-05 7.2769e-05 0.0129288 0.0106553 32 2614 24 6.65987e+06 316950 554710. 1919.41 2.54 0.104064 0.0974697 22834 132086 -1 2217 21 1679 2545 171031 40167 4.18782 4.18782 -145.076 -4.18782 0 0 701300. 2426.64 0.95 0.04 0.26 -1 -1 0.95 0.0135973 0.012176 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 13.02 vpr 64.01 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33868 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 25.4 MiB 0.87 1049 11063 3132 7137 794 64.0 MiB 0.31 0.00 4.34966 -129.73 -4.34966 4.34966 2.63 0.00019874 0.000165017 0.172305 0.170247 28 2570 22 6.65987e+06 367662 500653. 1732.36 2.23 0.211767 0.205484 21970 115934 -1 2177 19 1173 1877 132044 30578 3.08745 3.08745 -117.736 -3.08745 0 0 612192. 2118.31 0.84 0.11 0.31 -1 -1 0.84 0.0111952 0.00988884 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 12.91 vpr 63.78 MiB -1 -1 0.49 21280 1 0.10 -1 -1 33628 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 25.1 MiB 0.48 919 8591 2074 6189 328 63.8 MiB 0.14 0.00 4.09946 -111.918 -4.09946 4.09946 2.32 7.575e-05 5.9687e-05 0.115528 0.114721 28 2411 28 6.65987e+06 278916 500653. 1732.36 2.47 0.186264 0.181335 21970 115934 -1 2081 20 1299 1915 141997 33631 3.64645 3.64645 -113.314 -3.64645 0 0 612192. 2118.31 0.88 0.11 0.19 -1 -1 0.88 0.113733 0.112557 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 13.33 vpr 63.94 MiB -1 -1 0.64 21432 1 0.11 -1 -1 33604 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 25.6 MiB 0.92 1261 14144 3520 9065 1559 63.9 MiB 0.30 0.00 4.86514 -159.483 -4.86514 4.86514 2.16 0.000224362 0.000185072 0.0167308 0.0138784 28 3016 22 6.65987e+06 481764 500653. 1732.36 3.19 0.156164 0.147907 21970 115934 -1 2644 20 1648 2541 201927 44131 3.89311 3.89311 -148.561 -3.89311 0 0 612192. 2118.31 0.74 0.16 0.11 -1 -1 0.74 0.141984 0.141091 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 13.49 vpr 63.33 MiB -1 -1 0.30 21280 1 0.03 -1 -1 34004 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64848 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.7 MiB 0.25 792 5391 1113 3866 412 63.3 MiB 0.18 0.00 3.45892 -99.4367 -3.45892 3.45892 2.78 0.000144451 0.000113627 0.15311 0.00456613 30 1714 21 6.65987e+06 266238 526063. 1820.29 2.50 0.298002 0.145893 22546 126617 -1 1569 16 794 1300 77888 17751 2.66565 2.66565 -95.9742 -2.66565 0 0 666494. 2306.21 0.82 0.09 0.34 -1 -1 0.82 0.00663432 0.00588571 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 13.64 vpr 63.91 MiB -1 -1 0.40 21280 1 0.11 -1 -1 33952 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 25.2 MiB 0.70 1174 9914 2716 6202 996 63.9 MiB 0.17 0.00 4.85749 -145.079 -4.85749 4.85749 2.51 0.000163223 0.000130909 0.0110224 0.00914394 30 2913 23 6.65987e+06 291594 526063. 1820.29 3.11 0.0391954 0.0334823 22546 126617 -1 2375 19 1093 1611 112346 24086 3.96531 3.96531 -132.462 -3.96531 0 0 666494. 2306.21 0.67 0.16 0.37 -1 -1 0.67 0.138033 0.00858171 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 15.65 vpr 63.39 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33692 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64912 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.6 MiB 0.51 872 7423 1554 5596 273 63.4 MiB 0.16 0.00 3.91407 -115.681 -3.91407 3.91407 2.61 0.000172847 0.000138812 0.00800516 0.00666131 28 3018 33 6.65987e+06 418374 500653. 1732.36 5.49 0.0442897 0.0375343 21970 115934 -1 2118 22 1293 2233 170096 39537 3.03411 3.03411 -114.961 -3.03411 0 0 612192. 2118.31 0.78 0.12 0.18 -1 -1 0.78 0.013357 0.0118758 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 20.58 vpr 63.30 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33464 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64820 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.6 MiB 0.28 855 6523 1368 4938 217 63.3 MiB 0.02 0.00 3.97641 -117.731 -3.97641 3.97641 3.51 7.4019e-05 5.9109e-05 0.00342594 0.00283336 28 2339 22 6.65987e+06 304272 500653. 1732.36 8.79 0.3109 0.297662 21970 115934 -1 2041 20 1400 2592 194446 45064 3.42425 3.42425 -119.8 -3.42425 0 0 612192. 2118.31 0.88 0.09 0.28 -1 -1 0.88 0.0112814 0.00992933 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 14.67 vpr 64.05 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33508 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 25.4 MiB 1.04 1095 6890 1534 4949 407 64.1 MiB 0.27 0.00 4.41337 -130.677 -4.41337 4.41337 2.81 0.000173112 0.000139915 0.192159 0.19062 30 2410 22 6.65987e+06 278916 526063. 1820.29 2.77 0.22624 0.220082 22546 126617 -1 2078 18 950 1311 82288 18997 3.16671 3.16671 -118.385 -3.16671 0 0 666494. 2306.21 0.85 0.04 0.24 -1 -1 0.85 0.00999761 0.00890254 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 16.38 vpr 63.82 MiB -1 -1 0.44 21432 1 0.10 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 25.2 MiB 1.31 1015 8519 1947 6079 493 63.8 MiB 0.24 0.00 3.70469 -120.936 -3.70469 3.70469 2.04 0.000183899 0.000150032 0.192242 0.19054 26 2629 44 6.65987e+06 393018 477104. 1650.88 3.76 0.26209 0.226057 21682 110474 -1 2300 19 1277 2162 203888 55415 3.09317 3.09317 -119.703 -3.09317 0 0 585099. 2024.56 0.90 0.15 0.20 -1 -1 0.90 0.11414 0.11291 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 15.41 vpr 63.98 MiB -1 -1 0.35 21584 1 0.15 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 25.4 MiB 1.37 1095 17268 5091 9567 2610 64.0 MiB 0.39 0.00 4.49052 -137.752 -4.49052 4.49052 2.64 0.000179162 0.000142111 0.0168161 0.0137415 32 2622 20 6.65987e+06 456408 554710. 1919.41 2.67 0.0476195 0.0397119 22834 132086 -1 2238 21 1227 1882 151184 33669 3.11931 3.11931 -120.994 -3.11931 0 0 701300. 2426.64 0.92 0.25 0.29 -1 -1 0.92 0.0140044 0.0124851 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 14.25 vpr 63.79 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33840 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.2 MiB 0.39 831 8703 1904 6510 289 63.8 MiB 0.14 0.00 3.98836 -116.458 -3.98836 3.98836 2.36 0.000153415 0.000122132 0.00915912 0.0076147 28 2509 34 6.65987e+06 367662 500653. 1732.36 3.49 0.191909 0.185407 21970 115934 -1 1950 22 1402 2368 181235 42277 3.31885 3.31885 -113.136 -3.31885 0 0 612192. 2118.31 0.80 0.09 0.36 -1 -1 0.80 0.0105699 0.00934149 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 12.90 vpr 63.45 MiB -1 -1 0.49 21584 1 0.20 -1 -1 33976 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 25.1 MiB 0.22 1096 5847 1077 4508 262 63.4 MiB 0.16 0.00 4.87249 -140.277 -4.87249 4.87249 2.45 7.4025e-05 5.8663e-05 0.00691967 0.00585821 32 2457 23 6.65987e+06 291594 554710. 1919.41 2.31 0.0358647 0.0306625 22834 132086 -1 2307 21 1758 2571 205261 48211 3.54631 3.54631 -128.876 -3.54631 0 0 701300. 2426.64 0.74 0.08 0.21 -1 -1 0.74 0.0128434 0.0115048 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 14.11 vpr 64.13 MiB -1 -1 0.62 21736 1 0.04 -1 -1 33536 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 25.5 MiB 0.75 1053 14450 4494 7381 2575 64.1 MiB 0.39 0.00 4.75055 -139.155 -4.75055 4.75055 2.64 0.000230927 0.000195819 0.0164111 0.0134797 32 2991 39 6.65987e+06 291594 554710. 1919.41 2.69 0.249189 0.238214 22834 132086 -1 2363 22 1536 2448 216971 46501 3.78511 3.78511 -128.69 -3.78511 0 0 701300. 2426.64 0.89 0.15 0.50 -1 -1 0.89 0.0139633 0.0123829 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 11.94 vpr 63.97 MiB -1 -1 0.46 21736 1 0.13 -1 -1 33644 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 25.4 MiB 0.34 892 8269 1866 5970 433 64.0 MiB 0.11 0.00 3.94229 -122.797 -3.94229 3.94229 2.35 0.000190103 0.000154106 0.0103669 0.00855183 32 2886 33 6.65987e+06 266238 554710. 1919.41 2.54 0.156958 0.149786 22834 132086 -1 2173 20 1592 2780 186378 45374 3.32485 3.32485 -123.339 -3.32485 0 0 701300. 2426.64 0.95 0.08 0.22 -1 -1 0.95 0.0142534 0.0128195 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 11.46 vpr 63.16 MiB -1 -1 0.39 21432 1 0.03 -1 -1 33560 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64676 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.9 MiB 0.29 757 15103 5160 7628 2315 63.2 MiB 0.28 0.00 3.22598 -97.9932 -3.22598 3.22598 2.50 0.000134302 0.000106416 0.0115374 0.00908968 30 1751 19 6.65987e+06 304272 526063. 1820.29 2.24 0.0347544 0.0288528 22546 126617 -1 1512 16 721 1176 73018 17086 2.41611 2.41611 -90.1114 -2.41611 0 0 666494. 2306.21 0.81 0.09 0.19 -1 -1 0.81 0.0739414 0.0731145 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 12.25 vpr 63.98 MiB -1 -1 0.36 21432 1 0.16 -1 -1 33740 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 25.1 MiB 0.29 854 11979 3325 7498 1156 64.0 MiB 0.14 0.00 4.00764 -134.08 -4.00764 4.00764 2.39 0.000166096 0.000132926 0.0130162 0.0105485 30 2116 21 6.65987e+06 253560 526063. 1820.29 2.57 0.132303 0.12564 22546 126617 -1 1874 15 1015 1416 75233 18300 3.45817 3.45817 -132.236 -3.45817 0 0 666494. 2306.21 0.98 0.14 0.14 -1 -1 0.98 0.0233491 0.0223815 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 15.15 vpr 63.70 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33988 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 25.7 MiB 0.51 1274 10235 2662 6652 921 63.7 MiB 0.14 0.00 5.13258 -155.287 -5.13258 5.13258 2.61 9.2275e-05 7.3961e-05 0.00687844 0.00562595 32 3369 23 6.65987e+06 354984 554710. 1919.41 3.58 0.0906311 0.0846579 22834 132086 -1 2783 23 2186 3460 290827 63429 4.48925 4.48925 -150.111 -4.48925 0 0 701300. 2426.64 1.05 0.28 0.18 -1 -1 1.05 0.107691 0.10602 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.69 vpr 63.83 MiB -1 -1 0.63 21280 1 0.02 -1 -1 33972 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 25.1 MiB 0.60 923 6359 1257 4842 260 63.8 MiB 0.11 0.00 4.41432 -131.558 -4.41432 4.41432 2.44 0.000177047 0.000141783 0.00796312 0.00660099 28 2340 18 6.65987e+06 393018 500653. 1732.36 3.21 0.0388558 0.0335021 21970 115934 -1 2127 18 1059 1684 138744 33781 2.95411 2.95411 -115.043 -2.95411 0 0 612192. 2118.31 0.85 0.07 0.25 -1 -1 0.85 0.0122403 0.0110018 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 13.01 vpr 63.63 MiB -1 -1 0.42 20976 1 0.06 -1 -1 33908 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.8 MiB 0.15 662 8473 1902 5447 1124 63.6 MiB 0.04 0.00 3.33678 -100.036 -3.33678 3.33678 2.44 0.000147231 0.000116999 0.00780375 0.00638254 28 1883 24 6.65987e+06 329628 500653. 1732.36 2.41 0.120232 0.115061 21970 115934 -1 1588 23 1125 1833 133224 32129 2.83791 2.83791 -101.81 -2.83791 0 0 612192. 2118.31 0.93 0.26 0.28 -1 -1 0.93 0.0108435 0.00951964 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 15.30 vpr 64.06 MiB -1 -1 0.64 21888 1 0.18 -1 -1 33752 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 25.8 MiB 1.10 1210 14939 4355 8106 2478 64.1 MiB 0.22 0.00 6.10992 -175.279 -6.10992 6.10992 2.35 0.000208534 0.000169163 0.0191368 0.0159276 32 3495 33 6.65987e+06 316950 554710. 1919.41 2.75 0.0522444 0.0444883 22834 132086 -1 2638 21 2045 2939 210732 49019 4.76877 4.76877 -161.395 -4.76877 0 0 701300. 2426.64 1.03 0.15 0.22 -1 -1 1.03 0.0162987 0.0146932 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 13.10 vpr 63.95 MiB -1 -1 0.30 21280 1 0.34 -1 -1 33956 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.2 MiB 0.97 904 10389 2712 7035 642 63.9 MiB 0.20 0.03 4.42592 -132.293 -4.42592 4.42592 2.35 0.000161799 0.000128834 0.0106276 0.00856263 32 2174 23 6.65987e+06 405696 554710. 1919.41 2.62 0.0347434 0.0292961 22834 132086 -1 1862 21 1345 1981 126109 31018 3.49685 3.49685 -125.797 -3.49685 0 0 701300. 2426.64 0.91 0.08 0.22 -1 -1 0.91 0.0123833 0.010951 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 20.12 vpr 63.38 MiB -1 -1 0.41 21128 1 0.13 -1 -1 33636 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64900 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.8 MiB 0.03 663 8535 1816 6050 669 63.4 MiB 0.13 0.00 3.21869 -93.2403 -3.21869 3.21869 2.45 0.000121456 9.5237e-05 0.0068439 0.00553974 30 1794 24 6.65987e+06 291594 526063. 1820.29 10.47 0.0864911 0.0773777 22546 126617 -1 1375 17 756 1268 78704 19634 2.42405 2.42405 -87.4777 -2.42405 0 0 666494. 2306.21 0.95 0.11 0.28 -1 -1 0.95 0.00836202 0.00752134 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 15.68 vpr 64.06 MiB -1 -1 0.51 21432 1 0.20 -1 -1 33772 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.3 MiB 0.29 1094 11573 2846 8002 725 64.1 MiB 0.34 0.00 5.047 -126.982 -5.047 5.047 2.30 0.000175859 0.00014189 0.0503598 0.0483346 36 2322 21 6.65987e+06 431052 612192. 2118.31 5.10 0.297468 0.288372 23410 145293 -1 2134 22 1241 2482 160165 36292 3.91299 3.91299 -119.534 -3.91299 0 0 782063. 2706.10 1.08 0.22 0.34 -1 -1 1.08 0.0128943 0.0114938 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 12.93 vpr 63.50 MiB -1 -1 0.48 20976 1 0.33 -1 -1 33840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.8 MiB 0.29 658 7038 1455 4830 753 63.5 MiB 0.03 0.00 3.29684 -99.2989 -3.29684 3.29684 2.24 0.000131378 0.000102416 0.00684499 0.00550857 28 1982 22 6.65987e+06 253560 500653. 1732.36 2.88 0.165407 0.160419 21970 115934 -1 1775 20 1165 1930 131320 32832 2.75245 2.75245 -106.269 -2.75245 0 0 612192. 2118.31 0.92 0.41 0.30 -1 -1 0.92 0.245432 0.244371 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 13.68 vpr 63.48 MiB -1 -1 0.49 20976 1 0.13 -1 -1 33948 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65004 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.9 MiB 0.57 652 14999 3898 8981 2120 63.5 MiB 0.34 0.00 3.84026 -101.059 -3.84026 3.84026 2.27 0.000131525 0.000102477 0.00917954 0.00725515 26 1964 30 6.65987e+06 418374 477104. 1650.88 2.91 0.0368554 0.0302919 21682 110474 -1 1645 21 1213 2151 149760 36190 2.71645 2.71645 -97.4677 -2.71645 0 0 585099. 2024.56 0.77 0.13 0.23 -1 -1 0.77 0.0104856 0.00927402 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 14.11 vpr 63.81 MiB -1 -1 0.56 21432 1 0.05 -1 -1 33816 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 25.4 MiB 0.89 1012 15523 4926 8107 2490 63.8 MiB 0.20 0.00 4.24664 -124.218 -4.24664 4.24664 2.19 0.000176174 0.00014147 0.0172995 0.0140543 32 2438 21 6.65987e+06 304272 554710. 1919.41 2.73 0.131585 0.125131 22834 132086 -1 2076 22 1471 2243 161387 37796 3.14991 3.14991 -109.854 -3.14991 0 0 701300. 2426.64 0.63 0.24 0.12 -1 -1 0.63 0.0141914 0.0126457 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 13.52 vpr 63.84 MiB -1 -1 0.61 21432 1 0.24 -1 -1 33852 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.1 MiB 0.45 997 13738 3661 8770 1307 63.8 MiB 0.23 0.00 4.3549 -132.453 -4.3549 4.3549 2.16 0.000188026 0.000151987 0.0166228 0.0129496 32 2264 21 6.65987e+06 304272 554710. 1919.41 2.08 0.0483022 0.0399724 22834 132086 -1 2017 21 1451 2287 177683 38721 3.59857 3.59857 -129.696 -3.59857 0 0 701300. 2426.64 0.79 0.14 0.38 -1 -1 0.79 0.0127704 0.0113522 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 13.57 vpr 64.01 MiB -1 -1 0.43 21584 1 0.10 -1 -1 33516 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 25.4 MiB 0.60 1038 14575 3612 9348 1615 64.0 MiB 0.21 0.00 4.46409 -135.318 -4.46409 4.46409 2.76 0.000167875 0.000134136 0.0153971 0.0126236 32 2489 24 6.65987e+06 342306 554710. 1919.41 2.24 0.203521 0.196379 22834 132086 -1 2235 18 1297 2209 162487 36695 3.47311 3.47311 -128.078 -3.47311 0 0 701300. 2426.64 0.81 0.10 0.17 -1 -1 0.81 0.0713858 0.070192 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 13.24 vpr 63.66 MiB -1 -1 0.38 21280 1 0.06 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 24.9 MiB 0.80 846 7820 1845 5552 423 63.7 MiB 0.13 0.00 4.62977 -131.597 -4.62977 4.62977 2.86 0.000136232 0.000108364 0.00802058 0.00652091 30 1909 22 6.65987e+06 202848 526063. 1820.29 2.26 0.0605804 0.0554761 22546 126617 -1 1687 17 707 934 60758 14052 3.02351 3.02351 -112.559 -3.02351 0 0 666494. 2306.21 0.91 0.02 0.29 -1 -1 0.91 0.00962744 0.00868038 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 14.37 vpr 63.82 MiB -1 -1 0.57 21280 1 0.20 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.79 962 14678 4724 7836 2118 63.8 MiB 0.27 0.00 3.69598 -121.08 -3.69598 3.69598 2.46 0.000189554 0.000154415 0.0155726 0.0126779 32 2230 19 6.65987e+06 240882 554710. 1919.41 2.24 0.0435526 0.0358624 22834 132086 -1 1907 19 1232 1854 137979 31545 3.00145 3.00145 -115.533 -3.00145 0 0 701300. 2426.64 0.94 0.09 0.41 -1 -1 0.94 0.0114774 0.0102167 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.14 vpr 63.86 MiB -1 -1 0.73 21584 1 0.16 -1 -1 33728 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 1.04 861 11975 2929 8226 820 63.9 MiB 0.19 0.00 3.34001 -95.8068 -3.34001 3.34001 2.67 0.000152813 0.000121528 0.0412169 0.0392008 28 2224 44 6.65987e+06 418374 500653. 1732.36 3.54 0.0763353 0.0687579 21970 115934 -1 1831 20 1251 2268 159057 37940 2.43405 2.43405 -93.0128 -2.43405 0 0 612192. 2118.31 0.64 0.27 0.12 -1 -1 0.64 0.011714 0.0103641 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 13.59 vpr 63.42 MiB -1 -1 0.43 21432 1 0.32 -1 -1 33732 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64940 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.9 MiB 0.38 923 12623 3487 7239 1897 63.4 MiB 0.19 0.00 4.05815 -100.085 -4.05815 4.05815 2.81 0.000137399 0.000109196 0.00982862 0.0079749 26 2148 42 6.65987e+06 443730 477104. 1650.88 2.97 0.0421143 0.0351627 21682 110474 -1 1872 23 1220 2281 180106 39360 3.35599 3.35599 -99.94 -3.35599 0 0 585099. 2024.56 0.86 0.14 0.28 -1 -1 0.86 0.0105986 0.00930434 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 14.11 vpr 63.45 MiB -1 -1 0.42 21128 1 0.17 -1 -1 33852 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 24.9 MiB 0.65 815 13937 5246 6335 2356 63.5 MiB 0.19 0.00 4.07397 -115.987 -4.07397 4.07397 2.78 0.000150362 0.000119532 0.0144295 0.0117043 26 2246 33 6.65987e+06 215526 477104. 1650.88 4.08 0.118012 0.110449 21682 110474 -1 1978 21 1324 2287 197957 43663 3.12231 3.12231 -114.295 -3.12231 0 0 585099. 2024.56 0.80 0.13 0.21 -1 -1 0.80 0.0953608 0.0940522 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 13.97 vpr 63.89 MiB -1 -1 0.80 21432 1 0.19 -1 -1 33432 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 25.2 MiB 0.73 969 14724 4160 8401 2163 63.9 MiB 0.43 0.00 3.82038 -130.284 -3.82038 3.82038 2.22 0.000181972 0.000148061 0.0152471 0.0123553 32 2416 22 6.65987e+06 253560 554710. 1919.41 2.21 0.0367014 0.0306724 22834 132086 -1 2034 18 1179 1689 134701 30772 3.10351 3.10351 -123.82 -3.10351 0 0 701300. 2426.64 1.11 0.05 0.23 -1 -1 1.11 0.0232836 0.0103366 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.42 vpr 63.79 MiB -1 -1 0.63 20976 1 0.05 -1 -1 33760 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.36 1068 16295 4538 9804 1953 63.8 MiB 0.21 0.00 4.27726 -124.118 -4.27726 4.27726 2.79 0.000169881 0.000124943 0.0138367 0.0112482 32 2503 22 6.65987e+06 405696 554710. 1919.41 3.20 0.136345 0.0341435 22834 132086 -1 2162 23 1409 2614 199248 44792 3.56625 3.56625 -116.588 -3.56625 0 0 701300. 2426.64 1.45 0.17 0.24 -1 -1 1.45 0.0576341 0.0562419 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 14.38 vpr 64.09 MiB -1 -1 0.50 21584 1 0.18 -1 -1 33824 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 25.5 MiB 0.72 1153 8402 1956 5598 848 64.1 MiB 0.47 0.00 5.15532 -161.668 -5.15532 5.15532 2.75 0.000181367 0.000145166 0.01102 0.00883895 32 3047 21 6.65987e+06 278916 554710. 1919.41 2.06 0.0429549 0.0356322 22834 132086 -1 2490 22 1763 2625 198538 46171 4.22151 4.22151 -150.599 -4.22151 0 0 701300. 2426.64 1.16 0.12 0.18 -1 -1 1.16 0.0943274 0.0931895 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 17.62 vpr 64.10 MiB -1 -1 0.41 21280 1 0.18 -1 -1 33404 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1091 17397 4924 9824 2649 64.1 MiB 0.32 0.00 5.003 -142.071 -5.003 5.003 2.28 8.3064e-05 6.5811e-05 0.264952 0.262609 26 2869 27 6.65987e+06 405696 477104. 1650.88 5.54 0.318255 0.310812 21682 110474 -1 2401 24 1464 2631 218718 54156 4.38703 4.38703 -140.693 -4.38703 0 0 585099. 2024.56 0.74 0.17 0.20 -1 -1 0.74 0.0147885 0.0131075 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 19.45 vpr 64.14 MiB -1 -1 0.64 21432 1 0.16 -1 -1 33748 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1090 6446 1272 4893 281 64.1 MiB 0.11 0.00 4.26912 -136.624 -4.26912 4.26912 2.71 0.000202363 0.000164588 0.00735051 0.00598336 26 3522 48 6.65987e+06 469086 477104. 1650.88 7.25 0.132344 0.123993 21682 110474 -1 2589 23 1584 2665 277874 61981 3.61031 3.61031 -137.059 -3.61031 0 0 585099. 2024.56 0.87 0.29 0.27 -1 -1 0.87 0.0843316 0.082049 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 13.71 vpr 63.71 MiB -1 -1 0.20 21128 1 0.02 -1 -1 33896 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.1 MiB 0.78 858 11106 2842 6749 1515 63.7 MiB 0.38 0.00 3.61906 -110.793 -3.61906 3.61906 2.59 0.000132116 0.000104254 0.0116341 0.0093416 30 1861 20 6.65987e+06 240882 526063. 1820.29 2.26 0.124363 0.11832 22546 126617 -1 1581 20 799 1273 70669 16439 2.45585 2.45585 -94.8069 -2.45585 0 0 666494. 2306.21 0.93 0.03 0.24 -1 -1 0.93 0.0104883 0.00938779 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 13.70 vpr 64.07 MiB -1 -1 0.28 21432 1 0.12 -1 -1 34108 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 25.4 MiB 0.56 983 13583 4344 7194 2045 64.1 MiB 0.28 0.00 4.78844 -139.067 -4.78844 4.78844 2.96 0.000172451 0.000136865 0.0166578 0.0136642 32 2247 22 6.65987e+06 266238 554710. 1919.41 2.13 0.0437133 0.0373687 22834 132086 -1 1997 21 1498 2374 164500 38258 3.52637 3.52637 -125.429 -3.52637 0 0 701300. 2426.64 0.97 0.11 0.33 -1 -1 0.97 0.0755178 0.0740837 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 17.09 vpr 64.03 MiB -1 -1 0.42 21584 1 0.04 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 25.2 MiB 0.68 1116 12568 3071 7899 1598 64.0 MiB 0.19 0.00 5.00533 -148.1 -5.00533 5.00533 2.60 0.000165582 0.000131416 0.0131479 0.0107622 26 2981 27 6.65987e+06 304272 477104. 1650.88 5.86 0.189793 0.0382439 21682 110474 -1 2617 22 1808 2814 240240 50868 4.29371 4.29371 -140.82 -4.29371 0 0 585099. 2024.56 0.99 0.20 0.14 -1 -1 0.99 0.0131946 0.0117796 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 13.65 vpr 64.02 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33924 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 25.4 MiB 1.11 1080 15187 4594 8064 2529 64.0 MiB 0.38 0.00 5.08067 -147.956 -5.08067 5.08067 2.26 0.000162498 0.00012834 0.0152056 0.0124501 32 2661 24 6.65987e+06 354984 554710. 1919.41 2.34 0.0431303 0.0366274 22834 132086 -1 2177 20 1429 2197 160708 36263 4.39417 4.39417 -144.217 -4.39417 0 0 701300. 2426.64 0.75 0.10 0.16 -1 -1 0.75 0.0689175 0.0676375 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 17.09 vpr 63.86 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33832 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.4 MiB 3.74 989 11223 2996 7351 876 63.9 MiB 0.35 0.00 4.29269 -128.576 -4.29269 4.29269 2.35 0.000165075 0.000131308 0.0119329 0.00975812 32 2241 22 6.65987e+06 393018 554710. 1919.41 2.23 0.040926 0.0347302 22834 132086 -1 1978 20 1350 2182 152265 35695 2.90431 2.90431 -112.586 -2.90431 0 0 701300. 2426.64 1.23 0.33 0.27 -1 -1 1.23 0.0136675 0.0122227 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 14.60 vpr 64.02 MiB -1 -1 0.56 21432 1 0.35 -1 -1 33832 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 25.4 MiB 0.46 1059 15273 4721 8591 1961 64.0 MiB 0.28 0.00 4.76549 -137.908 -4.76549 4.76549 2.87 0.000173412 0.000139975 0.01927 0.0143363 32 2636 19 6.65987e+06 253560 554710. 1919.41 2.57 0.156738 0.147725 22834 132086 -1 2263 20 1357 2383 173914 39226 3.69631 3.69631 -131.863 -3.69631 0 0 701300. 2426.64 1.11 0.25 0.23 -1 -1 1.11 0.0155199 0.014364 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 14.12 vpr 64.05 MiB -1 -1 0.60 21432 1 0.09 -1 -1 33568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 25.4 MiB 1.24 957 9336 2567 5788 981 64.1 MiB 0.15 0.00 4.45269 -125.553 -4.45269 4.45269 2.27 0.000190135 0.000157653 0.106214 0.104439 32 2212 21 6.65987e+06 367662 554710. 1919.41 2.33 0.357884 0.352346 22834 132086 -1 1885 20 1221 1963 136867 32931 3.04431 3.04431 -109.753 -3.04431 0 0 701300. 2426.64 1.18 0.19 0.21 -1 -1 1.18 0.122435 0.120953 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 12.68 vpr 63.40 MiB -1 -1 0.33 20976 1 0.11 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64920 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.8 MiB 0.26 684 12416 3704 6939 1773 63.4 MiB 0.24 0.00 3.74649 -110.459 -3.74649 3.74649 2.51 0.000177207 0.000146202 0.0117666 0.00956856 32 1636 29 6.65987e+06 190170 554710. 1919.41 2.05 0.0640722 0.0594987 22834 132086 -1 1448 19 845 1255 94066 22494 2.92385 2.92385 -104.507 -2.92385 0 0 701300. 2426.64 0.99 0.29 0.29 -1 -1 0.99 0.216065 0.214845 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 15.33 vpr 64.04 MiB -1 -1 0.49 21280 1 0.03 -1 -1 33728 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.65 960 15004 4235 7978 2791 64.0 MiB 0.49 0.00 4.36949 -132.189 -4.36949 4.36949 2.82 0.000185384 0.000148506 0.19324 0.190425 32 2302 19 6.65987e+06 380340 554710. 1919.41 2.67 0.32009 0.314378 22834 132086 -1 2000 19 1289 2064 160145 35763 3.75771 3.75771 -128.564 -3.75771 0 0 701300. 2426.64 0.81 0.09 0.23 -1 -1 0.81 0.0128487 0.0115582 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 14.45 vpr 64.15 MiB -1 -1 0.77 21432 1 0.07 -1 -1 33804 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 25.5 MiB 0.76 1050 14907 5385 7856 1666 64.2 MiB 0.25 0.00 4.72838 -146.592 -4.72838 4.72838 2.62 0.000189865 0.000153789 0.0171167 0.0140155 32 2630 21 6.65987e+06 253560 554710. 1919.41 2.37 0.0689549 0.0614925 22834 132086 -1 2230 22 1840 2990 221471 50918 4.14117 4.14117 -142.698 -4.14117 0 0 701300. 2426.64 1.08 0.20 0.11 -1 -1 1.08 0.0135297 0.0120474 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 13.32 vpr 63.47 MiB -1 -1 0.65 21280 1 0.17 -1 -1 33416 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64996 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 24.9 MiB 0.74 894 13403 4479 6698 2226 63.5 MiB 0.11 0.00 4.19577 -118.859 -4.19577 4.19577 2.31 0.000147502 0.000109262 0.0126762 0.0101537 28 2196 21 6.65987e+06 240882 500653. 1732.36 2.77 0.0380579 0.031826 21970 115934 -1 1851 20 1036 1383 108668 24955 3.26225 3.26225 -110.746 -3.26225 0 0 612192. 2118.31 1.38 0.29 0.28 -1 -1 1.38 0.00974122 0.00864199 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 13.27 vpr 63.50 MiB -1 -1 0.59 20976 1 0.02 -1 -1 33780 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.34 776 8868 2239 6065 564 63.5 MiB 0.13 0.00 3.80235 -109.947 -3.80235 3.80235 2.61 6.3708e-05 4.9993e-05 0.00559361 0.00455718 26 1970 25 6.65987e+06 266238 477104. 1650.88 2.90 0.241068 0.236242 21682 110474 -1 1723 23 1176 1960 153298 34555 2.80565 2.80565 -104.334 -2.80565 0 0 585099. 2024.56 0.81 0.12 0.41 -1 -1 0.81 0.0100552 0.0088737 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 15.94 vpr 64.10 MiB -1 -1 0.38 21280 1 0.10 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 25.4 MiB 0.49 1094 12167 3085 7463 1619 64.1 MiB 0.09 0.00 4.97701 -158.279 -4.97701 4.97701 2.53 0.000161312 0.000129816 0.0121909 0.00999423 26 3090 32 6.65987e+06 316950 477104. 1650.88 4.69 0.0534652 0.0428262 21682 110474 -1 2508 23 1898 2512 210561 46734 4.30183 4.30183 -155.617 -4.30183 0 0 585099. 2024.56 0.75 0.24 0.33 -1 -1 0.75 0.013143 0.0117014 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 17.61 vpr 63.81 MiB -1 -1 0.57 20976 1 0.21 -1 -1 33548 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 25.1 MiB 1.18 1053 6923 1467 5091 365 63.8 MiB 0.07 0.00 5.03847 -147.541 -5.03847 5.03847 2.98 0.000194142 0.000160188 0.00813949 0.00673389 28 2980 22 6.65987e+06 354984 500653. 1732.36 5.44 0.143717 0.137558 21970 115934 -1 2306 21 1618 2412 176317 40884 4.33597 4.33597 -146.027 -4.33597 0 0 612192. 2118.31 0.86 0.22 0.48 -1 -1 0.86 0.0128865 0.0114883 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 15.63 vpr 63.96 MiB -1 -1 0.50 21432 1 0.05 -1 -1 33788 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1239 17268 4300 11396 1572 64.0 MiB 0.53 0.11 5.24834 -143.442 -5.24834 5.24834 2.60 0.00018549 0.000140778 0.0169858 0.0139239 30 2758 25 6.65987e+06 456408 526063. 1820.29 3.65 0.119954 0.112157 22546 126617 -1 2371 21 1238 2402 146964 32150 4.16083 4.16083 -133.389 -4.16083 0 0 666494. 2306.21 0.76 0.05 0.25 -1 -1 0.76 0.010236 0.00895383 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 13.14 vpr 63.72 MiB -1 -1 0.50 20976 1 0.04 -1 -1 33712 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.1 MiB 1.08 853 11223 2920 7020 1283 63.7 MiB 0.10 0.00 3.39798 -101.422 -3.39798 3.39798 2.36 0.000175899 0.000143298 0.0110945 0.0090861 26 2061 23 6.65987e+06 393018 477104. 1650.88 3.20 0.0357329 0.030183 21682 110474 -1 1868 18 1213 2055 145704 34724 2.80371 2.80371 -101.985 -2.80371 0 0 585099. 2024.56 0.65 0.18 0.27 -1 -1 0.65 0.0106915 0.00950961 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 12.02 vpr 63.34 MiB -1 -1 0.40 21128 1 0.11 -1 -1 34156 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64860 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.8 MiB 0.06 562 12120 3232 7522 1366 63.3 MiB 0.15 0.00 3.49724 -92.7291 -3.49724 3.49724 2.76 0.000160291 0.000127029 0.012295 0.0098888 28 1503 22 6.65987e+06 266238 500653. 1732.36 2.26 0.0362898 0.0302729 21970 115934 -1 1367 23 1081 1581 120522 28570 2.71577 2.71577 -91.1214 -2.71577 0 0 612192. 2118.31 0.77 0.08 0.34 -1 -1 0.77 0.0582219 0.0570086 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.31 vpr 64.01 MiB -1 -1 0.58 21736 1 0.09 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.6 MiB 0.45 1323 15969 4617 8792 2560 64.0 MiB 0.25 0.00 4.09377 -133.735 -4.09377 4.09377 2.48 0.000216131 0.000176539 0.019158 0.0157759 28 3675 45 6.65987e+06 329628 500653. 1732.36 4.88 0.204784 0.194352 21970 115934 -1 2897 19 1932 3279 249002 53716 3.62139 3.62139 -131.023 -3.62139 0 0 612192. 2118.31 0.78 0.16 0.34 -1 -1 0.78 0.119617 0.0131375 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.38 vpr 64.02 MiB -1 -1 0.79 21736 1 0.06 -1 -1 33868 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 25.2 MiB 3.09 1078 12528 4327 6387 1814 64.0 MiB 0.31 0.23 5.17417 -151.407 -5.17417 5.17417 2.54 0.000181277 0.000144373 0.0149598 0.0122692 32 2753 22 6.65987e+06 266238 554710. 1919.41 2.38 0.246568 0.239404 22834 132086 -1 2282 21 1708 2595 216768 47454 4.38517 4.38517 -148.257 -4.38517 0 0 701300. 2426.64 0.89 0.32 0.34 -1 -1 0.89 0.0117034 0.010493 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 18.03 vpr 63.62 MiB -1 -1 0.61 21584 1 0.15 -1 -1 33904 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 25.1 MiB 3.05 964 14856 4683 7908 2265 63.6 MiB 0.34 0.00 4.1377 -130.564 -4.1377 4.1377 3.24 0.000147766 0.000117085 0.143536 0.140585 32 2171 20 6.65987e+06 228204 554710. 1919.41 2.71 0.199996 0.194208 22834 132086 -1 1934 19 1317 1944 141571 32307 3.53756 3.53756 -126.092 -3.53756 0 0 701300. 2426.64 1.03 0.02 0.42 -1 -1 1.03 0.00690963 0.00629059 126 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 13.48 vpr 63.91 MiB -1 -1 0.51 21432 1 0.02 -1 -1 33836 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 1012 18199 5227 11404 1568 63.9 MiB 0.22 0.00 4.85416 -126.382 -4.85416 4.85416 2.62 0.000163132 0.000130477 0.0166744 0.0133698 26 2667 26 6.65987e+06 380340 477104. 1650.88 3.39 0.309564 0.188835 21682 110474 -1 2147 22 1218 1993 155083 36118 3.76645 3.76645 -124.796 -3.76645 0 0 585099. 2024.56 1.03 0.25 0.21 -1 -1 1.03 0.0116192 0.010274 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 13.31 vpr 64.13 MiB -1 -1 0.43 21432 1 0.02 -1 -1 33796 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 25.4 MiB 0.72 1069 18054 5191 10505 2358 64.1 MiB 0.27 0.00 4.75754 -136.396 -4.75754 4.75754 2.50 0.000171813 0.000139055 0.0712609 0.0682239 32 2485 22 6.65987e+06 418374 554710. 1919.41 2.35 0.154525 0.14255 22834 132086 -1 2209 20 1432 2333 172652 38504 3.37811 3.37811 -123.135 -3.37811 0 0 701300. 2426.64 0.95 0.15 0.35 -1 -1 0.95 0.112079 0.110645 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 13.55 vpr 63.86 MiB -1 -1 0.63 21280 1 0.15 -1 -1 33924 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.31 999 9333 2113 6300 920 63.9 MiB 0.22 0.00 3.66846 -111.209 -3.66846 3.66846 2.73 0.000154665 0.000123545 0.0090687 0.00746416 32 2352 21 6.65987e+06 393018 554710. 1919.41 2.89 0.0321948 0.0270197 22834 132086 -1 2074 22 1327 2197 168002 37989 2.89191 2.89191 -104.742 -2.89191 0 0 701300. 2426.64 0.83 0.10 0.18 -1 -1 0.83 0.0500403 0.0486382 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 13.19 vpr 64.14 MiB -1 -1 0.44 21280 1 0.03 -1 -1 33696 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.5 MiB 0.33 1084 14713 4574 7744 2395 64.1 MiB 0.23 0.00 4.85897 -149.918 -4.85897 4.85897 2.86 0.000169494 0.000136511 0.140208 0.137434 32 3081 26 6.65987e+06 304272 554710. 1919.41 2.17 0.219811 0.212353 22834 132086 -1 2484 20 1987 3003 234271 54312 4.08025 4.08025 -143.874 -4.08025 0 0 701300. 2426.64 0.88 0.17 0.31 -1 -1 0.88 0.153278 0.151901 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 12.71 vpr 64.15 MiB -1 -1 0.43 21888 1 0.17 -1 -1 33712 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 25.5 MiB 0.83 1057 18773 5614 10501 2658 64.1 MiB 0.40 0.00 4.57498 -141.369 -4.57498 4.57498 2.63 0.000232753 0.000141082 0.139659 0.136217 28 2488 21 6.65987e+06 431052 500653. 1732.36 2.66 0.245547 0.238225 21970 115934 -1 2269 18 1269 1970 143696 32000 3.37091 3.37091 -127.74 -3.37091 0 0 612192. 2118.31 0.53 0.12 0.24 -1 -1 0.53 0.0135305 0.0121466 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 12.43 vpr 63.52 MiB -1 -1 0.29 20824 1 0.17 -1 -1 33688 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 24.8 MiB 0.61 520 12528 3273 8240 1015 63.5 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 2.33 0.000183934 0.000154958 0.064558 0.00949455 32 1509 20 6.65987e+06 215526 554710. 1919.41 2.69 0.13071 0.0719715 22834 132086 -1 1340 20 951 1328 112971 27296 2.74517 2.74517 -94.6149 -2.74517 0 0 701300. 2426.64 0.76 0.11 0.16 -1 -1 0.76 0.0948997 0.093837 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 13.08 vpr 63.56 MiB -1 -1 0.55 21584 1 0.05 -1 -1 34084 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 25.1 MiB 0.75 961 12345 3304 7210 1831 63.6 MiB 0.16 0.00 3.97227 -126.423 -3.97227 3.97227 2.42 0.00015902 0.000126283 0.09809 0.0957955 32 2074 22 6.65987e+06 253560 554710. 1919.41 2.65 0.119794 0.114289 22834 132086 -1 1846 20 1382 1825 150330 33395 3.14377 3.14377 -116.8 -3.14377 0 0 701300. 2426.64 0.88 0.37 0.25 -1 -1 0.88 0.139341 0.138064 116 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 13.64 vpr 63.94 MiB -1 -1 0.32 21584 1 0.18 -1 -1 33788 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.2 MiB 0.38 918 7988 1511 6133 344 63.9 MiB 0.12 0.00 4.586 -121.831 -4.586 4.586 2.34 0.000167365 0.000135478 0.0074725 0.00621123 26 2466 46 6.65987e+06 469086 477104. 1650.88 4.09 0.12393 0.117216 21682 110474 -1 2051 21 1189 2186 143750 34653 3.66531 3.66531 -123.472 -3.66531 0 0 585099. 2024.56 0.55 0.14 0.14 -1 -1 0.55 0.111771 0.110396 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 13.27 vpr 63.44 MiB -1 -1 0.41 21280 1 0.02 -1 -1 34012 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64960 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 24.8 MiB 0.44 913 13076 3345 8177 1554 63.4 MiB 0.14 0.00 4.16472 -115.101 -4.16472 4.16472 2.03 0.000138953 0.000110049 0.0116361 0.00942224 26 2335 22 6.65987e+06 266238 477104. 1650.88 2.67 0.0853877 0.0792924 21682 110474 -1 1983 22 1201 1563 120338 28160 3.21591 3.21591 -110.777 -3.21591 0 0 585099. 2024.56 1.15 0.03 0.10 -1 -1 1.15 0.010151 0.00895864 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 13.37 vpr 63.43 MiB -1 -1 0.74 21432 1 0.05 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64948 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 24.9 MiB 0.60 840 12980 3474 8543 963 63.4 MiB 0.19 0.00 3.73708 -117.005 -3.73708 3.73708 2.21 0.000153837 0.000122381 0.0126295 0.0102317 32 2039 20 6.65987e+06 202848 554710. 1919.41 3.14 0.0366303 0.0305555 22834 132086 -1 1895 20 1345 2275 189875 42263 2.87965 2.87965 -111.934 -2.87965 0 0 701300. 2426.64 0.92 0.19 0.32 -1 -1 0.92 0.00884211 0.00782272 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 12.17 vpr 63.91 MiB -1 -1 0.34 21736 1 0.07 -1 -1 33508 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 25.4 MiB 0.75 874 11348 2922 7210 1216 63.9 MiB 0.29 0.00 4.00794 -116.831 -4.00794 4.00794 2.11 0.000186902 0.00013989 0.0122115 0.00985808 26 2298 26 6.65987e+06 443730 477104. 1650.88 2.66 0.193576 0.0769079 21682 110474 -1 1930 23 1614 2486 162553 39680 3.11237 3.11237 -112.795 -3.11237 0 0 585099. 2024.56 0.88 0.08 0.25 -1 -1 0.88 0.0622346 0.0611406 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 12.02 vpr 63.64 MiB -1 -1 0.33 21432 1 0.03 -1 -1 33460 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 24.9 MiB 0.48 755 6846 1343 5305 198 63.6 MiB 0.15 0.00 3.8773 -116.608 -3.8773 3.8773 2.44 0.000137432 0.000109114 0.00730723 0.00596196 28 2204 28 6.65987e+06 240882 500653. 1732.36 2.91 0.123759 0.0247602 21970 115934 -1 1805 21 1124 1620 120174 28100 2.98957 2.98957 -109.832 -2.98957 0 0 612192. 2118.31 0.70 0.02 0.31 -1 -1 0.70 0.00482924 0.00425972 108 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 15.29 vpr 63.96 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33540 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.2 MiB 0.92 979 15863 4619 8770 2474 64.0 MiB 0.11 0.00 3.70512 -117.413 -3.70512 3.70512 2.73 0.000172015 0.00013621 0.0107385 0.00863521 28 2346 22 6.65987e+06 393018 500653. 1732.36 3.86 0.0421255 0.0354034 21970 115934 -1 2005 21 1259 2252 173977 37393 2.77191 2.77191 -107.034 -2.77191 0 0 612192. 2118.31 0.83 0.12 0.53 -1 -1 0.83 0.0912774 0.0896702 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.37 vpr 63.99 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33816 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.4 MiB 2.72 976 17159 4932 10231 1996 64.0 MiB 0.27 0.00 4.34696 -137.767 -4.34696 4.34696 2.40 0.000196074 0.000157189 0.0167079 0.013622 32 2144 23 6.65987e+06 405696 554710. 1919.41 2.97 0.076872 0.0691289 22834 132086 -1 1953 19 1355 1927 139366 32359 3.23882 3.23882 -127.364 -3.23882 0 0 701300. 2426.64 0.93 0.10 0.39 -1 -1 0.93 0.077748 0.0763407 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 13.34 vpr 63.70 MiB -1 -1 0.44 21432 1 0.21 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.9 MiB 0.89 668 7781 1699 5777 305 63.7 MiB 0.12 0.00 3.26384 -99.6676 -3.26384 3.26384 2.54 0.000149886 0.000119017 0.00826082 0.00675345 28 1984 44 6.65987e+06 215526 500653. 1732.36 2.97 0.0732136 0.0673876 21970 115934 -1 1645 19 942 1437 123250 30526 3.00505 3.00505 -105.438 -3.00505 0 0 612192. 2118.31 0.81 0.03 0.21 -1 -1 0.81 0.0102581 0.00910319 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 13.02 vpr 63.61 MiB -1 -1 0.54 21128 1 0.04 -1 -1 33552 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 25.0 MiB 0.32 794 6203 1260 4522 421 63.6 MiB 0.19 0.00 4.22769 -129.19 -4.22769 4.22769 2.32 0.000159657 0.000129095 0.0826848 0.0814657 28 2579 36 6.65987e+06 240882 500653. 1732.36 2.83 0.112285 0.106537 21970 115934 -1 2036 24 1581 2366 175371 43562 3.11651 3.11651 -117.093 -3.11651 0 0 612192. 2118.31 0.90 0.18 0.17 -1 -1 0.90 0.109714 0.108376 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 13.50 vpr 63.79 MiB -1 -1 0.61 21432 1 0.22 -1 -1 33696 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1125 13505 4132 7011 2362 63.8 MiB 0.28 0.00 4.57684 -138.254 -4.57684 4.57684 2.60 0.000155564 0.000124195 0.0102394 0.00831129 32 2501 22 6.65987e+06 278916 554710. 1919.41 2.48 0.11553 0.109428 22834 132086 -1 2218 19 1571 2245 176338 39928 3.59051 3.59051 -128.335 -3.59051 0 0 701300. 2426.64 0.89 0.11 0.41 -1 -1 0.89 0.0750705 0.0737898 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 13.64 vpr 63.85 MiB -1 -1 0.54 21432 1 0.18 -1 -1 33560 -1 -1 28 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 25.2 MiB 1.16 892 10583 2550 7235 798 63.8 MiB 0.05 0.00 4.50014 -117.038 -4.50014 4.50014 2.17 0.00022968 0.000196465 0.00752789 0.00617829 32 2080 20 6.65987e+06 354984 554710. 1919.41 2.22 0.0941201 0.0886319 22834 132086 -1 1828 19 866 1438 94511 22116 2.99731 2.99731 -103.782 -2.99731 0 0 701300. 2426.64 1.06 0.02 0.32 -1 -1 1.06 0.00553346 0.00496833 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 14.11 vpr 63.84 MiB -1 -1 0.50 21736 1 0.17 -1 -1 33820 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 25.6 MiB 0.67 1086 7383 1628 5394 361 63.8 MiB 0.18 0.00 5.16517 -163.631 -5.16517 5.16517 2.52 0.000180427 0.000144785 0.00951422 0.00796851 32 2920 23 6.65987e+06 291594 554710. 1919.41 2.38 0.245735 0.240064 22834 132086 -1 2367 23 1921 2795 213019 48739 3.76211 3.76211 -142.445 -3.76211 0 0 701300. 2426.64 1.02 0.06 0.32 -1 -1 1.02 0.0159285 0.0142205 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 12.43 vpr 63.36 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33624 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64876 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.29 592 6556 1291 4487 778 63.4 MiB 0.05 0.00 3.5672 -94.4593 -3.5672 3.5672 2.37 0.000128058 0.000100838 0.00656656 0.00534122 32 1464 20 6.65987e+06 228204 554710. 1919.41 2.52 0.101444 0.0966026 22834 132086 -1 1272 17 683 1048 65988 18022 2.60051 2.60051 -92.4535 -2.60051 0 0 701300. 2426.64 1.14 0.10 0.45 -1 -1 1.14 0.086216 0.0853806 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 17.40 vpr 64.21 MiB -1 -1 0.38 21584 1 0.16 -1 -1 33640 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1151 14083 3602 8814 1667 64.2 MiB 0.20 0.00 4.1637 -141.581 -4.1637 4.1637 2.49 0.000196167 0.000158828 0.0150689 0.0124102 26 2855 28 6.65987e+06 418374 477104. 1650.88 4.11 0.350284 0.225366 21682 110474 -1 2428 17 1540 2262 205281 43246 3.74877 3.74877 -142.669 -3.74877 0 0 585099. 2024.56 1.02 0.02 0.20 -1 -1 1.02 0.00616166 0.00552918 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 12.89 vpr 63.76 MiB -1 -1 0.63 21432 1 0.03 -1 -1 33144 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 25.2 MiB 0.64 838 12464 4352 6338 1774 63.8 MiB 0.20 0.00 3.54047 -123.895 -3.54047 3.54047 2.65 0.000177827 0.000142299 0.014836 0.0120821 30 1801 21 6.65987e+06 202848 526063. 1820.29 2.64 0.146909 0.139396 22546 126617 -1 1561 17 1049 1497 77220 22366 3.01617 3.01617 -121.021 -3.01617 0 0 666494. 2306.21 0.84 0.08 0.18 -1 -1 0.84 0.010939 0.00983523 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 13.75 vpr 64.02 MiB -1 -1 0.38 21280 1 0.16 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 1.19 989 16079 4722 9035 2322 64.0 MiB 0.36 0.00 4.19332 -128.751 -4.19332 4.19332 2.52 0.000176067 0.000141488 0.0151648 0.0123052 32 2303 20 6.65987e+06 393018 554710. 1919.41 2.53 0.0401984 0.0337846 22834 132086 -1 1944 20 1024 1476 102935 24438 3.08031 3.08031 -112.745 -3.08031 0 0 701300. 2426.64 1.05 0.14 0.32 -1 -1 1.05 0.118487 0.0114678 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 17.79 vpr 63.93 MiB -1 -1 0.39 21432 1 0.02 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 25.7 MiB 1.11 1359 11969 3395 7471 1103 63.9 MiB 0.25 0.00 6.16929 -186.366 -6.16929 6.16929 2.26 0.000209854 0.000173789 0.0107131 0.00882311 30 3043 24 6.65987e+06 316950 526063. 1820.29 2.94 0.161378 0.15445 22546 126617 -1 2616 22 1610 2379 143134 33077 4.59557 4.59557 -159.022 -4.59557 0 0 666494. 2306.21 0.92 0.17 0.15 -1 -1 0.92 0.0171735 0.0155679 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 12.43 vpr 63.34 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33880 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64856 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 24.6 MiB 0.43 745 7177 1689 4856 632 63.3 MiB 0.05 0.00 3.31307 -103.404 -3.31307 3.31307 2.75 0.00012233 9.5761e-05 0.00610153 0.00491755 32 1675 19 6.65987e+06 215526 554710. 1919.41 2.39 0.179699 0.175286 22834 132086 -1 1453 19 628 782 64696 14673 2.39717 2.39717 -94.6099 -2.39717 0 0 701300. 2426.64 1.01 0.02 0.38 -1 -1 1.01 0.00765598 0.00676983 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 12.08 vpr 63.59 MiB -1 -1 0.44 21128 1 0.11 -1 -1 33868 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.9 MiB 0.35 650 12030 3133 7171 1726 63.6 MiB 0.26 0.00 4.01089 -115.329 -4.01089 4.01089 2.52 0.00014927 0.000119813 0.00743115 0.00584523 30 1505 18 6.65987e+06 202848 526063. 1820.29 2.52 0.0902766 0.0283283 22546 126617 -1 1346 15 670 1074 59031 14593 2.86577 2.86577 -104.259 -2.86577 0 0 666494. 2306.21 0.86 0.03 0.29 -1 -1 0.86 0.00968039 0.00871673 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 25.17 vpr 63.55 MiB -1 -1 0.15 21128 1 0.13 -1 -1 33884 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.33 882 9385 2433 6375 577 63.6 MiB 0.13 0.00 3.38183 -110.848 -3.38183 3.38183 2.40 0.000159156 0.000127222 0.086645 0.0848959 26 2437 26 6.65987e+06 266238 477104. 1650.88 3.90 0.174048 0.167893 21682 110474 -1 2088 20 1280 2284 187869 41747 2.89185 2.89185 -114.796 -2.89185 0 0 585099. 2024.56 0.64 0.15 0.21 -1 -1 0.64 0.0107937 0.00962254 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 25.54 vpr 63.29 MiB -1 -1 0.54 21128 1 0.11 -1 -1 33984 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64804 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.6 MiB 0.21 449 9966 3407 4404 2155 63.3 MiB 0.03 0.00 3.08755 -73.109 -3.08755 3.08755 2.81 4.9934e-05 3.8314e-05 0.00353064 0.0027907 30 1370 31 6.65987e+06 342306 526063. 1820.29 2.95 0.0242532 0.0200155 22546 126617 -1 1021 19 627 1055 55046 15357 2.58539 2.58539 -70.2122 -2.58539 0 0 666494. 2306.21 0.80 0.10 0.18 -1 -1 0.80 0.00815162 0.00717133 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 24.70 vpr 63.96 MiB -1 -1 0.47 21432 1 0.03 -1 -1 33708 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 25.2 MiB 1.01 1061 14724 4524 7950 2250 64.0 MiB 0.32 0.00 3.87115 -126.135 -3.87115 3.87115 2.43 0.000186387 0.000149318 0.0884326 0.085274 32 2737 23 6.65987e+06 253560 554710. 1919.41 2.76 0.203996 0.174324 22834 132086 -1 2306 23 1516 2740 212466 46393 3.42705 3.42705 -123.927 -3.42705 0 0 701300. 2426.64 0.90 0.15 0.21 -1 -1 0.90 0.0143289 0.0127044 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.44 vpr 64.05 MiB -1 -1 0.63 21280 1 0.07 -1 -1 33752 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 25.4 MiB 1.18 975 9075 1909 6647 519 64.1 MiB 0.28 0.00 4.32075 -139.498 -4.32075 4.32075 2.34 0.000183343 0.000146694 0.0104796 0.00864093 32 2278 20 6.65987e+06 418374 554710. 1919.41 2.33 0.0411834 0.0344837 22834 132086 -1 2040 20 1370 2126 149262 34342 3.08137 3.08137 -121.829 -3.08137 0 0 701300. 2426.64 1.20 0.14 0.60 -1 -1 1.20 0.0126774 0.0112057 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 25.09 vpr 64.76 MiB -1 -1 0.57 21584 1 0.38 -1 -1 33184 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 26.1 MiB 7.38 826 9531 3925 5345 261 64.8 MiB 0.13 0.00 5.4415 -158.508 -5.4415 5.4415 2.14 0.000180317 0.00014595 0.0612286 0.0590642 46 2558 41 6.95648e+06 188184 828058. 2865.25 7.88 0.313944 0.303477 28066 200906 -1 1864 24 1375 2137 175286 37772 4.36336 4.36336 -146.028 -4.36336 0 0 1.01997e+06 3529.29 1.23 0.21 0.35 -1 -1 1.23 0.00923027 0.0083153 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 34.44 vpr 64.59 MiB -1 -1 0.50 21280 1 0.04 -1 -1 33548 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 26.0 MiB 8.16 821 11487 4767 6319 401 64.6 MiB 0.19 0.00 4.63327 -139.023 -4.63327 4.63327 2.09 0.000204531 0.000167679 0.0134104 0.0109708 36 3133 47 6.95648e+06 217135 648988. 2245.63 16.04 0.120418 0.108607 26050 158493 -1 2274 24 2149 3039 368868 87190 4.58011 4.58011 -154.102 -4.58011 0 0 828058. 2865.25 0.78 0.35 0.44 -1 -1 0.78 0.0142113 0.0124625 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 29.97 vpr 64.55 MiB -1 -1 0.32 21432 1 0.07 -1 -1 33860 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 25.9 MiB 3.73 882 10726 4435 6115 176 64.5 MiB 0.13 0.00 3.82865 -122.325 -3.82865 3.82865 2.49 0.000220885 0.000186015 0.0119326 0.00964756 36 3082 32 6.95648e+06 217135 648988. 2245.63 16.47 0.357448 0.267405 26050 158493 -1 2213 21 1512 2041 243216 57764 4.14272 4.14272 -134.304 -4.14272 0 0 828058. 2865.25 0.91 0.36 0.23 -1 -1 0.91 0.0123253 0.0110278 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 32.54 vpr 64.52 MiB -1 -1 0.48 21280 1 0.20 -1 -1 33820 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 25.8 MiB 0.94 723 14356 5004 7145 2207 64.5 MiB 0.08 0.00 4.16078 -115.782 -4.16078 4.16078 2.41 0.000166705 0.000133671 0.0153969 0.0125432 40 1885 36 6.95648e+06 275038 706193. 2443.58 21.83 0.104445 0.0865984 26914 176310 -1 1616 30 1780 3002 329535 137320 3.83102 3.83102 -121.913 -3.83102 0 0 926341. 3205.33 1.05 0.19 0.28 -1 -1 1.05 0.0152318 0.0134246 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 23.90 vpr 64.67 MiB -1 -1 0.64 21432 1 0.08 -1 -1 33556 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 25.9 MiB 2.64 749 12292 4613 5164 2515 64.7 MiB 0.26 0.18 4.40715 -128.632 -4.40715 4.40715 2.11 7.1844e-05 5.5048e-05 0.00881126 0.00720305 46 2451 40 6.95648e+06 231611 828058. 2865.25 10.32 0.213437 0.203084 28066 200906 -1 1909 25 1380 2352 186265 40919 4.82586 4.82586 -139.578 -4.82586 0 0 1.01997e+06 3529.29 1.28 0.25 0.22 -1 -1 1.28 0.0627553 0.0615462 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 26.86 vpr 64.57 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33696 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 25.9 MiB 3.08 768 12919 4485 6787 1647 64.6 MiB 0.16 0.01 3.0405 -113.87 -3.0405 3.0405 2.51 8.1882e-05 6.2273e-05 0.122687 0.120591 40 2304 25 6.95648e+06 303989 706193. 2443.58 6.37 0.357985 0.339446 26914 176310 -1 1976 19 1426 2147 191264 42628 3.78697 3.78697 -130.119 -3.78697 0 0 926341. 3205.33 1.24 0.12 0.35 -1 -1 1.24 0.0122775 0.0109902 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 31.61 vpr 63.91 MiB -1 -1 0.54 21128 1 0.01 -1 -1 33872 -1 -1 13 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 25.5 MiB 15.21 452 7969 3251 4260 458 63.9 MiB 0.03 0.00 3.56899 -94.1044 -3.56899 3.56899 2.44 0.000144858 0.000115729 0.00855758 0.00687269 36 1895 42 6.95648e+06 188184 648988. 2245.63 6.14 0.177575 0.168428 26050 158493 -1 1338 20 954 1459 126832 28456 3.21632 3.21632 -99.4111 -3.21632 0 0 828058. 2865.25 0.83 0.07 0.58 -1 -1 0.83 0.00961939 0.00840181 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 40.15 vpr 64.43 MiB -1 -1 0.33 21128 1 0.03 -1 -1 33712 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.8 MiB 1.35 666 12373 5100 6745 528 64.4 MiB 0.13 0.00 2.8601 -92.4221 -2.8601 2.8601 2.52 0.000232638 0.000194624 0.0436426 0.041499 38 2312 48 6.95648e+06 361892 678818. 2348.85 29.62 0.414307 0.324809 26626 170182 -1 1628 23 1279 2033 177106 42350 2.89252 2.89252 -101.096 -2.89252 0 0 902133. 3121.57 1.45 0.11 0.25 -1 -1 1.45 0.049976 0.0486464 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 23.61 vpr 64.17 MiB -1 -1 0.60 21584 1 0.20 -1 -1 33572 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 25.6 MiB 6.29 588 11234 4630 5959 645 64.2 MiB 0.15 0.00 3.43049 -116.456 -3.43049 3.43049 2.55 0.000149637 0.000117562 0.0126001 0.0101894 46 2204 40 6.95648e+06 159232 828058. 2865.25 6.40 0.0592473 0.048775 28066 200906 -1 1658 32 1457 2042 213244 64863 3.83306 3.83306 -128.52 -3.83306 0 0 1.01997e+06 3529.29 1.05 0.19 0.45 -1 -1 1.05 0.015197 0.0133318 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 19.02 vpr 64.37 MiB -1 -1 0.41 21280 1 0.03 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 25.8 MiB 3.24 622 12629 5382 6987 260 64.4 MiB 0.13 0.00 3.30928 -114.751 -3.30928 3.30928 2.42 6.7812e-05 5.1403e-05 0.00817798 0.00646188 40 1847 26 6.95648e+06 144757 706193. 2443.58 5.70 0.0484958 0.0402336 26914 176310 -1 1509 18 1189 1666 138391 31163 3.20912 3.20912 -122.324 -3.20912 0 0 926341. 3205.33 1.00 0.17 0.42 -1 -1 1.00 0.00941837 0.00888705 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 21.31 vpr 64.35 MiB -1 -1 0.61 21128 1 0.19 -1 -1 33884 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 25.8 MiB 5.89 475 7824 3190 4249 385 64.4 MiB 0.19 0.00 3.43453 -102.36 -3.43453 3.43453 2.93 0.000242563 0.000205191 0.00899468 0.00733942 40 1597 27 6.95648e+06 173708 706193. 2443.58 5.11 0.11901 0.109945 26914 176310 -1 1395 25 1356 1880 165541 41571 3.47207 3.47207 -115.711 -3.47207 0 0 926341. 3205.33 0.97 0.31 0.38 -1 -1 0.97 0.077944 0.0764055 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 22.90 vpr 64.18 MiB -1 -1 0.48 21280 1 0.09 -1 -1 33712 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 25.6 MiB 4.51 640 8444 2709 4034 1701 64.2 MiB 0.04 0.00 3.41669 -115.288 -3.41669 3.41669 2.53 0.000135629 0.000106622 0.0106531 0.00865147 52 1767 33 6.95648e+06 144757 926341. 3205.33 6.90 0.0570838 0.0479341 29218 227130 -1 978 18 1011 1371 90377 24634 2.82377 2.82377 -99.8991 -2.82377 0 0 1.14541e+06 3963.36 1.29 0.13 0.47 -1 -1 1.29 0.112195 0.111101 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 26.60 vpr 64.56 MiB -1 -1 0.46 21128 1 0.09 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66112 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 26.1 MiB 5.80 907 12247 3271 6962 2014 64.6 MiB 0.16 0.00 3.99843 -134.014 -3.99843 3.99843 2.78 0.000165649 0.00013291 0.115179 0.112516 38 2914 28 6.95648e+06 217135 678818. 2348.85 10.94 0.557115 0.46064 26626 170182 -1 2409 22 1853 2752 277052 55830 3.59291 3.59291 -134.501 -3.59291 0 0 902133. 3121.57 0.94 0.07 0.30 -1 -1 0.94 0.0130812 0.0116587 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 21.38 vpr 64.63 MiB -1 -1 0.37 21128 1 0.23 -1 -1 33976 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 25.9 MiB 2.39 823 10481 3378 5508 1595 64.6 MiB 0.26 0.00 4.48063 -137.796 -4.48063 4.48063 2.56 0.000165179 0.000131776 0.20283 0.00982467 38 2478 41 6.95648e+06 318465 678818. 2348.85 8.13 0.256258 0.0550947 26626 170182 -1 2026 19 1645 2369 215964 44090 4.00306 4.00306 -139.217 -4.00306 0 0 902133. 3121.57 1.14 0.16 0.33 -1 -1 1.14 0.0107719 0.00936293 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 20.67 vpr 64.16 MiB -1 -1 0.44 21432 1 0.05 -1 -1 33736 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 25.5 MiB 4.44 466 9684 3088 4807 1789 64.2 MiB 0.10 0.00 3.10275 -86.0877 -3.10275 3.10275 2.42 0.000117362 9.0968e-05 0.0473277 0.00810297 48 1267 42 6.95648e+06 188184 865456. 2994.66 6.01 0.0868663 0.0413431 28354 207349 -1 949 21 918 1382 105309 27477 2.94567 2.94567 -87.636 -2.94567 0 0 1.05005e+06 3633.38 1.19 0.05 0.37 -1 -1 1.19 0.00665505 0.00599003 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 44.89 vpr 64.66 MiB -1 -1 0.34 21280 1 0.18 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 25.9 MiB 3.18 788 12681 5030 6764 887 64.7 MiB 0.28 0.10 3.0625 -114.371 -3.0625 3.0625 2.48 0.000172068 0.00013778 0.0688953 0.0659391 38 2632 33 6.95648e+06 246087 678818. 2348.85 32.17 0.48551 0.463963 26626 170182 -1 1938 25 1671 2610 207508 44448 3.38287 3.38287 -123.234 -3.38287 0 0 902133. 3121.57 1.04 0.24 0.33 -1 -1 1.04 0.0144955 0.0128404 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 23.87 vpr 64.56 MiB -1 -1 0.37 21584 1 0.03 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 26.1 MiB 6.56 836 12528 5339 6666 523 64.6 MiB 0.45 0.00 4.46486 -139.906 -4.46486 4.46486 2.48 0.000159486 0.000127006 0.196689 0.193984 44 2451 47 6.95648e+06 202660 787024. 2723.27 7.02 0.369094 0.358193 27778 195446 -1 1678 19 1355 1818 134378 32319 3.59822 3.59822 -129.567 -3.59822 0 0 997811. 3452.63 0.85 0.23 0.26 -1 -1 0.85 0.0127178 0.0113932 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 37.69 vpr 64.27 MiB -1 -1 0.47 21280 1 0.15 -1 -1 33808 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 25.6 MiB 2.46 745 11777 4928 6289 560 64.3 MiB 0.17 0.00 2.28966 -95.4694 -2.28966 2.28966 2.30 0.000140264 0.000109957 0.131127 0.12827 36 2331 29 6.95648e+06 130281 648988. 2245.63 25.17 0.212364 0.195612 26050 158493 -1 1870 17 1174 1670 160724 31643 2.42898 2.42898 -107.619 -2.42898 0 0 828058. 2865.25 0.89 0.10 0.29 -1 -1 0.89 0.0740403 0.0729673 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 17.05 vpr 63.99 MiB -1 -1 0.44 21128 1 0.19 -1 -1 33540 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 25.3 MiB 0.91 461 10800 4629 5825 346 64.0 MiB 0.37 0.00 2.11601 -78.0433 -2.11601 2.11601 2.61 0.000106602 8.1517e-05 0.00983435 0.00780334 38 1429 35 6.95648e+06 144757 678818. 2348.85 5.53 0.0829316 0.074829 26626 170182 -1 1159 17 708 909 84578 18680 2.16688 2.16688 -81.8115 -2.16688 0 0 902133. 3121.57 0.95 0.02 0.23 -1 -1 0.95 0.00639601 0.00555174 44 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 27.30 vpr 64.47 MiB -1 -1 0.65 20976 1 0.11 -1 -1 33804 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 25.8 MiB 7.10 789 10187 2387 7192 608 64.5 MiB 0.13 0.00 4.13347 -134.928 -4.13347 4.13347 2.65 0.000155963 0.000125349 0.0120821 0.0099426 36 2600 48 6.95648e+06 173708 648988. 2245.63 9.38 0.177826 0.167833 26050 158493 -1 2040 22 1576 2124 222393 44934 4.05342 4.05342 -147.633 -4.05342 0 0 828058. 2865.25 1.09 0.15 0.36 -1 -1 1.09 0.00826646 0.00741969 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 22.59 vpr 64.70 MiB -1 -1 0.36 21584 1 0.02 -1 -1 33820 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 25.9 MiB 2.39 652 8868 3175 4368 1325 64.7 MiB 0.04 0.00 3.70824 -121.183 -3.70824 3.70824 2.22 0.000158029 0.000123789 0.0102702 0.00840471 46 2246 43 6.95648e+06 289514 828058. 2865.25 9.71 0.0818489 0.0712013 28066 200906 -1 1724 30 2028 2774 205603 48578 4.01126 4.01126 -132.855 -4.01126 0 0 1.01997e+06 3529.29 1.21 0.17 0.43 -1 -1 1.21 0.0159063 0.0140205 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 25.27 vpr 64.63 MiB -1 -1 0.53 21584 1 0.14 -1 -1 33632 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66184 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 26.1 MiB 4.90 828 13358 4005 7022 2331 64.6 MiB 0.21 0.00 4.7576 -136.611 -4.7576 4.7576 2.47 0.00019075 0.000153746 0.0167678 0.0136792 46 2529 29 6.95648e+06 202660 828058. 2865.25 9.94 0.103514 0.0930369 28066 200906 -1 1954 20 1551 2353 192336 41457 4.16201 4.16201 -134.339 -4.16201 0 0 1.01997e+06 3529.29 1.20 0.17 0.17 -1 -1 1.20 0.0102099 0.00907183 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 18.75 vpr 63.87 MiB -1 -1 0.64 21280 1 0.06 -1 -1 34128 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 25.2 MiB 2.71 312 9123 3811 4732 580 63.9 MiB 0.07 0.00 2.23646 -64.5107 -2.23646 2.23646 2.56 0.000136556 0.00010735 0.0076873 0.0059746 36 1287 42 6.95648e+06 188184 648988. 2245.63 5.19 0.0414417 0.0335937 26050 158493 -1 865 30 747 960 78704 19119 2.17168 2.17168 -71.8012 -2.17168 0 0 828058. 2865.25 1.05 0.03 0.45 -1 -1 1.05 0.0088907 0.00765066 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 22.39 vpr 64.44 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 25.8 MiB 2.57 670 9543 3158 4645 1740 64.4 MiB 0.22 0.00 4.56626 -117.382 -4.56626 4.56626 2.61 7.089e-05 5.5352e-05 0.0106636 0.00868512 40 2631 34 6.95648e+06 217135 706193. 2443.58 8.91 0.0563683 0.047137 26914 176310 -1 1821 23 1440 2382 253237 57325 3.93516 3.93516 -131.834 -3.93516 0 0 926341. 3205.33 1.13 0.24 0.40 -1 -1 1.13 0.0121237 0.0106759 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 14.92 vpr 63.79 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33628 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 25.2 MiB 0.83 434 9906 4167 5580 159 63.8 MiB 0.14 0.00 2.18446 -71.1933 -2.18446 2.18446 2.79 5.5202e-05 4.2717e-05 0.00489006 0.0037573 36 1117 24 6.95648e+06 115805 648988. 2245.63 3.79 0.0349974 0.0288713 26050 158493 -1 914 20 568 625 52661 12124 1.91188 1.91188 -72.1751 -1.91188 0 0 828058. 2865.25 1.21 0.02 0.52 -1 -1 1.21 0.00704261 0.00616133 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 23.51 vpr 64.49 MiB -1 -1 0.28 21280 1 0.08 -1 -1 33792 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 25.8 MiB 3.64 867 11740 4903 6637 200 64.5 MiB 0.15 0.00 4.50901 -127.321 -4.50901 4.50901 2.63 0.000152088 0.000118774 0.110916 0.108515 38 2433 43 6.95648e+06 217135 678818. 2348.85 9.56 0.161006 0.150691 26626 170182 -1 2061 21 1344 2103 203584 42173 3.50821 3.50821 -121.072 -3.50821 0 0 902133. 3121.57 0.84 0.10 0.26 -1 -1 0.84 0.0737198 0.0727076 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 20.86 vpr 64.52 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33952 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.8 MiB 1.99 667 11989 4568 6203 1218 64.5 MiB 0.23 0.00 2.9573 -100.172 -2.9573 2.9573 2.53 0.000158547 0.000125065 0.0124529 0.0101261 46 1956 39 6.95648e+06 303989 828058. 2865.25 7.71 0.312686 0.200505 28066 200906 -1 1567 21 1225 1860 150608 36284 3.07617 3.07617 -107.856 -3.07617 0 0 1.01997e+06 3529.29 1.38 0.05 0.54 -1 -1 1.38 0.167538 0.166194 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 25.78 vpr 64.59 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33660 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 25.9 MiB 2.51 817 10883 3081 7234 568 64.6 MiB 0.18 0.00 4.37923 -132.214 -4.37923 4.37923 2.34 0.000176878 0.000143696 0.0122121 0.0100259 38 2588 35 6.95648e+06 275038 678818. 2348.85 12.83 0.146318 0.0557197 26626 170182 -1 2061 22 1377 2142 194126 40526 4.13167 4.13167 -140.107 -4.13167 0 0 902133. 3121.57 1.01 0.26 0.39 -1 -1 1.01 0.102189 0.100666 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 20.71 vpr 64.27 MiB -1 -1 0.40 21280 1 0.17 -1 -1 33844 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 25.8 MiB 3.52 798 12319 4066 7178 1075 64.3 MiB 0.05 0.00 3.08875 -102.281 -3.08875 3.08875 2.78 0.000142028 0.000113032 0.00655544 0.00523641 38 2055 46 6.95648e+06 144757 678818. 2348.85 6.89 0.0540326 0.0451438 26626 170182 -1 1743 18 923 1401 116130 24584 2.88052 2.88052 -112.119 -2.88052 0 0 902133. 3121.57 0.96 0.36 0.36 -1 -1 0.96 0.127999 0.126763 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 22.40 vpr 64.08 MiB -1 -1 0.51 21432 1 0.06 -1 -1 33740 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 25.6 MiB 0.74 474 11260 3904 5427 1929 64.1 MiB 0.06 0.00 3.37953 -95.4258 -3.37953 3.37953 2.82 0.000147132 0.000105437 0.0281887 0.00854093 38 1685 40 6.95648e+06 260562 678818. 2348.85 10.03 0.151065 0.124137 26626 170182 -1 1269 21 1067 1427 140250 39315 2.97382 2.97382 -103.174 -2.97382 0 0 902133. 3121.57 1.15 0.24 0.51 -1 -1 1.15 0.00588751 0.00525448 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 20.58 vpr 64.20 MiB -1 -1 0.44 21128 1 0.09 -1 -1 33396 -1 -1 16 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 25.5 MiB 1.64 458 9196 2843 4647 1706 64.2 MiB 0.22 0.00 2.9532 -87.9712 -2.9532 2.9532 2.63 5.8546e-05 4.4221e-05 0.00976214 0.00781364 54 1159 22 6.95648e+06 231611 949917. 3286.91 6.90 0.0449387 0.0373362 29506 232905 -1 921 22 926 1480 101208 26110 2.93352 2.93352 -89.9663 -2.93352 0 0 1.17392e+06 4061.99 1.53 0.13 0.63 -1 -1 1.53 0.10735 0.106163 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 18.21 vpr 64.07 MiB -1 -1 0.35 21128 1 0.05 -1 -1 33708 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.6 MiB 1.56 491 8909 2630 4401 1878 64.1 MiB 0.16 0.00 3.37459 -106.492 -3.37459 3.37459 2.60 0.000130557 0.000101862 0.00949738 0.00770588 48 1553 41 6.95648e+06 144757 865456. 2994.66 6.10 0.253138 0.244497 28354 207349 -1 1197 22 1177 1684 149056 37525 3.21832 3.21832 -105.301 -3.21832 0 0 1.05005e+06 3633.38 1.31 0.04 0.45 -1 -1 1.31 0.0100224 0.00887651 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 21.71 vpr 64.23 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 1.31 560 10050 4028 5496 526 64.2 MiB 0.09 0.00 3.19914 -99.6907 -3.19914 3.19914 2.76 0.000142968 0.000110602 0.00968266 0.00779378 42 2029 39 6.95648e+06 275038 744469. 2576.02 9.31 0.0536588 0.044824 27202 183097 -1 1449 20 1049 1599 141420 34038 2.77822 2.77822 -104.021 -2.77822 0 0 949917. 3286.91 0.94 0.24 0.41 -1 -1 0.94 0.0104231 0.00904372 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 21.27 vpr 64.34 MiB -1 -1 0.47 21432 1 0.13 -1 -1 33688 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 25.8 MiB 3.48 629 12233 5311 6328 594 64.3 MiB 0.35 0.00 3.03504 -103.283 -3.03504 3.03504 2.05 0.00014329 0.000113544 0.0134909 0.0108263 38 1951 30 6.95648e+06 173708 678818. 2348.85 8.66 0.164407 0.154074 26626 170182 -1 1437 20 1083 1454 106865 25564 2.96967 2.96967 -101.685 -2.96967 0 0 902133. 3121.57 1.10 0.02 0.22 -1 -1 1.10 0.00537695 0.0046934 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 29.92 vpr 64.82 MiB -1 -1 0.42 21432 1 0.02 -1 -1 33996 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66376 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 26.1 MiB 2.46 844 13477 4316 6348 2813 64.8 MiB 0.20 0.00 4.03548 -120.669 -4.03548 4.03548 2.31 8.2212e-05 6.3991e-05 0.0164757 0.0133736 38 3134 34 6.95648e+06 303989 678818. 2348.85 17.14 0.264644 0.252153 26626 170182 -1 2244 21 1609 2583 195045 43801 4.59892 4.59892 -133.905 -4.59892 0 0 902133. 3121.57 1.05 0.15 0.40 -1 -1 1.05 0.0132456 0.0118186 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 22.66 vpr 64.87 MiB -1 -1 0.39 21432 1 0.47 -1 -1 33868 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66428 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.1 MiB 2.91 735 14323 5482 6766 2075 64.9 MiB 0.17 0.00 3.31218 -116.99 -3.31218 3.31218 2.23 0.000185914 0.000144723 0.0176493 0.0142119 40 2593 40 6.95648e+06 347416 706193. 2443.58 9.88 0.191064 0.178748 26914 176310 -1 2187 24 2015 2867 290162 67024 3.44687 3.44687 -133.822 -3.44687 0 0 926341. 3205.33 0.98 0.18 0.45 -1 -1 0.98 0.0159455 0.0141762 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 25.13 vpr 64.09 MiB -1 -1 0.43 21128 1 0.12 -1 -1 33540 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 25.6 MiB 6.48 756 6739 2920 3620 199 64.1 MiB 0.13 0.00 4.04047 -128.247 -4.04047 4.04047 2.55 0.000142961 0.000111983 0.00777073 0.00628609 46 1804 26 6.95648e+06 159232 828058. 2865.25 7.51 0.366554 0.358671 28066 200906 -1 1574 24 1266 1712 177310 35097 3.68852 3.68852 -128.119 -3.68852 0 0 1.01997e+06 3529.29 1.14 0.14 0.49 -1 -1 1.14 0.0118565 0.0105354 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 20.74 vpr 64.77 MiB -1 -1 0.51 21584 1 0.23 -1 -1 33920 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.1 MiB 2.52 690 11233 3998 4949 2286 64.8 MiB 0.23 0.00 3.75886 -121.403 -3.75886 3.75886 2.62 0.000210014 0.00017189 0.014647 0.0120243 48 1910 44 6.95648e+06 231611 865456. 2994.66 7.10 0.10835 0.0626728 28354 207349 -1 1638 21 1439 2140 184840 44309 3.59617 3.59617 -123.904 -3.59617 0 0 1.05005e+06 3633.38 0.91 0.34 0.48 -1 -1 0.91 0.303923 0.302404 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 72.08 vpr 64.98 MiB -1 -1 0.43 21584 1 0.07 -1 -1 33672 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66540 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.2 MiB 6.78 951 13092 5540 7040 512 65.0 MiB 0.30 0.00 5.47516 -170.564 -5.47516 5.47516 2.34 0.000180667 0.000147712 0.016262 0.0133628 50 3027 43 6.95648e+06 231611 902133. 3121.57 54.88 0.496419 0.462103 28642 213929 -1 2459 21 2109 2977 337345 74279 5.3671 5.3671 -180.931 -5.3671 0 0 1.08113e+06 3740.92 1.13 0.29 0.49 -1 -1 1.13 0.132706 0.131131 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 35.88 vpr 64.88 MiB -1 -1 0.51 21736 1 0.23 -1 -1 33820 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66432 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 26.2 MiB 7.53 988 12754 4743 6080 1931 64.9 MiB 0.06 0.00 4.52202 -151.727 -4.52202 4.52202 2.32 0.000175381 0.000138478 0.0167621 0.0135621 36 3260 45 6.95648e+06 231611 648988. 2245.63 18.73 0.254401 0.241887 26050 158493 -1 2569 23 1984 2847 285723 56649 4.6114 4.6114 -162.122 -4.6114 0 0 828058. 2865.25 1.03 0.23 0.29 -1 -1 1.03 0.185308 0.183703 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 21.60 vpr 64.73 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33812 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.1 MiB 3.24 777 14407 6123 7723 561 64.7 MiB 0.19 0.00 4.10748 -131.173 -4.10748 4.10748 2.20 0.000168737 0.000133504 0.0169845 0.0139415 50 2244 23 6.95648e+06 318465 902133. 3121.57 7.89 0.296209 0.285479 28642 213929 -1 1928 21 1292 1970 189186 39775 3.52322 3.52322 -125.888 -3.52322 0 0 1.08113e+06 3740.92 1.29 0.20 0.62 -1 -1 1.29 0.160392 0.158993 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 21.48 vpr 64.49 MiB -1 -1 0.32 21128 1 0.03 -1 -1 33452 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 25.8 MiB 4.23 772 10868 4143 4479 2246 64.5 MiB 0.09 0.00 4.03548 -115.263 -4.03548 4.03548 2.40 0.000140989 0.00011091 0.0114346 0.00923956 42 2879 40 6.95648e+06 202660 744469. 2576.02 7.17 0.22384 0.213613 27202 183097 -1 2056 23 1476 2027 193966 42342 4.17091 4.17091 -126.506 -4.17091 0 0 949917. 3286.91 1.21 0.17 0.40 -1 -1 1.21 0.0120883 0.0107435 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 32.75 vpr 64.90 MiB -1 -1 0.49 21736 1 0.06 -1 -1 33896 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66456 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 26.5 MiB 5.35 911 12938 4611 6181 2146 64.9 MiB 0.17 0.00 4.71507 -155.232 -4.71507 4.71507 2.22 0.000213556 0.000171152 0.114525 0.056996 46 3479 48 6.95648e+06 318465 828058. 2865.25 16.74 0.246827 0.178145 28066 200906 -1 2153 22 1843 2680 173959 40264 4.75421 4.75421 -160.818 -4.75421 0 0 1.01997e+06 3529.29 1.28 0.17 0.53 -1 -1 1.28 0.0687434 0.0669762 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 19.52 vpr 64.23 MiB -1 -1 0.25 21280 1 0.11 -1 -1 33796 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 25.6 MiB 2.92 547 8876 3201 4413 1262 64.2 MiB 0.11 0.00 3.29541 -98.1825 -3.29541 3.29541 2.63 0.000136082 0.000107338 0.0919861 0.090564 36 1853 25 6.95648e+06 217135 648988. 2245.63 6.34 0.465119 0.287536 26050 158493 -1 1398 20 999 1450 112276 25564 3.34072 3.34072 -106.44 -3.34072 0 0 828058. 2865.25 1.04 0.11 0.28 -1 -1 1.04 0.0834428 0.0823263 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 21.85 vpr 64.53 MiB -1 -1 0.55 21280 1 0.14 -1 -1 33616 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66076 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 25.9 MiB 4.41 894 14520 6369 7601 550 64.5 MiB 0.27 0.00 5.06497 -151.796 -5.06497 5.06497 2.96 0.000160744 0.00012862 0.0878159 0.084695 48 2677 22 6.95648e+06 217135 865456. 2994.66 6.47 0.313239 0.30327 28354 207349 -1 2173 23 1484 2113 186495 40122 4.75126 4.75126 -151.406 -4.75126 0 0 1.05005e+06 3633.38 1.18 0.06 0.37 -1 -1 1.18 0.0130294 0.0115917 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 22.91 vpr 64.69 MiB -1 -1 0.42 21584 1 0.17 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 3.68 775 9181 3821 5035 325 64.7 MiB 0.15 0.00 3.20795 -111.611 -3.20795 3.20795 2.82 0.000184673 0.000150578 0.0111942 0.0090406 48 2346 24 6.95648e+06 246087 865456. 2994.66 8.00 0.45071 0.236101 28354 207349 -1 1949 22 1522 2444 236857 58133 3.30152 3.30152 -120.597 -3.30152 0 0 1.05005e+06 3633.38 1.32 0.13 0.50 -1 -1 1.32 0.0847944 0.0831365 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 21.13 vpr 64.49 MiB -1 -1 0.41 21280 1 0.06 -1 -1 33872 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.8 MiB 3.70 704 10744 4416 5915 413 64.5 MiB 0.02 0.00 4.49648 -123.271 -4.49648 4.49648 2.35 7.5646e-05 5.8969e-05 0.0054096 0.00436637 44 2256 33 6.95648e+06 231611 787024. 2723.27 6.32 0.0746261 0.067663 27778 195446 -1 1723 23 1279 2223 169514 37895 4.20871 4.20871 -130.003 -4.20871 0 0 997811. 3452.63 1.19 0.16 0.45 -1 -1 1.19 0.0110109 0.00969573 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 29.42 vpr 64.72 MiB -1 -1 0.55 21584 1 0.03 -1 -1 33660 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 26.1 MiB 8.58 756 9706 3472 4852 1382 64.7 MiB 0.46 0.00 4.40855 -135.153 -4.40855 4.40855 2.29 0.000162064 0.000128965 0.0122358 0.0100565 46 2655 50 6.95648e+06 202660 828058. 2865.25 10.36 0.261697 0.25051 28066 200906 -1 1947 22 1598 2149 169487 38892 3.72346 3.72346 -131.523 -3.72346 0 0 1.01997e+06 3529.29 1.08 0.21 0.35 -1 -1 1.08 0.0162515 0.0146633 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 30.05 vpr 64.75 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66308 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 26.2 MiB 5.75 704 10581 3961 5357 1263 64.8 MiB 0.05 0.00 3.235 -113.84 -3.235 3.235 2.26 8.2e-05 6.3395e-05 0.00941343 0.00775223 46 2378 42 6.95648e+06 246087 828058. 2865.25 14.49 0.192493 0.181657 28066 200906 -1 1645 24 1607 2519 179902 42795 3.11217 3.11217 -112.864 -3.11217 0 0 1.01997e+06 3529.29 1.67 0.18 0.40 -1 -1 1.67 0.0139336 0.0123449 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 25.76 vpr 64.86 MiB -1 -1 0.35 21128 1 0.14 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 26.1 MiB 3.08 773 14562 5644 6615 2303 64.9 MiB 0.08 0.00 4.29888 -138.783 -4.29888 4.29888 2.54 0.000244117 0.000202935 0.0161371 0.0132278 46 2580 45 6.95648e+06 376368 828058. 2865.25 12.15 0.351411 0.338914 28066 200906 -1 1915 24 1491 2210 174725 40106 3.59816 3.59816 -130.915 -3.59816 0 0 1.01997e+06 3529.29 1.11 0.22 0.27 -1 -1 1.11 0.0135474 0.0118346 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 22.34 vpr 64.39 MiB -1 -1 0.48 21432 1 0.06 -1 -1 33988 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 25.9 MiB 3.66 657 12749 3718 6154 2877 64.4 MiB 0.12 0.00 4.33949 -116.674 -4.33949 4.33949 2.69 0.000148146 0.000117958 0.0119211 0.00960856 44 2644 44 6.95648e+06 318465 787024. 2723.27 8.24 0.234144 0.223804 27778 195446 -1 1707 19 1197 1851 136613 33220 3.81066 3.81066 -121.672 -3.81066 0 0 997811. 3452.63 1.08 0.16 0.53 -1 -1 1.08 0.0107341 0.00954334 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 50.71 vpr 64.61 MiB -1 -1 0.79 21432 1 0.28 -1 -1 33936 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 25.9 MiB 9.50 755 11161 3299 5641 2221 64.6 MiB 0.23 0.00 4.21403 -126.931 -4.21403 4.21403 2.71 7.4662e-05 5.723e-05 0.215136 0.213398 48 1877 47 6.95648e+06 188184 865456. 2994.66 29.86 0.502974 0.382642 28354 207349 -1 1480 24 1603 2148 175864 45312 4.02842 4.02842 -127.258 -4.02842 0 0 1.05005e+06 3633.38 1.30 0.26 0.38 -1 -1 1.30 0.00950871 0.00864841 79 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 29.31 vpr 64.68 MiB -1 -1 0.76 21584 1 0.10 -1 -1 33724 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.1 MiB 4.19 798 12196 5085 6500 611 64.7 MiB 0.05 0.00 4.51577 -141.302 -4.51577 4.51577 2.88 0.000165923 0.00013048 0.0151022 0.0123217 50 2841 44 6.95648e+06 217135 902133. 3121.57 13.29 0.250632 0.0634794 28642 213929 -1 2084 21 1702 2688 263015 60779 4.12271 4.12271 -140.403 -4.12271 0 0 1.08113e+06 3740.92 1.12 0.27 0.41 -1 -1 1.12 0.0146224 0.0130904 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 27.58 vpr 64.66 MiB -1 -1 0.57 21584 1 0.02 -1 -1 33696 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 25.9 MiB 8.25 690 11813 3850 5742 2221 64.7 MiB 0.24 0.00 4.09452 -126.661 -4.09452 4.09452 2.73 7.7669e-05 6.0534e-05 0.0072616 0.00586672 56 2010 35 6.95648e+06 188184 973134. 3367.25 8.05 0.395351 0.29642 29794 239141 -1 1565 24 1655 2740 247244 69033 4.29002 4.29002 -129.692 -4.29002 0 0 1.19926e+06 4149.71 1.17 0.19 0.38 -1 -1 1.17 0.015418 0.013669 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 16.97 vpr 63.94 MiB -1 -1 0.36 21280 1 0.13 -1 -1 33556 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 25.5 MiB 0.64 504 11474 3617 5403 2454 63.9 MiB 0.13 0.00 3.14908 -93.1134 -3.14908 3.14908 2.19 0.000171849 0.000140917 0.0102481 0.00818877 44 1683 21 6.95648e+06 260562 787024. 2723.27 6.71 0.0465734 0.0386465 27778 195446 -1 1219 17 842 1222 94114 24359 2.94567 2.94567 -98.0108 -2.94567 0 0 997811. 3452.63 1.06 0.05 0.29 -1 -1 1.06 0.031839 0.0307792 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 23.90 vpr 64.68 MiB -1 -1 0.48 21280 1 0.07 -1 -1 33920 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 25.9 MiB 5.57 711 11916 5010 6585 321 64.7 MiB 0.15 0.00 3.75235 -135.897 -3.75235 3.75235 2.91 7.8991e-05 6.1368e-05 0.1273 0.125853 46 2052 24 6.95648e+06 173708 828058. 2865.25 7.01 0.223304 0.166056 28066 200906 -1 1721 20 1483 2090 167019 36124 3.45892 3.45892 -133.663 -3.45892 0 0 1.01997e+06 3529.29 1.46 0.11 0.39 -1 -1 1.46 0.0119142 0.0106725 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 27.39 vpr 64.71 MiB -1 -1 0.27 21432 1 0.14 -1 -1 33832 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 26.2 MiB 7.14 1199 14012 4660 7682 1670 64.7 MiB 0.45 0.00 4.91372 -159.538 -4.91372 4.91372 2.66 0.000181072 0.000145211 0.0191279 0.0158421 46 3151 21 6.95648e+06 231611 828058. 2865.25 9.30 0.196625 0.185068 28066 200906 -1 2670 24 2251 3456 277419 55404 4.64721 4.64721 -166.287 -4.64721 0 0 1.01997e+06 3529.29 1.11 0.35 0.45 -1 -1 1.11 0.0116863 0.0103946 97 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 25.64 vpr 64.39 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 2.84 1033 10231 3254 5472 1505 64.4 MiB 0.34 0.00 4.59016 -151.92 -4.59016 4.59016 3.11 0.000163636 0.000131314 0.0123551 0.010147 36 2567 36 6.95648e+06 246087 648988. 2245.63 11.25 0.142227 0.131668 26050 158493 -1 2101 22 1460 1958 172883 34796 3.61822 3.61822 -144.487 -3.61822 0 0 828058. 2865.25 1.14 0.23 0.76 -1 -1 1.14 0.011179 0.00984238 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 21.74 vpr 64.16 MiB -1 -1 0.42 21128 1 0.02 -1 -1 33744 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 2.50 583 12008 4947 6630 431 64.2 MiB 0.19 0.00 2.944 -98.4118 -2.944 2.944 2.51 6.4978e-05 4.907e-05 0.00680389 0.00538636 38 2001 30 6.95648e+06 289514 678818. 2348.85 8.64 0.208696 0.201159 26626 170182 -1 1551 21 1156 1722 145132 32649 3.27952 3.27952 -110.436 -3.27952 0 0 902133. 3121.57 1.20 0.33 0.62 -1 -1 1.20 0.0101663 0.00899121 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 28.60 vpr 65.16 MiB -1 -1 0.69 21280 1 0.37 -1 -1 33884 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66720 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 26.4 MiB 5.28 1129 14782 6433 7988 361 65.2 MiB 0.33 0.07 5.84939 -174.305 -5.84939 5.84939 2.54 0.000189953 0.00015184 0.108803 0.10506 46 3159 27 6.95648e+06 217135 828058. 2865.25 10.52 0.50648 0.410851 28066 200906 -1 2667 25 2293 3415 432553 116380 5.4104 5.4104 -172.993 -5.4104 0 0 1.01997e+06 3529.29 1.57 0.28 0.37 -1 -1 1.57 0.160698 0.158814 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 22.63 vpr 64.68 MiB -1 -1 0.29 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 25.9 MiB 4.38 676 13335 4957 6249 2129 64.7 MiB 0.04 0.00 4.62011 -128.464 -4.62011 4.62011 2.96 0.000208698 0.000174487 0.0105295 0.0083893 46 2067 37 6.95648e+06 332941 828058. 2865.25 7.85 0.0583526 0.0490235 28066 200906 -1 1608 23 1319 1961 142969 34005 3.94516 3.94516 -127.516 -3.94516 0 0 1.01997e+06 3529.29 1.09 0.13 0.37 -1 -1 1.09 0.0127937 0.0112534 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 20.16 vpr 63.62 MiB -1 -1 0.42 21128 1 0.08 -1 -1 33480 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 0.91 533 10509 4362 5761 386 63.6 MiB 0.08 0.00 2.9282 -92.021 -2.9282 2.9282 2.44 0.000138062 0.000109488 0.0105231 0.00845243 40 1853 44 6.95648e+06 188184 706193. 2443.58 9.05 0.160772 0.151735 26914 176310 -1 1520 22 1124 1700 171214 43756 3.15227 3.15227 -103.082 -3.15227 0 0 926341. 3205.33 1.20 0.04 0.34 -1 -1 1.20 0.00990394 0.00855289 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 22.86 vpr 64.62 MiB -1 -1 0.46 21280 1 0.37 -1 -1 33752 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 25.9 MiB 1.69 923 15298 6195 8436 667 64.6 MiB 0.28 0.00 4.94787 -132.081 -4.94787 4.94787 2.26 0.000183632 0.000148222 0.123748 0.120352 40 2552 24 6.95648e+06 347416 706193. 2443.58 10.35 0.176296 0.164624 26914 176310 -1 2279 24 1815 3299 412663 96509 4.73826 4.73826 -139.776 -4.73826 0 0 926341. 3205.33 1.43 0.25 0.17 -1 -1 1.43 0.0137267 0.012153 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 22.42 vpr 64.05 MiB -1 -1 0.54 21128 1 0.10 -1 -1 33724 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.6 MiB 3.18 471 10702 3246 5052 2404 64.1 MiB 0.16 0.00 2.9972 -97.7732 -2.9972 2.9972 2.52 0.000134341 0.000105381 0.128014 0.125943 40 1681 41 6.95648e+06 202660 706193. 2443.58 7.56 0.223844 0.214781 26914 176310 -1 1409 22 1259 1765 152230 38560 3.41572 3.41572 -119.098 -3.41572 0 0 926341. 3205.33 1.16 0.27 0.59 -1 -1 1.16 0.0106945 0.00942995 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 21.47 vpr 63.99 MiB -1 -1 0.50 21280 1 0.30 -1 -1 33768 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 25.5 MiB 2.47 565 7684 3065 4335 284 64.0 MiB 0.08 0.00 3.45473 -106.14 -3.45473 3.45473 2.15 0.000148737 0.000116672 0.00884058 0.00724397 38 1970 44 6.95648e+06 246087 678818. 2348.85 8.89 0.131516 0.121878 26626 170182 -1 1387 22 1167 1759 135973 29786 3.05892 3.05892 -108.285 -3.05892 0 0 902133. 3121.57 0.97 0.11 0.46 -1 -1 0.97 0.00946937 0.00828096 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 24.53 vpr 64.76 MiB -1 -1 0.84 21432 1 0.21 -1 -1 33872 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 26.1 MiB 5.60 776 11161 4775 5773 613 64.8 MiB 0.05 0.00 3.81182 -119.714 -3.81182 3.81182 2.67 0.000168234 0.000133305 0.00906138 0.0073641 48 2520 32 6.95648e+06 231611 865456. 2994.66 8.17 0.0641456 0.0540454 28354 207349 -1 2042 21 1734 2563 216351 47635 3.70766 3.70766 -129.106 -3.70766 0 0 1.05005e+06 3633.38 1.03 0.07 0.52 -1 -1 1.03 0.0129978 0.0116099 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 20.05 vpr 64.57 MiB -1 -1 0.35 21280 1 0.21 -1 -1 33700 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 26.1 MiB 3.74 704 11948 4364 5551 2033 64.6 MiB 0.08 0.00 4.55468 -133.267 -4.55468 4.55468 2.82 0.000174282 0.000142125 0.0144908 0.0118849 44 2311 36 6.95648e+06 231611 787024. 2723.27 5.19 0.475624 0.4644 27778 195446 -1 1571 29 1467 2111 135992 33086 4.33832 4.33832 -137.368 -4.33832 0 0 997811. 3452.63 1.07 0.24 0.68 -1 -1 1.07 0.0155585 0.0136902 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 25.17 vpr 64.73 MiB -1 -1 0.52 21280 1 0.23 -1 -1 33832 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66284 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.1 MiB 6.12 786 12196 5134 6667 395 64.7 MiB 0.12 0.00 4.41959 -137.927 -4.41959 4.41959 2.71 0.000163449 0.000130532 0.0154123 0.01251 40 2597 31 6.95648e+06 202660 706193. 2443.58 7.44 0.176379 0.0582943 26914 176310 -1 1938 20 1471 2292 207490 44669 4.14326 4.14326 -138.835 -4.14326 0 0 926341. 3205.33 1.00 0.03 0.39 -1 -1 1.00 0.00779976 0.00708868 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 30.35 vpr 64.11 MiB -1 -1 0.56 21280 1 0.28 -1 -1 33848 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 25.6 MiB 10.33 758 11854 5230 6360 264 64.1 MiB 0.14 0.00 4.09208 -130.885 -4.09208 4.09208 2.66 0.000190098 0.000118405 0.100584 0.0981215 46 1948 30 6.95648e+06 144757 828058. 2865.25 8.72 0.144605 0.135346 28066 200906 -1 1561 20 1128 1465 123245 26968 3.61822 3.61822 -128.283 -3.61822 0 0 1.01997e+06 3529.29 1.22 0.14 0.41 -1 -1 1.22 0.0826738 0.0814191 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 26.45 vpr 64.38 MiB -1 -1 0.52 21432 1 0.03 -1 -1 33744 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 25.8 MiB 7.20 671 10661 4453 5894 314 64.4 MiB 0.32 0.00 3.79972 -122.825 -3.79972 3.79972 2.59 0.000160817 0.00012734 0.0125461 0.0101679 38 2325 23 6.95648e+06 173708 678818. 2348.85 9.21 0.0510394 0.0422196 26626 170182 -1 1701 20 1321 1951 157587 33834 3.40267 3.40267 -123.384 -3.40267 0 0 902133. 3121.57 1.29 0.06 0.40 -1 -1 1.29 0.0277522 0.0265017 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 26.96 vpr 64.44 MiB -1 -1 0.42 21280 1 0.22 -1 -1 33760 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 25.9 MiB 2.46 674 10881 3907 4742 2232 64.4 MiB 0.06 0.00 3.0162 -94.3766 -3.0162 3.0162 2.22 0.000168742 0.000135538 0.0117824 0.00968195 36 2545 30 6.95648e+06 318465 648988. 2245.63 14.19 0.0600729 0.050037 26050 158493 -1 1858 21 1240 1960 162018 36678 3.14637 3.14637 -107.389 -3.14637 0 0 828058. 2865.25 1.00 0.13 0.41 -1 -1 1.00 0.0124086 0.010958 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 22.16 vpr 64.43 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33736 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 25.8 MiB 2.14 776 11788 2819 8132 837 64.4 MiB 0.09 0.00 3.64814 -102.196 -3.64814 3.64814 2.28 0.000143978 0.000114756 0.0102727 0.00834417 38 2283 49 6.95648e+06 405319 678818. 2348.85 9.89 0.0572746 0.047759 26626 170182 -1 1869 33 1402 2171 347796 149224 3.66166 3.66166 -111.163 -3.66166 0 0 902133. 3121.57 1.20 0.17 0.32 -1 -1 1.20 0.031921 0.0300982 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 14.87 vpr 64.32 MiB -1 -1 0.24 21280 1 0.05 -1 -1 33868 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 25.8 MiB 1.25 549 12629 5148 6195 1286 64.3 MiB 0.22 0.00 3.47909 -109.563 -3.47909 3.47909 2.55 0.000144752 0.000114363 0.0146333 0.0119252 40 1779 32 6.95648e+06 173708 706193. 2443.58 5.59 0.0538257 0.0448211 26914 176310 -1 1375 21 1365 1931 142075 34453 3.18402 3.18402 -117.065 -3.18402 0 0 926341. 3205.33 1.23 0.45 0.32 -1 -1 1.23 0.164476 0.163149 60 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 25.96 vpr 64.16 MiB -1 -1 0.24 21432 1 0.03 -1 -1 33564 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 25.5 MiB 5.26 641 12873 5440 6966 467 64.2 MiB 0.11 0.00 3.42769 -121.139 -3.42769 3.42769 2.55 0.000188917 0.000152402 0.0156907 0.0127536 52 2300 33 6.95648e+06 159232 926341. 3205.33 7.55 0.479333 0.432975 29218 227130 -1 1491 25 1380 1993 177717 40588 3.72767 3.72767 -126.291 -3.72767 0 0 1.14541e+06 3963.36 1.26 0.19 0.40 -1 -1 1.26 0.157712 0.156199 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 24.41 vpr 64.52 MiB -1 -1 0.49 21128 1 0.02 -1 -1 33876 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.8 MiB 1.35 710 11799 3749 5666 2384 64.5 MiB 0.17 0.00 4.65108 -122.985 -4.65108 4.65108 2.26 0.000148994 0.000117624 0.0183431 0.0159056 50 2190 26 6.95648e+06 347416 902133. 3121.57 7.82 0.290284 0.280978 28642 213929 -1 1660 23 1075 1816 170113 37652 3.71982 3.71982 -117.822 -3.71982 0 0 1.08113e+06 3740.92 1.43 0.09 0.62 -1 -1 1.43 0.0251685 0.0237504 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 30.31 vpr 64.77 MiB -1 -1 0.39 21584 1 0.19 -1 -1 33736 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 26.1 MiB 5.19 831 11813 4743 6275 795 64.8 MiB 0.32 0.00 4.58977 -148.914 -4.58977 4.58977 2.65 0.000183128 0.000149716 0.0793215 0.0765573 44 3092 30 6.95648e+06 188184 787024. 2723.27 7.39 0.134146 0.122967 27778 195446 -1 2201 21 1759 2558 216969 47786 4.22036 4.22036 -150.532 -4.22036 0 0 997811. 3452.63 1.15 0.12 0.44 -1 -1 1.15 0.0770714 0.0755766 82 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 31.74 vpr 64.84 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33704 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66396 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 26.1 MiB 4.15 816 16468 5566 8437 2465 64.8 MiB 0.31 0.00 4.27883 -132.69 -4.27883 4.27883 2.90 8.7005e-05 6.5217e-05 0.0173427 0.0139091 46 2467 49 6.95648e+06 347416 828058. 2865.25 10.16 0.230607 0.217863 28066 200906 -1 1965 21 1537 2489 222148 46533 3.84266 3.84266 -137.714 -3.84266 0 0 1.01997e+06 3529.29 1.29 0.09 0.45 -1 -1 1.29 0.0143812 0.0128796 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 16.81 vpr 64.70 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33744 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 2.33 810 13911 4952 7625 1334 64.7 MiB 0.09 0.00 4.06852 -133.682 -4.06852 4.06852 1.39 0.000176391 0.000138352 0.0163358 0.0133888 44 3041 46 6.95648e+06 332941 787024. 2723.27 6.07 0.106522 0.0927521 27778 195446 -1 1940 24 1801 2831 219999 48752 3.90932 3.90932 -137.053 -3.90932 0 0 997811. 3452.63 1.27 0.50 0.39 -1 -1 1.27 0.0138451 0.0122036 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 45.02 vpr 64.25 MiB -1 -1 0.33 21280 1 0.04 -1 -1 33720 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 25.5 MiB 2.73 540 8134 2607 3837 1690 64.2 MiB 0.11 0.00 3.76076 -106.203 -3.76076 3.76076 2.91 0.000155176 0.000126859 0.00879618 0.00714608 40 1646 22 6.95648e+06 173708 706193. 2443.58 20.03 0.374901 0.18532 26914 176310 -1 1364 23 1184 1792 151101 33119 3.19792 3.19792 -108.908 -3.19792 0 0 926341. 3205.33 1.14 0.15 0.43 -1 -1 1.14 0.00666145 0.00594199 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 58.41 vpr 64.78 MiB -1 -1 0.39 21584 1 0.17 -1 -1 34076 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66336 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 26.1 MiB 2.89 678 9356 3868 5007 481 64.8 MiB 0.08 0.00 4.36203 -133.965 -4.36203 4.36203 2.40 0.000172532 0.000137677 0.0537197 0.0514312 40 2565 42 6.95648e+06 202660 706193. 2443.58 32.47 0.502846 0.476372 26914 176310 -1 1865 26 2244 3051 373025 119260 4.41257 4.41257 -145.649 -4.41257 0 0 926341. 3205.33 0.92 0.24 0.36 -1 -1 0.92 0.0156112 0.0137812 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 18.48 vpr 64.46 MiB -1 -1 0.47 21432 1 0.14 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 25.9 MiB 4.24 842 12030 5028 6556 446 64.5 MiB 0.10 0.00 4.9029 -146.03 -4.9029 4.9029 1.34 0.000164581 0.000129658 0.0147435 0.0118955 46 2513 48 6.95648e+06 202660 828058. 2865.25 5.50 0.14148 0.129577 28066 200906 -1 1890 22 1658 2613 198628 43387 4.08261 4.08261 -138.768 -4.08261 0 0 1.01997e+06 3529.29 1.15 0.15 0.69 -1 -1 1.15 0.0132751 0.0118923 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 40.23 vpr 64.73 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33768 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 25.9 MiB 7.12 750 12302 5257 6526 519 64.7 MiB 0.33 0.00 5.69125 -154.683 -5.69125 5.69125 2.43 0.000152264 0.000120839 0.12704 0.124448 46 2398 31 6.95648e+06 202660 828058. 2865.25 8.62 0.463295 0.314704 28066 200906 -1 1821 21 1264 1891 135405 30894 4.59527 4.59527 -147.004 -4.59527 0 0 1.01997e+06 3529.29 1.14 0.25 0.28 -1 -1 1.14 0.146526 0.145214 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 18.90 vpr 64.61 MiB -1 -1 0.89 21432 1 0.11 -1 -1 33560 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 6.23 745 11063 3711 5149 2203 64.6 MiB 0.11 0.00 4.87546 -148.347 -4.87546 4.87546 1.36 0.000165432 0.000131345 0.0459154 0.0435563 46 2121 22 6.95648e+06 303989 828058. 2865.25 3.31 0.128836 0.11828 28066 200906 -1 1662 18 1005 1539 108523 24393 4.08891 4.08891 -138.465 -4.08891 0 0 1.01997e+06 3529.29 1.02 0.16 0.38 -1 -1 1.02 0.0115783 0.0103483 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 19.57 vpr 64.75 MiB -1 -1 0.40 21584 1 0.11 -1 -1 33708 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 26.2 MiB 3.61 704 9368 3487 4602 1279 64.7 MiB 0.10 0.00 4.40123 -135.279 -4.40123 4.40123 2.13 0.000180055 0.000145496 0.072084 0.069033 48 2447 37 6.95648e+06 188184 865456. 2994.66 6.42 0.186557 0.174359 28354 207349 -1 2015 24 1732 2848 349810 83354 3.78982 3.78982 -140.039 -3.78982 0 0 1.05005e+06 3633.38 1.03 0.11 0.44 -1 -1 1.03 0.0288707 0.0271588 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 41.71 vpr 64.61 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33964 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.1 MiB 3.28 641 10346 4274 5371 701 64.6 MiB 0.19 0.00 4.09563 -125.168 -4.09563 4.09563 3.03 0.000160521 0.000127007 0.158707 0.156211 46 1995 28 6.95648e+06 231611 828058. 2865.25 7.11 0.315342 0.304956 28066 200906 -1 1316 24 1249 1860 123484 31068 3.78282 3.78282 -124.089 -3.78282 0 0 1.01997e+06 3529.29 1.40 0.02 0.44 -1 -1 1.40 0.108786 0.107808 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 23.96 vpr 63.90 MiB -1 -1 0.40 20976 1 0.13 -1 -1 33780 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 25.5 MiB 3.33 531 8754 3599 4846 309 63.9 MiB 0.08 0.00 3.56099 -105.132 -3.56099 3.56099 2.33 0.000130291 0.000101883 0.0579521 0.0561663 44 1721 26 6.95648e+06 144757 787024. 2723.27 4.17 0.24708 0.224349 27778 195446 -1 1421 22 1086 1514 124135 29933 3.28122 3.28122 -112.465 -3.28122 0 0 997811. 3452.63 1.37 0.18 0.68 -1 -1 1.37 0.0101636 0.00896201 53 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 48.53 vpr 64.79 MiB -1 -1 0.46 21280 1 0.13 -1 -1 33540 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 26.1 MiB 9.43 804 15255 5341 7615 2299 64.8 MiB 0.17 0.00 4.7291 -131.65 -4.7291 4.7291 2.53 0.000173921 0.000139114 0.0172554 0.0139709 46 2200 28 6.95648e+06 332941 828058. 2865.25 8.63 0.276105 0.264745 28066 200906 -1 1808 22 1202 1906 162527 35392 3.93476 3.93476 -131.175 -3.93476 0 0 1.01997e+06 3529.29 1.19 0.12 0.42 -1 -1 1.19 0.0936454 0.0921791 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 20.92 vpr 64.44 MiB -1 -1 0.36 21432 1 0.21 -1 -1 33964 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 25.9 MiB 3.13 837 8716 3541 4962 213 64.4 MiB 0.24 0.00 4.35698 -145.77 -4.35698 4.35698 2.54 0.000191506 0.000155766 0.012872 0.010629 40 2823 37 6.95648e+06 188184 706193. 2443.58 8.06 0.240595 0.18538 26914 176310 -1 2267 22 2237 3157 311635 67735 4.45636 4.45636 -160.856 -4.45636 0 0 926341. 3205.33 0.54 0.10 0.23 -1 -1 0.54 0.0160742 0.014414 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 20.79 vpr 64.39 MiB -1 -1 0.54 20976 1 0.17 -1 -1 33536 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 25.6 MiB 6.11 735 12083 5107 6723 253 64.4 MiB 0.10 0.00 4.05037 -123.737 -4.05037 4.05037 2.35 0.000133241 0.000103825 0.0128451 0.0103194 38 2159 49 6.95648e+06 159232 678818. 2348.85 4.87 0.0617348 0.0512837 26626 170182 -1 1699 20 1188 1501 127593 27591 3.35181 3.35181 -119.202 -3.35181 0 0 902133. 3121.57 0.63 0.08 0.21 -1 -1 0.63 0.0108017 0.00952802 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 28.16 vpr 63.97 MiB -1 -1 0.39 21280 1 0.07 -1 -1 33728 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.3 MiB 4.56 543 10956 3546 5569 1841 64.0 MiB 0.27 0.00 3.32523 -102.046 -3.32523 3.32523 2.80 0.000131079 0.00010196 0.0110333 0.00893353 36 1943 32 6.95648e+06 188184 648988. 2245.63 7.34 0.0541235 0.0450942 26050 158493 -1 1530 23 1299 1795 186350 39213 3.47072 3.47072 -119.629 -3.47072 0 0 828058. 2865.25 0.83 0.15 0.40 -1 -1 0.83 0.011307 0.0100024 57 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 24.56 vpr 64.63 MiB -1 -1 0.53 21432 1 0.13 -1 -1 34012 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.1 MiB 5.94 933 12754 4730 5000 3024 64.6 MiB 0.11 0.00 4.68742 -153.217 -4.68742 4.68742 2.57 0.000168221 0.000134002 0.0668061 0.0128789 44 2964 34 6.95648e+06 217135 787024. 2723.27 6.89 0.282 0.127463 27778 195446 -1 2100 23 1875 2452 195690 43411 4.67431 4.67431 -164.796 -4.67431 0 0 997811. 3452.63 1.08 0.17 0.30 -1 -1 1.08 0.0144032 0.0128871 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 27.06 vpr 64.76 MiB -1 -1 0.70 21280 1 0.07 -1 -1 33544 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.1 MiB 4.00 823 12030 5052 6595 383 64.8 MiB 0.06 0.00 4.95282 -149.828 -4.95282 4.95282 2.93 0.000180863 0.000144478 0.0146915 0.011901 46 2741 35 6.95648e+06 202660 828058. 2865.25 10.08 0.371629 0.359828 28066 200906 -1 1926 22 1554 2217 197899 43558 4.54096 4.54096 -151.361 -4.54096 0 0 1.01997e+06 3529.29 1.26 0.16 0.40 -1 -1 1.26 0.0144806 0.0129625 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 22.41 vpr 64.77 MiB -1 -1 0.61 21280 1 0.20 -1 -1 33808 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.1 MiB 2.15 936 12156 5048 6539 569 64.8 MiB 0.17 0.08 4.92382 -143.608 -4.92382 4.92382 3.01 0.00023057 0.00019411 0.015289 0.012455 44 2952 50 6.95648e+06 246087 787024. 2723.27 9.30 0.111399 0.0988087 27778 195446 -1 2043 24 1595 2634 201490 44459 4.48661 4.48661 -149.062 -4.48661 0 0 997811. 3452.63 1.17 0.08 0.27 -1 -1 1.17 0.0461655 0.0445279 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 28.24 vpr 64.39 MiB -1 -1 0.65 21280 1 0.03 -1 -1 33724 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 25.8 MiB 2.98 693 11963 4106 5300 2557 64.4 MiB 0.41 0.00 3.45278 -100.466 -3.45278 3.45278 3.30 0.000158133 0.000124679 0.0129076 0.010501 36 2260 41 6.95648e+06 303989 648988. 2245.63 12.92 0.239371 0.228105 26050 158493 -1 1656 22 1438 2269 175433 38273 3.13012 3.13012 -106.022 -3.13012 0 0 828058. 2865.25 0.91 0.13 0.23 -1 -1 0.91 0.0107558 0.00937978 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 21.48 vpr 64.18 MiB -1 -1 0.48 21128 1 0.21 -1 -1 34124 -1 -1 14 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 25.5 MiB 1.97 416 8585 3548 4477 560 64.2 MiB 0.03 0.00 2.9243 -87.2262 -2.9243 2.9243 2.79 0.000119818 9.3008e-05 0.00857123 0.00687555 42 1418 36 6.95648e+06 202660 744469. 2576.02 6.10 0.0597475 0.0507631 27202 183097 -1 1007 21 966 1166 86921 22340 3.04162 3.04162 -98.0518 -3.04162 0 0 949917. 3286.91 1.14 0.14 0.41 -1 -1 1.14 0.120485 0.119337 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.15 vpr 65.10 MiB -1 -1 0.58 21432 1 0.03 -1 -1 33820 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66660 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 26.4 MiB 4.43 1102 15044 5980 6904 2160 65.1 MiB 0.35 0.00 3.84665 -132.831 -3.84665 3.84665 3.00 0.000242355 0.000201884 0.0202946 0.0165011 48 3071 30 6.95648e+06 231611 865456. 2994.66 8.40 0.608555 0.595187 28354 207349 -1 2644 29 2441 3990 459090 125325 4.09482 4.09482 -142.398 -4.09482 0 0 1.05005e+06 3633.38 1.50 0.60 0.61 -1 -1 1.50 0.345469 0.343285 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 36.85 vpr 64.52 MiB -1 -1 0.72 21584 1 0.07 -1 -1 33652 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 25.9 MiB 16.88 1006 12362 4250 6888 1224 64.5 MiB 0.09 0.00 5.3781 -155.355 -5.3781 5.3781 3.26 0.000161896 0.000129347 0.0153462 0.0125177 46 2524 26 6.95648e+06 217135 828058. 2865.25 7.59 0.203029 0.191822 28066 200906 -1 2232 23 1876 2910 269627 51483 4.54986 4.54986 -156.111 -4.54986 0 0 1.01997e+06 3529.29 0.99 0.18 0.31 -1 -1 0.99 0.0454221 0.0438869 81 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 32.19 vpr 64.59 MiB -1 -1 0.59 21280 1 0.19 -1 -1 33916 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 25.9 MiB 12.37 712 8923 3676 5031 216 64.6 MiB 0.12 0.00 3.7346 -127.816 -3.7346 3.7346 2.98 0.000142142 0.000110349 0.0104368 0.0084834 40 2280 24 6.95648e+06 159232 706193. 2443.58 6.34 0.198277 0.183847 26914 176310 -1 2092 27 1709 2451 267567 58051 3.83106 3.83106 -138.489 -3.83106 0 0 926341. 3205.33 1.32 0.36 0.46 -1 -1 1.32 0.246706 0.244982 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 57.70 vpr 64.60 MiB -1 -1 0.40 21432 1 0.14 -1 -1 33780 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66152 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 25.9 MiB 1.72 754 14261 5947 7773 541 64.6 MiB 0.15 0.00 4.35988 -125.269 -4.35988 4.35988 3.13 0.000189442 0.000153352 0.0147976 0.0119355 42 2789 39 6.95648e+06 318465 744469. 2576.02 44.16 0.324363 0.30449 27202 183097 -1 2072 22 1410 2226 237615 51736 3.87001 3.87001 -128.568 -3.87001 0 0 949917. 3286.91 1.21 0.09 0.75 -1 -1 1.21 0.0111228 0.00979311 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 24.85 vpr 64.57 MiB -1 -1 0.40 21736 1 0.11 -1 -1 33472 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 26.1 MiB 3.41 836 14128 4159 6910 3059 64.6 MiB 0.19 0.00 4.50675 -130.886 -4.50675 4.50675 2.99 0.000213802 0.000164445 0.112593 0.0132168 38 2787 26 6.95648e+06 361892 678818. 2348.85 9.08 0.27132 0.163113 26626 170182 -1 2052 20 1552 2384 172074 38585 4.14602 4.14602 -134.294 -4.14602 0 0 902133. 3121.57 1.60 0.13 0.44 -1 -1 1.60 0.0137224 0.0122953 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 46.18 vpr 64.43 MiB -1 -1 0.79 21584 1 0.04 -1 -1 33752 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 25.9 MiB 4.38 715 8544 2877 3872 1795 64.4 MiB 0.30 0.00 3.35027 -102.379 -3.35027 3.35027 3.22 0.000160119 0.000127063 0.0105897 0.00878711 38 2483 34 6.95648e+06 231611 678818. 2348.85 29.60 0.283842 0.267239 26626 170182 -1 1897 23 1489 2426 201506 43472 3.14647 3.14647 -109.753 -3.14647 0 0 902133. 3121.57 0.62 0.15 0.21 -1 -1 0.62 0.0771084 0.0112157 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 29.03 vpr 64.79 MiB -1 -1 0.52 21128 1 0.16 -1 -1 33436 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 26.1 MiB 6.02 917 13856 5527 6642 1687 64.8 MiB 0.25 0.00 4.51937 -148.343 -4.51937 4.51937 3.02 0.000261731 0.000226345 0.0196976 0.0159168 48 3102 25 6.95648e+06 202660 865456. 2994.66 9.23 0.074163 0.0622658 28354 207349 -1 2644 24 2135 3097 380073 79399 4.97816 4.97816 -162.399 -4.97816 0 0 1.05005e+06 3633.38 1.62 0.39 0.38 -1 -1 1.62 0.0154123 0.0138425 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 25.82 vpr 64.61 MiB -1 -1 0.60 21584 1 0.05 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 25.9 MiB 3.35 804 10584 4356 5793 435 64.6 MiB 0.16 0.00 4.51417 -147.562 -4.51417 4.51417 2.69 0.000193933 0.00015552 0.0133541 0.0109977 40 2746 27 6.95648e+06 260562 706193. 2443.58 9.01 0.108313 0.0594872 26914 176310 -1 2089 30 1836 2492 305244 82722 4.39732 4.39732 -159.663 -4.39732 0 0 926341. 3205.33 1.16 0.29 0.31 -1 -1 1.16 0.0176862 0.0154556 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 39.65 vpr 64.04 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33828 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 25.5 MiB 20.57 414 10105 3962 3901 2242 64.0 MiB 0.05 0.00 3.92822 -101.93 -3.92822 3.92822 2.51 0.000127295 9.8698e-05 0.0196106 0.00896644 40 1436 24 6.95648e+06 173708 706193. 2443.58 5.82 0.207873 0.190596 26914 176310 -1 1295 23 1001 1294 116340 28714 3.28862 3.28862 -107.776 -3.28862 0 0 926341. 3205.33 1.12 0.13 0.50 -1 -1 1.12 0.0107838 0.00950601 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 26.50 vpr 64.22 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33896 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 25.6 MiB 3.95 620 10345 3646 5288 1411 64.2 MiB 0.19 0.00 3.72515 -127.215 -3.72515 3.72515 2.64 0.000147122 0.000116288 0.0121609 0.0098463 40 2156 26 6.95648e+06 159232 706193. 2443.58 9.05 0.0573491 0.0473844 26914 176310 -1 1694 23 1274 1589 154676 34159 3.88512 3.88512 -139.19 -3.88512 0 0 926341. 3205.33 1.19 0.42 0.47 -1 -1 1.19 0.0122568 0.0108537 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 31.37 vpr 64.64 MiB -1 -1 0.46 21584 1 0.04 -1 -1 33728 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66192 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.01 748 11615 3856 5496 2263 64.6 MiB 0.15 0.00 4.10411 -120.963 -4.10411 4.10411 2.73 0.000154356 0.000121601 0.012153 0.00987682 40 2871 41 6.95648e+06 332941 706193. 2443.58 15.39 0.232055 0.123431 26914 176310 -1 1952 27 1808 2881 312628 83971 4.14272 4.14272 -133.589 -4.14272 0 0 926341. 3205.33 1.30 0.62 0.34 -1 -1 1.30 0.0153179 0.0135747 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 28.91 vpr 64.11 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33596 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 25.6 MiB 6.45 591 9994 4171 5357 466 64.1 MiB 0.19 0.00 4.06527 -116.04 -4.06527 4.06527 2.49 0.000140676 0.000112258 0.0102313 0.00817044 40 2287 32 6.95648e+06 188184 706193. 2443.58 9.61 0.59374 0.335484 26914 176310 -1 1772 24 1410 1799 181608 43061 4.03342 4.03342 -120.917 -4.03342 0 0 926341. 3205.33 1.16 0.27 0.24 -1 -1 1.16 0.0891957 0.0878311 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 25.18 vpr 64.05 MiB -1 -1 0.35 21128 1 0.12 -1 -1 33696 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 25.6 MiB 4.64 609 9497 4084 5186 227 64.1 MiB 0.07 0.00 3.96096 -113.861 -3.96096 3.96096 3.54 0.000136187 0.000106003 0.0103129 0.00827866 44 1960 28 6.95648e+06 130281 787024. 2723.27 7.67 0.0877079 0.0788646 27778 195446 -1 1413 20 1317 1952 159640 34547 2.99337 2.99337 -109.258 -2.99337 0 0 997811. 3452.63 1.41 0.15 0.40 -1 -1 1.41 0.0751356 0.00931123 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 23.41 vpr 64.47 MiB -1 -1 0.51 21280 1 0.03 -1 -1 33844 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 25.9 MiB 3.93 767 14295 5145 7027 2123 64.5 MiB 0.22 0.00 3.44853 -115.891 -3.44853 3.44853 3.05 0.0001711 0.000135566 0.0827367 0.079707 40 2079 23 6.95648e+06 347416 706193. 2443.58 6.92 0.266756 0.255563 26914 176310 -1 1722 21 1678 2282 188630 41591 3.30477 3.30477 -118.576 -3.30477 0 0 926341. 3205.33 1.39 0.16 0.72 -1 -1 1.39 0.0135079 0.0120786 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 35.41 vpr 64.29 MiB -1 -1 0.51 21280 1 0.22 -1 -1 33616 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 25.5 MiB 8.81 631 11925 4064 5891 1970 64.3 MiB 0.08 0.00 3.97747 -119.507 -3.97747 3.97747 3.07 0.000141765 0.000111685 0.0132539 0.0106254 38 2048 45 6.95648e+06 173708 678818. 2348.85 12.46 0.258223 0.247494 26626 170182 -1 1607 23 1113 1586 163638 50863 3.49622 3.49622 -123.168 -3.49622 0 0 902133. 3121.57 1.17 0.33 0.38 -1 -1 1.17 0.0110938 0.00982883 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 29.61 vpr 64.50 MiB -1 -1 0.57 21280 1 0.08 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 25.9 MiB 5.27 678 15017 5720 7175 2122 64.5 MiB 0.06 0.00 3.20268 -108.887 -3.20268 3.20268 3.66 0.000163278 0.000127814 0.0164423 0.0130201 52 2008 48 6.95648e+06 318465 926341. 3205.33 8.83 0.455511 0.33454 29218 227130 -1 1469 22 1253 1887 146863 37224 2.99297 2.99297 -108.726 -2.99297 0 0 1.14541e+06 3963.36 1.61 0.06 1.06 -1 -1 1.61 0.0124308 0.0110402 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 26.50 vpr 64.31 MiB -1 -1 0.62 21280 1 0.11 -1 -1 33664 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 25.8 MiB 6.16 662 8876 3614 4824 438 64.3 MiB 0.07 0.00 4.0342 -133.245 -4.0342 4.0342 2.56 0.00018899 0.000143524 0.012219 0.0099754 48 2022 21 6.95648e+06 217135 865456. 2994.66 8.02 0.170801 0.0559723 28354 207349 -1 1664 24 1657 2234 239711 74482 3.95211 3.95211 -140.908 -3.95211 0 0 1.05005e+06 3633.38 1.54 0.18 0.36 -1 -1 1.54 0.0603002 0.0585952 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 26.61 vpr 64.38 MiB -1 -1 0.53 21280 1 0.20 -1 -1 33408 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 25.8 MiB 5.21 509 10304 4083 5484 737 64.4 MiB 0.14 0.00 2.9023 -97.3173 -2.9023 2.9023 2.87 0.000169008 0.00013393 0.0125255 0.0101197 46 1859 26 6.95648e+06 144757 828058. 2865.25 8.54 0.253823 0.244244 28066 200906 -1 1379 28 1296 1972 169485 38610 3.12432 3.12432 -105.586 -3.12432 0 0 1.01997e+06 3529.29 1.49 0.11 0.82 -1 -1 1.49 0.0128282 0.0112422 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 31.27 vpr 64.46 MiB -1 -1 0.45 21432 1 0.15 -1 -1 33948 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 25.8 MiB 5.52 759 10819 2915 6394 1510 64.5 MiB 0.08 0.00 4.04348 -128.875 -4.04348 4.04348 2.56 0.000141006 0.000111615 0.0460564 0.00972984 38 2487 50 6.95648e+06 159232 678818. 2348.85 14.76 0.103033 0.0574875 26626 170182 -1 1962 22 1475 2156 194034 41144 3.98932 3.98932 -139.116 -3.98932 0 0 902133. 3121.57 0.98 0.15 0.47 -1 -1 0.98 0.0112 0.00996968 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 55.31 vpr 64.45 MiB -1 -1 0.57 21432 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 25.9 MiB 8.57 781 10370 4130 5165 1075 64.4 MiB 0.18 0.00 4.16878 -129.099 -4.16878 4.16878 3.87 0.0001712 0.000139246 0.0119381 0.00972181 40 2510 32 6.95648e+06 202660 706193. 2443.58 32.99 0.223606 0.204719 26914 176310 -1 2116 23 1814 2401 210166 48272 4.93652 4.93652 -149.134 -4.93652 0 0 926341. 3205.33 1.29 0.15 0.44 -1 -1 1.29 0.0135028 0.0120694 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 18.71 vpr 64.34 MiB -1 -1 0.38 21432 1 0.26 -1 -1 33588 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 25.7 MiB 2.91 662 11118 4310 5269 1539 64.3 MiB 0.22 0.00 4.24388 -117.566 -4.24388 4.24388 2.30 0.000171217 0.000140159 0.184062 0.181837 42 2502 35 6.95648e+06 303989 744469. 2576.02 6.36 0.274108 0.263914 27202 183097 -1 1610 35 1272 1824 238633 81553 3.54316 3.54316 -114.241 -3.54316 0 0 949917. 3286.91 1.12 0.16 0.48 -1 -1 1.12 0.0162827 0.014246 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 71.74 vpr 64.55 MiB -1 -1 0.54 21584 1 0.13 -1 -1 33512 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66100 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 25.9 MiB 3.65 835 12030 5024 6545 461 64.6 MiB 0.20 0.00 4.9402 -157.131 -4.9402 4.9402 2.95 0.000180496 0.000144753 0.0156459 0.0128484 48 2888 42 6.95648e+06 202660 865456. 2994.66 54.06 0.274823 0.25229 28354 207349 -1 2151 24 2212 3089 336395 85250 4.85622 4.85622 -161.199 -4.85622 0 0 1.05005e+06 3633.38 1.29 0.30 0.51 -1 -1 1.29 0.176378 0.174672 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 19.30 vpr 63.80 MiB -1 -1 0.41 20976 1 0.03 -1 -1 33480 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 5.86 534 10476 4351 5783 342 63.8 MiB 0.06 0.00 3.74884 -96.385 -3.74884 3.74884 1.25 0.000127281 9.9977e-05 0.0324693 0.0303248 40 1532 22 6.95648e+06 188184 706193. 2443.58 4.14 0.165482 0.157246 26914 176310 -1 1442 22 861 1408 111894 25052 3.03022 3.03022 -100.616 -3.03022 0 0 926341. 3205.33 0.80 0.12 0.34 -1 -1 0.80 0.0213656 0.0199679 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 27.78 vpr 64.73 MiB -1 -1 0.61 21432 1 0.14 -1 -1 33652 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 26.2 MiB 3.49 808 15533 3949 11126 458 64.7 MiB 0.13 0.00 3.75239 -135.532 -3.75239 3.75239 2.41 0.0001953 0.000155738 0.0168223 0.0136551 38 2768 46 6.95648e+06 361892 678818. 2348.85 11.44 0.161265 0.0700024 26626 170182 -1 2002 22 1722 2306 186952 40190 4.06026 4.06026 -150.704 -4.06026 0 0 902133. 3121.57 1.18 0.13 0.59 -1 -1 1.18 0.0150561 0.0133962 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 27.62 vpr 64.55 MiB -1 -1 0.58 21584 1 0.12 -1 -1 33572 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.1 MiB 10.46 647 11079 4614 6219 246 64.6 MiB 0.08 0.00 2.96105 -113.708 -2.96105 2.96105 1.29 0.000166293 0.000130594 0.0152495 0.0123276 38 2082 24 6.95648e+06 144757 678818. 2348.85 7.32 0.424521 0.247385 26626 170182 -1 1578 22 1485 2093 172120 37079 3.04352 3.04352 -126.596 -3.04352 0 0 902133. 3121.57 1.15 0.17 0.42 -1 -1 1.15 0.03981 0.038282 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 59.29 vpr 64.52 MiB -1 -1 0.38 21584 1 0.12 -1 -1 33820 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.27 727 10670 3941 5494 1235 64.5 MiB 0.16 0.00 4.11943 -125.455 -4.11943 4.11943 2.77 0.000177992 0.000142582 0.073839 0.0716 40 3045 40 6.95648e+06 318465 706193. 2443.58 44.16 0.77287 0.752007 26914 176310 -1 2079 21 1362 1978 176336 41348 4.36701 4.36701 -135.308 -4.36701 0 0 926341. 3205.33 1.08 0.30 0.38 -1 -1 1.08 0.0123603 0.0108492 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 30.12 vpr 64.86 MiB -1 -1 0.66 21584 1 0.07 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 26.2 MiB 6.17 1022 12247 5112 6717 418 64.9 MiB 0.20 0.00 6.05399 -174.256 -6.05399 6.05399 3.49 0.000185939 0.000149185 0.0999582 0.0966042 50 2835 27 6.95648e+06 217135 902133. 3121.57 7.77 0.15951 0.147251 28642 213929 -1 2360 23 2000 2863 225316 49509 5.39595 5.39595 -173.175 -5.39595 0 0 1.08113e+06 3740.92 1.52 0.16 0.37 -1 -1 1.52 0.0167506 0.0150332 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 30.26 vpr 63.93 MiB -1 -1 0.64 21128 1 0.11 -1 -1 33728 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 25.6 MiB 9.71 531 11017 3550 5709 1758 63.9 MiB 0.13 0.00 2.69765 -94.1883 -2.69765 2.69765 2.92 0.000131603 0.000101976 0.0104651 0.00834697 36 1670 24 6.95648e+06 159232 648988. 2245.63 6.99 0.198426 0.190212 26050 158493 -1 1376 22 897 1147 129321 26354 2.51043 2.51043 -96.7317 -2.51043 0 0 828058. 2865.25 0.93 0.19 0.34 -1 -1 0.93 0.00899241 0.00789819 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 30.69 vpr 64.30 MiB -1 -1 0.59 21280 1 0.20 -1 -1 33708 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 25.6 MiB 6.34 454 9193 3807 4991 395 64.3 MiB 0.11 0.00 3.70034 -111.63 -3.70034 3.70034 3.53 0.000150772 0.00011781 0.0115087 0.00929281 44 1701 43 6.95648e+06 159232 787024. 2723.27 7.77 0.326637 0.316321 27778 195446 -1 1200 42 1475 2367 304920 69406 3.39367 3.39367 -112.798 -3.39367 0 0 997811. 3452.63 1.28 0.32 0.66 -1 -1 1.28 0.0177282 0.0153164 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 30.17 vpr 64.37 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33816 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 25.8 MiB 1.64 540 6894 2749 3889 256 64.4 MiB 0.11 0.00 3.0756 -105.849 -3.0756 3.0756 3.16 0.000217495 0.000182737 0.00865685 0.00695275 48 2093 40 6.95648e+06 144757 865456. 2994.66 14.50 0.346233 0.213565 28354 207349 -1 1461 20 1251 1952 212681 53380 2.86957 2.86957 -111.171 -2.86957 0 0 1.05005e+06 3633.38 0.69 0.08 0.42 -1 -1 0.69 0.0116749 0.0104345 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 23.15 vpr 64.03 MiB -1 -1 0.74 20824 1 0.20 -1 -1 33820 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 25.5 MiB 1.66 427 8607 3186 4041 1380 64.0 MiB 0.12 0.00 3.25923 -75.6499 -3.25923 3.25923 3.03 0.000136104 0.000109619 0.00846075 0.00676124 36 1724 49 6.95648e+06 260562 648988. 2245.63 8.89 0.16354 0.154577 26050 158493 -1 1184 19 856 1317 107054 24664 3.21822 3.21822 -88.2062 -3.21822 0 0 828058. 2865.25 1.01 0.33 0.24 -1 -1 1.01 0.306212 0.00679548 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 35.98 vpr 64.54 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33704 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66084 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 25.9 MiB 7.40 691 12876 3790 6759 2327 64.5 MiB 0.36 0.00 3.85562 -123.567 -3.85562 3.85562 2.83 0.00018823 0.000151423 0.276605 0.273621 54 2268 48 6.95648e+06 173708 949917. 3286.91 11.06 0.525172 0.36659 29506 232905 -1 1461 19 1452 2424 160831 40373 4.26202 4.26202 -126.443 -4.26202 0 0 1.17392e+06 4061.99 2.07 0.20 0.62 -1 -1 2.07 0.167319 0.165871 73 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 33.02 vpr 64.73 MiB -1 -1 0.84 21584 1 0.08 -1 -1 33616 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 3.17 719 10056 4152 5465 439 64.7 MiB 0.36 0.00 4.20868 -140.697 -4.20868 4.20868 3.26 0.000191641 0.000153774 0.324432 0.321929 38 2570 39 6.95648e+06 246087 678818. 2348.85 12.58 0.388841 0.376411 26626 170182 -1 1936 20 1698 2238 181693 41509 3.74872 3.74872 -141.229 -3.74872 0 0 902133. 3121.57 1.52 0.07 0.42 -1 -1 1.52 0.0139526 0.0124567 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 59.91 vpr 64.56 MiB -1 -1 0.48 21280 1 0.04 -1 -1 33796 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 25.9 MiB 5.68 925 13599 5712 7221 666 64.6 MiB 0.05 0.00 5.03973 -148.547 -5.03973 5.03973 2.89 0.000175233 0.000141203 0.0222157 0.0205706 40 3040 27 6.99608e+06 220735 706193. 2443.58 41.52 0.238056 0.123775 26914 176310 -1 2373 23 1911 2628 219103 51878 4.66241 4.66241 -156.688 -4.66241 0 0 926341. 3205.33 1.29 0.13 0.41 -1 -1 1.29 0.0143679 0.0127893 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 34.32 vpr 64.70 MiB -1 -1 0.49 21584 1 0.13 -1 -1 33864 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 8.49 947 9036 3528 4833 675 64.7 MiB 0.18 0.00 5.09794 -153.24 -5.09794 5.09794 2.87 0.000174368 0.000140058 0.0112154 0.00925241 46 2962 35 6.99608e+06 250167 828058. 2865.25 9.33 0.0718243 0.0613846 28066 200906 -1 2108 21 2147 3210 215179 48132 4.72379 4.72379 -153.095 -4.72379 0 0 1.01997e+06 3529.29 1.71 0.12 0.44 -1 -1 1.71 0.020751 0.0194252 99 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 29.17 vpr 64.00 MiB -1 -1 0.53 21280 1 0.12 -1 -1 33744 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.6 MiB 3.38 838 11366 4465 5588 1313 64.0 MiB 0.36 0.00 3.53589 -111.786 -3.53589 3.53589 3.06 0.000180812 0.000148415 0.0973572 0.0948958 36 2669 46 6.99608e+06 206020 648988. 2245.63 12.18 0.254041 0.243029 26050 158493 -1 1926 22 1506 2019 191678 42730 3.52136 3.52136 -117.755 -3.52136 0 0 828058. 2865.25 1.10 0.55 0.27 -1 -1 1.10 0.517589 0.516135 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 27.15 vpr 64.09 MiB -1 -1 0.62 21128 1 0.03 -1 -1 33500 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 25.6 MiB 4.94 688 10998 4578 5788 632 64.1 MiB 0.08 0.00 4.05128 -115.844 -4.05128 4.05128 3.90 0.000169531 0.000137802 0.0125785 0.0102854 46 2181 45 6.99608e+06 235451 828058. 2865.25 8.52 0.138592 0.0553022 28066 200906 -1 1625 23 1535 2413 154308 37539 3.67782 3.67782 -117.38 -3.67782 0 0 1.01997e+06 3529.29 1.08 0.11 0.62 -1 -1 1.08 0.013445 0.012005 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 32.36 vpr 64.48 MiB -1 -1 0.52 21432 1 0.07 -1 -1 33404 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 25.8 MiB 10.14 845 10536 4153 4899 1484 64.5 MiB 0.12 0.00 4.59275 -141.742 -4.59275 4.59275 2.29 0.00019625 0.000126204 0.0653117 0.0629711 42 3328 41 6.99608e+06 206020 744469. 2576.02 11.48 0.123494 0.112328 27202 183097 -1 2510 24 1850 3188 327022 67236 4.67815 4.67815 -157.307 -4.67815 0 0 949917. 3286.91 1.17 0.32 0.44 -1 -1 1.17 0.0340471 0.0325023 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 37.32 vpr 64.61 MiB -1 -1 0.91 20976 1 0.18 -1 -1 33388 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 25.9 MiB 12.32 972 12681 4858 6385 1438 64.6 MiB 0.27 0.00 3.38924 -122.219 -3.38924 3.38924 2.81 0.000178532 0.000142209 0.181434 0.178529 46 3347 36 6.99608e+06 250167 828058. 2865.25 12.09 0.239919 0.227999 28066 200906 -1 2395 27 1888 3000 217208 50091 3.57241 3.57241 -132.058 -3.57241 0 0 1.01997e+06 3529.29 1.46 0.17 0.59 -1 -1 1.46 0.112366 0.0140757 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 27.24 vpr 63.85 MiB -1 -1 0.57 21280 1 0.09 -1 -1 34140 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 25.3 MiB 6.53 491 10924 4290 5184 1450 63.9 MiB 0.13 0.00 3.89582 -109.26 -3.89582 3.89582 3.41 0.000118979 9.2516e-05 0.010952 0.00875392 44 1845 41 6.99608e+06 220735 787024. 2723.27 7.12 0.275172 0.265885 27778 195446 -1 1273 29 1379 2084 153176 35803 3.18926 3.18926 -106.388 -3.18926 0 0 997811. 3452.63 1.38 0.31 0.49 -1 -1 1.38 0.0120217 0.0104788 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 20.00 vpr 64.16 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33708 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.5 MiB 1.25 646 12568 4471 6001 2096 64.2 MiB 0.27 0.00 2.86205 -89.6785 -2.86205 2.86205 2.97 0.000140919 0.000109836 0.0107154 0.00856243 44 1974 28 6.99608e+06 367892 787024. 2723.27 6.62 0.202528 0.121199 27778 195446 -1 1534 29 1285 2222 191860 59564 2.75632 2.75632 -95.7095 -2.75632 0 0 997811. 3452.63 1.42 0.15 0.39 -1 -1 1.42 0.0131256 0.0114818 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 51.50 vpr 64.23 MiB -1 -1 0.31 21584 1 0.14 -1 -1 33892 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 25.6 MiB 2.58 996 6597 1763 3930 904 64.2 MiB 0.11 0.00 3.43418 -125.292 -3.43418 3.43418 2.70 0.000149239 0.000117355 0.00792216 0.00644205 38 2628 32 6.99608e+06 206020 678818. 2348.85 34.55 0.108808 0.093443 26626 170182 -1 2231 22 1692 2317 199941 39045 3.22627 3.22627 -127.955 -3.22627 0 0 902133. 3121.57 1.00 0.05 0.42 -1 -1 1.00 0.0118303 0.0104532 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 23.27 vpr 64.15 MiB -1 -1 0.49 21280 1 0.02 -1 -1 33948 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 25.6 MiB 3.08 768 12465 4799 6628 1038 64.1 MiB 0.23 0.00 4.05822 -139.086 -4.05822 4.05822 3.16 0.000148008 0.000118221 0.191777 0.189281 40 2080 23 6.99608e+06 191304 706193. 2443.58 8.03 0.292572 0.282742 26914 176310 -1 1902 21 1404 1799 161852 35357 3.62016 3.62016 -136.406 -3.62016 0 0 926341. 3205.33 1.33 0.21 0.60 -1 -1 1.33 0.0117305 0.0103816 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 22.60 vpr 64.24 MiB -1 -1 0.41 21280 1 0.17 -1 -1 33996 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 25.8 MiB 2.75 688 11596 4869 6191 536 64.2 MiB 0.19 0.00 3.88079 -123.458 -3.88079 3.88079 3.45 0.000141052 0.00010995 0.0129302 0.0105057 44 2498 27 6.99608e+06 206020 787024. 2723.27 8.40 0.268765 0.25897 27778 195446 -1 1698 22 1493 2012 148073 35718 3.6069 3.6069 -122.968 -3.6069 0 0 997811. 3452.63 1.33 0.07 0.47 -1 -1 1.33 0.0441342 0.0428446 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 23.82 vpr 63.88 MiB -1 -1 0.63 20976 1 0.11 -1 -1 33744 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 25.3 MiB 2.40 863 6237 1573 4339 325 63.9 MiB 0.03 0.00 3.25498 -118.92 -3.25498 3.25498 2.61 0.000140724 0.000112244 0.00727474 0.00595966 38 2329 21 6.99608e+06 161872 678818. 2348.85 10.65 0.578272 0.457533 26626 170182 -1 2049 16 1120 1472 120334 25200 3.17627 3.17627 -118.474 -3.17627 0 0 902133. 3121.57 0.93 0.28 0.33 -1 -1 0.93 0.149597 0.148873 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 24.65 vpr 64.40 MiB -1 -1 0.50 21280 1 0.27 -1 -1 33800 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 25.8 MiB 3.42 873 12585 5265 7003 317 64.4 MiB 0.09 0.00 3.95082 -135.525 -3.95082 3.95082 2.49 0.000173904 0.000140135 0.0348694 0.0320001 40 3058 28 6.99608e+06 220735 706193. 2443.58 10.13 0.563315 0.42799 26914 176310 -1 2401 23 2079 3012 267732 57155 3.60816 3.60816 -134.222 -3.60816 0 0 926341. 3205.33 1.05 0.16 0.45 -1 -1 1.05 0.0126873 0.0113228 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 24.90 vpr 64.64 MiB -1 -1 0.57 21280 1 0.02 -1 -1 33816 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 25.9 MiB 4.89 919 12856 3600 6557 2699 64.6 MiB 0.15 0.00 4.71129 -139.414 -4.71129 4.71129 2.77 0.000175127 0.000139665 0.0146413 0.0119911 54 2802 36 6.99608e+06 250167 949917. 3286.91 8.52 0.226854 0.21562 29506 232905 -1 1802 23 2043 2734 201520 47258 4.19521 4.19521 -138.846 -4.19521 0 0 1.17392e+06 4061.99 1.48 0.43 0.58 -1 -1 1.48 0.0141433 0.0126324 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 28.94 vpr 63.63 MiB -1 -1 0.46 21432 1 0.02 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 25.2 MiB 10.30 532 10304 4052 4897 1355 63.6 MiB 0.17 0.00 3.0564 -87.6148 -3.0564 3.0564 2.34 0.000129189 0.000101356 0.00648444 0.00520814 44 1928 46 6.99608e+06 191304 787024. 2723.27 8.28 0.207963 0.199416 27778 195446 -1 1282 20 959 1352 101835 25459 3.08397 3.08397 -92.6682 -3.08397 0 0 997811. 3452.63 1.79 0.04 0.46 -1 -1 1.79 0.00996759 0.00880542 64 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 27.92 vpr 64.50 MiB -1 -1 0.53 21432 1 0.21 -1 -1 33696 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 25.9 MiB 4.07 1140 12464 4431 6558 1475 64.5 MiB 0.30 0.00 3.76129 -130.411 -3.76129 3.76129 2.66 0.000204737 0.00016924 0.0155986 0.0127445 40 3117 34 6.99608e+06 235451 706193. 2443.58 10.59 0.0723283 0.0610606 26914 176310 -1 2645 21 2052 3133 316208 64208 3.65912 3.65912 -140.567 -3.65912 0 0 926341. 3205.33 1.48 0.33 0.44 -1 -1 1.48 0.01391 0.0122895 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 62.38 vpr 64.52 MiB -1 -1 0.44 21432 1 0.13 -1 -1 33704 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 25.9 MiB 2.95 906 13768 5796 7604 368 64.5 MiB 0.36 0.00 4.30315 -137.123 -4.30315 4.30315 2.65 0.000192932 0.000158232 0.212087 0.209163 40 2625 23 6.99608e+06 220735 706193. 2443.58 43.83 1.23564 0.944669 26914 176310 -1 2177 23 1722 2343 280673 83000 3.49486 3.49486 -128.652 -3.49486 0 0 926341. 3205.33 1.43 0.25 0.39 -1 -1 1.43 0.0136439 0.0121505 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 20.45 vpr 64.51 MiB -1 -1 0.37 21280 1 0.03 -1 -1 33508 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.0 MiB 2.76 905 11064 3491 5867 1706 64.5 MiB 0.20 0.00 3.21889 -121.149 -3.21889 3.21889 2.90 0.000158223 0.0001266 0.0121631 0.00994897 42 3082 30 6.99608e+06 220735 744469. 2576.02 7.54 0.0545593 0.0455866 27202 183097 -1 2213 22 1822 2291 214482 48306 3.40796 3.40796 -136.466 -3.40796 0 0 949917. 3286.91 1.29 0.02 0.27 -1 -1 1.29 0.00707932 0.00637281 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 21.95 vpr 63.73 MiB -1 -1 0.44 21128 1 0.12 -1 -1 33856 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 25.2 MiB 6.41 630 8565 3545 4800 220 63.7 MiB 0.19 0.00 2.33546 -90.9219 -2.33546 2.33546 2.81 5.4371e-05 4.1543e-05 0.00705516 0.00554976 34 1779 31 6.99608e+06 147157 618332. 2139.56 5.68 0.0399199 0.0328344 25762 151098 -1 1455 24 825 913 111725 23696 2.10148 2.10148 -90.1959 -2.10148 0 0 787024. 2723.27 0.88 0.13 0.40 -1 -1 0.88 0.00795589 0.00678772 52 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 23.62 vpr 64.02 MiB -1 -1 0.42 21280 1 0.02 -1 -1 33888 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 25.5 MiB 7.63 783 8236 2031 5935 270 64.0 MiB 0.16 0.00 3.70832 -125.553 -3.70832 3.70832 2.42 0.000144118 0.000116061 0.0095307 0.00779307 40 2194 25 6.99608e+06 191304 706193. 2443.58 5.47 0.178147 0.169603 26914 176310 -1 2045 20 1440 2073 211575 44510 3.66441 3.66441 -138.837 -3.66441 0 0 926341. 3205.33 1.40 0.07 0.49 -1 -1 1.40 0.0110888 0.00992203 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 25.53 vpr 64.31 MiB -1 -1 0.57 21432 1 0.10 -1 -1 33940 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 25.8 MiB 4.01 786 12162 4998 6683 481 64.3 MiB 0.11 0.00 3.98084 -132.342 -3.98084 3.98084 2.27 0.000156451 0.000124443 0.0144777 0.011778 44 2843 30 6.99608e+06 294314 787024. 2723.27 10.76 0.330776 0.276672 27778 195446 -1 1830 21 1663 2556 220858 47746 3.94985 3.94985 -136.261 -3.94985 0 0 997811. 3452.63 0.82 0.52 0.39 -1 -1 0.82 0.0133949 0.0119868 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 38.10 vpr 64.47 MiB -1 -1 0.39 21432 1 0.19 -1 -1 33652 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.9 MiB 7.61 1267 15044 5761 7520 1763 64.5 MiB 0.25 0.00 4.6547 -145.44 -4.6547 4.6547 2.91 0.000169935 0.000136219 0.196496 0.0111821 38 3632 46 6.99608e+06 235451 678818. 2348.85 19.74 0.257636 0.0620024 26626 170182 -1 2938 22 2141 3120 303377 56654 4.18241 4.18241 -146.004 -4.18241 0 0 902133. 3121.57 1.53 0.17 0.32 -1 -1 1.53 0.0143429 0.0127962 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 22.13 vpr 63.76 MiB -1 -1 0.45 21280 1 0.08 -1 -1 34172 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 25.0 MiB 7.09 410 7809 3349 3986 474 63.8 MiB 0.12 0.00 2.7218 -77.6213 -2.7218 2.7218 2.32 0.000121548 9.6908e-05 0.0952664 0.0938056 38 1274 35 6.99608e+06 191304 678818. 2348.85 5.41 0.127822 0.120657 26626 170182 -1 950 19 761 840 63910 15458 2.36202 2.36202 -74.6155 -2.36202 0 0 902133. 3121.57 0.99 0.02 0.32 -1 -1 0.99 0.00743294 0.00645103 53 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 26.47 vpr 64.19 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 25.5 MiB 3.63 705 12078 4998 6546 534 64.2 MiB 0.19 0.00 4.4821 -114.423 -4.4821 4.4821 2.26 0.000226891 0.000191392 0.116931 0.0106154 38 2743 36 6.99608e+06 220735 678818. 2348.85 13.93 0.33075 0.216376 26626 170182 -1 1871 23 1411 2380 182868 39939 3.85196 3.85196 -122.055 -3.85196 0 0 902133. 3121.57 0.90 0.12 0.21 -1 -1 0.90 0.011685 0.0103588 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 14.15 vpr 63.47 MiB -1 -1 0.32 20672 1 0.01 -1 -1 33464 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64992 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.9 MiB 0.76 437 9906 4138 5588 180 63.5 MiB 0.10 0.00 2.06911 -68.7948 -2.06911 2.06911 2.02 0.000100746 7.6232e-05 0.00824112 0.00639416 36 1252 23 6.99608e+06 117725 648988. 2245.63 4.25 0.102063 0.095255 26050 158493 -1 953 21 601 709 61167 13917 1.95112 1.95112 -70.894 -1.95112 0 0 828058. 2865.25 0.97 0.14 0.22 -1 -1 0.97 0.00719707 0.00625924 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 26.47 vpr 64.34 MiB -1 -1 0.82 21128 1 0.12 -1 -1 33372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 25.7 MiB 3.67 788 11366 4166 5016 2184 64.3 MiB 0.13 0.00 4.53824 -123.102 -4.53824 4.53824 2.96 0.000166176 0.000133047 0.012266 0.00995307 38 2712 26 6.99608e+06 206020 678818. 2348.85 12.12 0.0889055 0.0795355 26626 170182 -1 1962 23 1397 2020 146825 32893 4.06311 4.06311 -129.454 -4.06311 0 0 902133. 3121.57 0.96 0.25 0.25 -1 -1 0.96 0.133971 0.132555 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 19.40 vpr 64.11 MiB -1 -1 0.33 21128 1 0.23 -1 -1 33888 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.6 MiB 1.44 753 10873 3616 5657 1600 64.1 MiB 0.14 0.00 2.84195 -96.8447 -2.84195 2.84195 2.28 8.2712e-05 6.0816e-05 0.00542077 0.00432634 38 2342 33 6.99608e+06 309029 678818. 2348.85 7.49 0.215687 0.207232 26626 170182 -1 1703 20 1321 2157 135646 31751 3.33972 3.33972 -107.715 -3.33972 0 0 902133. 3121.57 1.15 0.19 0.28 -1 -1 1.15 0.011631 0.0103369 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 29.84 vpr 64.41 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33424 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 25.6 MiB 5.13 847 10726 4408 5888 430 64.4 MiB 0.36 0.00 4.20957 -126.724 -4.20957 4.20957 2.27 8.0897e-05 6.0474e-05 0.0121343 0.00985616 46 3164 43 6.99608e+06 220735 828058. 2865.25 14.48 0.0915375 0.0587401 28066 200906 -1 2141 23 1703 2499 189910 44242 4.09236 4.09236 -132.047 -4.09236 0 0 1.01997e+06 3529.29 1.20 0.14 0.46 -1 -1 1.20 0.00818029 0.00735675 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 28.16 vpr 64.20 MiB -1 -1 0.46 21584 1 0.20 -1 -1 33688 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 25.5 MiB 8.01 674 9356 2869 4552 1935 64.2 MiB 0.14 0.00 3.13575 -106.549 -3.13575 3.13575 2.55 0.000137406 0.000107637 0.115228 0.113219 38 2611 50 6.99608e+06 176588 678818. 2348.85 9.53 0.166583 0.155973 26626 170182 -1 1759 22 1375 1949 189887 40879 3.32052 3.32052 -126.851 -3.32052 0 0 902133. 3121.57 1.42 0.17 0.30 -1 -1 1.42 0.0111915 0.00966648 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 22.38 vpr 63.71 MiB -1 -1 0.25 21128 1 0.10 -1 -1 33600 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 25.1 MiB 4.60 589 9996 4091 5441 464 63.7 MiB 0.07 0.00 3.70857 -108.813 -3.70857 3.70857 2.30 0.000131811 0.000102745 0.0102136 0.00823174 46 1966 20 6.99608e+06 206020 828058. 2865.25 8.36 0.159815 0.152109 28066 200906 -1 1506 20 1116 1694 127421 30809 3.35721 3.35721 -115.344 -3.35721 0 0 1.01997e+06 3529.29 1.46 0.13 0.41 -1 -1 1.46 0.108567 0.10741 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 19.36 vpr 64.11 MiB -1 -1 0.37 21280 1 0.05 -1 -1 33708 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 25.4 MiB 2.25 621 9208 3749 4985 474 64.1 MiB 0.14 0.00 3.24014 -101.609 -3.24014 3.24014 2.48 0.000138065 0.00010978 0.00908661 0.00740399 38 1969 23 6.99608e+06 264882 678818. 2348.85 6.80 0.218797 0.210753 26626 170182 -1 1473 18 1091 1705 127233 27662 3.40101 3.40101 -110.982 -3.40101 0 0 902133. 3121.57 0.93 0.06 0.33 -1 -1 0.93 0.00925046 0.00821416 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 16.83 vpr 63.78 MiB -1 -1 0.37 21128 1 0.15 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.2 MiB 0.99 516 11079 4202 5369 1508 63.8 MiB 0.37 0.00 3.37459 -107.294 -3.37459 3.37459 2.34 0.000153115 0.000119024 0.0116795 0.0093362 42 1871 39 6.99608e+06 147157 744469. 2576.02 5.27 0.0499122 0.041313 27202 183097 -1 1320 22 1151 1644 120070 29992 3.32957 3.32957 -114.574 -3.32957 0 0 949917. 3286.91 0.87 0.07 0.33 -1 -1 0.87 0.00990793 0.00872915 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 20.04 vpr 64.15 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33444 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 25.6 MiB 2.81 676 8396 3459 4685 252 64.2 MiB 0.19 0.00 3.25548 -105.576 -3.25548 3.25548 3.15 0.000152776 0.000121177 0.00945105 0.00760112 44 2181 31 6.99608e+06 191304 787024. 2723.27 6.51 0.306791 0.298667 27778 195446 -1 1545 21 1175 1591 111985 25819 2.90272 2.90272 -103.292 -2.90272 0 0 997811. 3452.63 0.98 0.03 0.33 -1 -1 0.98 0.00903579 0.00794333 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 30.97 vpr 64.32 MiB -1 -1 0.47 21128 1 0.08 -1 -1 33764 -1 -1 15 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 25.6 MiB 9.12 889 11756 3248 7405 1103 64.3 MiB 0.02 0.00 2.90695 -105.014 -2.90695 2.90695 2.88 5.9528e-05 4.6969e-05 0.00548378 0.00443372 36 2464 32 6.99608e+06 220735 648988. 2245.63 11.43 0.0791028 0.0705231 26050 158493 -1 1973 23 1417 1899 163421 33391 2.79132 2.79132 -110.906 -2.79132 0 0 828058. 2865.25 1.24 0.35 0.32 -1 -1 1.24 0.321178 0.319908 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 28.70 vpr 64.42 MiB -1 -1 0.33 21280 1 0.22 -1 -1 33828 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 25.6 MiB 4.36 941 11432 4088 5131 2213 64.4 MiB 0.16 0.00 4.40712 -124.994 -4.40712 4.40712 2.45 0.000186834 0.000150435 0.119212 0.116758 46 3334 48 6.99608e+06 235451 828058. 2865.25 13.74 0.740443 0.728312 28066 200906 -1 2171 18 1438 2389 179966 44853 3.56847 3.56847 -122.078 -3.56847 0 0 1.01997e+06 3529.29 1.01 0.12 0.42 -1 -1 1.01 0.0130676 0.0118169 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 25.20 vpr 64.55 MiB -1 -1 0.59 21432 1 0.21 -1 -1 33872 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 26.0 MiB 4.93 1017 13403 4723 5972 2708 64.6 MiB 0.21 0.03 4.21676 -145.665 -4.21676 4.21676 2.57 0.000180176 0.000143859 0.0766221 0.0734857 44 3879 49 6.99608e+06 279598 787024. 2723.27 9.73 0.135994 0.123403 27778 195446 -1 2516 22 2329 3306 268780 57575 4.1148 4.1148 -151.24 -4.1148 0 0 997811. 3452.63 1.15 0.20 0.39 -1 -1 1.15 0.0156103 0.0139288 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 21.86 vpr 64.17 MiB -1 -1 0.42 21128 1 0.10 -1 -1 33716 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 25.5 MiB 4.38 893 5654 1315 4090 249 64.2 MiB 0.10 0.00 3.62727 -120.532 -3.62727 3.62727 2.35 0.000155426 0.000122743 0.0712058 0.0699558 38 2251 33 6.99608e+06 161872 678818. 2348.85 6.52 0.110811 0.102848 26626 170182 -1 1922 22 1329 1899 171751 33882 3.22627 3.22627 -118.928 -3.22627 0 0 902133. 3121.57 1.06 0.14 0.32 -1 -1 1.06 0.0105304 0.00916517 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 26.27 vpr 64.50 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33920 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 25.9 MiB 5.26 982 11604 4819 6273 512 64.5 MiB 0.06 0.00 3.54169 -123.265 -3.54169 3.54169 2.64 0.000175819 0.000141397 0.0148431 0.0120939 44 3088 44 6.99608e+06 250167 787024. 2723.27 8.84 0.191617 0.179458 27778 195446 -1 2124 19 1679 2348 168768 39278 3.55936 3.55936 -131.747 -3.55936 0 0 997811. 3452.63 1.49 0.31 0.35 -1 -1 1.49 0.0130432 0.0116966 99 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 28.35 vpr 64.76 MiB -1 -1 0.51 21736 1 0.06 -1 -1 33536 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 26.1 MiB 5.15 1028 12636 4943 6140 1553 64.8 MiB 0.27 0.00 5.24621 -164.101 -5.24621 5.24621 2.60 0.000178978 0.000142942 0.0159988 0.0131292 48 3124 31 6.99608e+06 250167 865456. 2994.66 10.43 0.0659359 0.0552879 28354 207349 -1 2493 24 2360 3318 282867 62928 5.15959 5.15959 -170.295 -5.15959 0 0 1.05005e+06 3633.38 1.67 0.21 0.66 -1 -1 1.67 0.0153962 0.0137133 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 31.23 vpr 64.77 MiB -1 -1 0.35 21584 1 0.19 -1 -1 33916 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66328 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 26.1 MiB 10.88 968 11981 4240 5467 2274 64.8 MiB 0.36 0.00 5.19038 -164.138 -5.19038 5.19038 2.85 8.0018e-05 6.3132e-05 0.0160126 0.013105 40 3265 28 6.99608e+06 264882 706193. 2443.58 9.16 0.28158 0.270337 26914 176310 -1 2893 21 2251 3190 337590 71137 5.42135 5.42135 -181.76 -5.42135 0 0 926341. 3205.33 1.11 0.17 0.45 -1 -1 1.11 0.013823 0.0121943 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 27.33 vpr 64.45 MiB -1 -1 0.56 21584 1 0.21 -1 -1 33540 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 25.9 MiB 7.01 862 12585 5256 6762 567 64.4 MiB 0.22 0.00 3.89582 -125.985 -3.89582 3.89582 2.77 0.000182989 0.00014656 0.19713 0.19565 48 2799 44 6.99608e+06 235451 865456. 2994.66 8.82 0.508719 0.403863 28354 207349 -1 2169 22 1701 2264 194560 43366 3.42786 3.42786 -122.223 -3.42786 0 0 1.05005e+06 3633.38 1.18 0.16 0.40 -1 -1 1.18 0.0138875 0.0123358 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 57.34 vpr 64.19 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 25.5 MiB 2.93 803 9872 4112 5444 316 64.2 MiB 0.11 0.00 3.99218 -113.879 -3.99218 3.99218 2.60 0.000142435 0.000110946 0.0106756 0.00862472 40 2658 35 6.99608e+06 206020 706193. 2443.58 44.08 0.405386 0.387981 26914 176310 -1 2071 26 1764 2473 302639 100766 3.76682 3.76682 -121.52 -3.76682 0 0 926341. 3205.33 1.14 0.17 0.45 -1 -1 1.14 0.110847 0.10724 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 27.37 vpr 64.77 MiB -1 -1 0.50 21888 1 0.15 -1 -1 33636 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 26.5 MiB 4.95 1405 9943 2847 6446 650 64.8 MiB 0.14 0.00 4.92896 -168.996 -4.92896 4.92896 2.38 0.000203518 0.000165072 0.0977434 0.0954113 40 3872 39 6.99608e+06 309029 706193. 2443.58 11.96 0.346513 0.334106 26914 176310 -1 3344 23 2997 4336 446634 100719 4.65734 4.65734 -173.663 -4.65734 0 0 926341. 3205.33 1.01 0.21 0.38 -1 -1 1.01 0.0156173 0.0138065 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 28.54 vpr 64.07 MiB -1 -1 0.62 21280 1 0.06 -1 -1 33696 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 25.5 MiB 9.96 544 11234 4006 5215 2013 64.1 MiB 0.04 0.00 2.9921 -96.7202 -2.9921 2.9921 2.19 0.000125897 9.823e-05 0.0119502 0.00966785 40 1883 30 6.99608e+06 161872 706193. 2443.58 9.57 0.162997 0.154644 26914 176310 -1 1440 20 1280 1611 137520 35615 3.03497 3.03497 -106.757 -3.03497 0 0 926341. 3205.33 1.01 0.15 0.30 -1 -1 1.01 0.0104517 0.00956822 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 18.98 vpr 64.38 MiB -1 -1 0.46 21432 1 0.14 -1 -1 33748 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 25.8 MiB 1.95 912 12694 5540 6748 406 64.4 MiB 0.18 0.00 4.60267 -146.673 -4.60267 4.60267 2.72 0.000168282 0.000135802 0.0103137 0.00841589 48 2470 23 6.99608e+06 220735 865456. 2994.66 6.45 0.13798 0.128773 28354 207349 -1 2082 23 1770 2646 253731 52127 4.13621 4.13621 -137.464 -4.13621 0 0 1.05005e+06 3633.38 1.34 0.19 0.47 -1 -1 1.34 0.145241 0.1438 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 27.04 vpr 64.47 MiB -1 -1 0.31 21280 1 0.19 -1 -1 33536 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 4.95 945 13430 5689 7174 567 64.5 MiB 0.30 0.00 3.75245 -124.97 -3.75245 3.75245 2.76 0.00017646 0.000131258 0.015739 0.0126729 46 2944 27 6.99608e+06 220735 828058. 2865.25 10.88 0.160993 0.149706 28066 200906 -1 2029 19 1444 2116 166624 39451 3.40412 3.40412 -125.845 -3.40412 0 0 1.01997e+06 3529.29 1.14 0.16 0.48 -1 -1 1.14 0.0115485 0.0101567 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 20.45 vpr 64.16 MiB -1 -1 0.45 20976 1 0.17 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.5 MiB 2.91 690 11776 4321 5710 1745 64.2 MiB 0.15 0.00 4.31309 -119.63 -4.31309 4.31309 2.37 0.000147659 0.000116013 0.0129942 0.0105711 44 2227 26 6.99608e+06 235451 787024. 2723.27 6.75 0.0888485 0.0796297 27778 195446 -1 1617 19 1050 1861 132027 30100 3.77982 3.77982 -121.04 -3.77982 0 0 997811. 3452.63 1.05 0.10 0.57 -1 -1 1.05 0.0104164 0.00930439 68 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 21.26 vpr 64.61 MiB -1 -1 0.42 21432 1 0.14 -1 -1 33464 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 25.9 MiB 4.13 860 12585 4651 6361 1573 64.6 MiB 0.25 0.12 4.42805 -134.738 -4.42805 4.42805 2.63 0.000165529 0.000133429 0.0163858 0.0133661 42 2764 29 6.99608e+06 220735 744469. 2576.02 5.20 0.059445 0.0492923 27202 183097 -1 2059 19 1386 1823 151201 33345 3.83976 3.83976 -135.065 -3.83976 0 0 949917. 3286.91 1.48 0.34 0.48 -1 -1 1.48 0.0132619 0.0118109 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 63.86 vpr 64.25 MiB -1 -1 0.67 21128 1 0.29 -1 -1 33680 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 25.6 MiB 4.98 955 12923 4690 6560 1673 64.3 MiB 0.14 0.00 3.70839 -125.63 -3.70839 3.70839 2.73 0.000199053 0.000160812 0.0499555 0.0468568 40 3001 35 6.99608e+06 220735 706193. 2443.58 46.74 0.397475 0.314069 26914 176310 -1 2594 24 1980 3063 380968 104868 3.88806 3.88806 -139.973 -3.88806 0 0 926341. 3205.33 1.27 0.27 0.32 -1 -1 1.27 0.00919012 0.00804052 92 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 27.78 vpr 64.74 MiB -1 -1 0.62 21280 1 0.25 -1 -1 33400 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 26.1 MiB 8.27 978 13152 5506 7269 377 64.7 MiB 0.15 0.00 3.78378 -128.23 -3.78378 3.78378 2.43 0.000171935 0.000134874 0.0162603 0.0133459 46 2941 30 6.99608e+06 235451 828058. 2865.25 8.20 0.0690002 0.0578692 28066 200906 -1 2221 23 1883 2487 191121 41445 3.23321 3.23321 -122.651 -3.23321 0 0 1.01997e+06 3529.29 1.18 0.08 0.46 -1 -1 1.18 0.0149729 0.0132922 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 20.65 vpr 64.30 MiB -1 -1 0.48 21280 1 0.02 -1 -1 33840 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 25.6 MiB 3.12 740 10204 3637 4872 1695 64.3 MiB 0.13 0.00 4.49903 -121.926 -4.49903 4.49903 2.71 0.000153053 0.000121847 0.0124619 0.0103218 44 2663 29 6.99608e+06 206020 787024. 2723.27 6.03 0.0576417 0.0478312 27778 195446 -1 1849 24 1346 2153 157567 36047 4.02517 4.02517 -124.382 -4.02517 0 0 997811. 3452.63 1.43 0.12 0.40 -1 -1 1.43 0.0130684 0.0115002 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 24.50 vpr 64.42 MiB -1 -1 0.21 21280 1 0.03 -1 -1 33980 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 25.9 MiB 6.92 787 11161 3588 5346 2227 64.4 MiB 0.08 0.00 4.08638 -124.975 -4.08638 4.08638 2.76 0.000154583 0.00012416 0.0128349 0.0105005 40 2643 24 6.99608e+06 191304 706193. 2443.58 7.18 0.0574661 0.0480763 26914 176310 -1 2114 20 1643 2275 205823 44440 4.07536 4.07536 -135.578 -4.07536 0 0 926341. 3205.33 0.96 0.12 0.52 -1 -1 0.96 0.103263 0.10235 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 23.55 vpr 64.66 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33824 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 2.77 1019 12923 4941 6153 1829 64.7 MiB 0.39 0.00 4.37385 -138.003 -4.37385 4.37385 2.37 0.000171719 0.000137704 0.147258 0.144001 44 3606 34 6.99608e+06 235451 787024. 2723.27 9.85 0.383742 0.192068 27778 195446 -1 2373 22 1854 2847 215637 46651 4.41426 4.41426 -137.655 -4.41426 0 0 997811. 3452.63 1.10 0.27 0.41 -1 -1 1.10 0.117501 0.115947 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 26.06 vpr 64.52 MiB -1 -1 0.42 21584 1 0.23 -1 -1 33496 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 25.9 MiB 3.22 1065 12292 5199 6801 292 64.5 MiB 0.10 0.00 3.97712 -134.378 -3.97712 3.97712 2.73 0.000179662 0.000143444 0.01694 0.0141503 44 3699 27 6.99608e+06 235451 787024. 2723.27 11.14 0.490684 0.479747 27778 195446 -1 2693 24 2108 3139 267821 61670 3.90526 3.90526 -143.019 -3.90526 0 0 997811. 3452.63 1.44 0.17 0.48 -1 -1 1.44 0.0124409 0.0106371 104 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 22.46 vpr 64.02 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 25.3 MiB 1.92 609 9994 4141 5511 342 64.0 MiB 0.07 0.00 3.25208 -98.689 -3.25208 3.25208 2.93 0.000132569 0.000104703 0.0104799 0.00830862 38 2057 47 6.99608e+06 147157 678818. 2348.85 9.55 0.0513689 0.0421388 26626 170182 -1 1536 18 1041 1406 115965 28168 2.91072 2.91072 -99.3222 -2.91072 0 0 902133. 3121.57 1.14 0.03 0.40 -1 -1 1.14 0.0627542 0.061765 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 22.08 vpr 64.59 MiB -1 -1 0.56 21584 1 0.14 -1 -1 33596 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.1 MiB 2.86 837 8867 3217 4116 1534 64.6 MiB 0.14 0.00 4.06528 -147.024 -4.06528 4.06528 3.00 0.000153524 0.000121214 0.0108326 0.00888962 46 2585 24 6.99608e+06 220735 828058. 2865.25 8.58 0.261676 0.253136 28066 200906 -1 1998 20 1957 2588 199985 44033 3.83425 3.83425 -146.664 -3.83425 0 0 1.01997e+06 3529.29 0.93 0.21 0.64 -1 -1 0.93 0.187717 0.00802113 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 71.75 vpr 64.76 MiB -1 -1 0.46 21432 1 0.13 -1 -1 33684 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.2 MiB 3.37 923 11776 4896 6295 585 64.8 MiB 0.10 0.00 4.78758 -149.256 -4.78758 4.78758 2.55 0.000181438 0.000147473 0.0159067 0.0131205 48 3448 39 6.99608e+06 235451 865456. 2994.66 57.19 0.390088 0.368563 28354 207349 -1 2558 33 2727 4198 599463 223728 4.76546 4.76546 -161.743 -4.76546 0 0 1.05005e+06 3633.38 1.21 0.60 0.62 -1 -1 1.21 0.16685 0.164905 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 21.41 vpr 64.30 MiB -1 -1 0.53 21432 1 0.04 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65844 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 25.6 MiB 2.08 852 12247 5127 6715 405 64.3 MiB 0.20 0.00 4.29215 -139.385 -4.29215 4.29215 2.85 7.6607e-05 5.9973e-05 0.16916 0.166928 44 2691 40 6.99608e+06 220735 787024. 2723.27 8.27 0.246297 0.235022 27778 195446 -1 1888 18 1452 1986 166756 35737 3.23326 3.23326 -128.308 -3.23326 0 0 997811. 3452.63 0.84 0.15 0.46 -1 -1 0.84 0.122192 0.0109331 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 24.60 vpr 64.06 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33612 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 25.5 MiB 3.85 651 12008 4967 6460 581 64.1 MiB 0.08 0.00 3.65345 -113.329 -3.65345 3.65345 2.36 0.000179894 0.000149546 0.0430158 0.0407539 46 2085 31 6.99608e+06 294314 828058. 2865.25 8.98 0.0863394 0.0770483 28066 200906 -1 1479 20 1170 1804 118310 28898 3.34801 3.34801 -114.703 -3.34801 0 0 1.01997e+06 3529.29 1.39 0.13 0.42 -1 -1 1.39 0.0102901 0.00912519 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 33.22 vpr 64.75 MiB -1 -1 0.43 21888 1 0.22 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66304 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 26.1 MiB 5.86 1423 15212 5887 7111 2214 64.8 MiB 0.18 0.00 6.01298 -186.863 -6.01298 6.01298 2.64 0.000198616 0.000160838 0.0152163 0.0124892 40 4064 33 6.99608e+06 264882 706193. 2443.58 15.96 0.396401 0.384284 26914 176310 -1 3466 23 3071 4667 575895 137801 5.72209 5.72209 -195.82 -5.72209 0 0 926341. 3205.33 1.24 0.59 0.40 -1 -1 1.24 0.227472 0.225619 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 21.71 vpr 64.48 MiB -1 -1 0.56 21584 1 0.13 -1 -1 33772 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 905 9374 3182 4148 2044 64.5 MiB 0.35 0.00 4.80204 -144.828 -4.80204 4.80204 2.46 0.000189494 0.000141864 0.0125408 0.0103455 40 2848 29 6.99608e+06 206020 706193. 2443.58 7.83 0.259256 0.250044 26914 176310 -1 2310 24 1886 2581 254946 50387 4.43325 4.43325 -151.45 -4.43325 0 0 926341. 3205.33 1.34 0.12 0.35 -1 -1 1.34 0.0567713 0.0552506 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 18.76 vpr 63.87 MiB -1 -1 0.59 21128 1 0.05 -1 -1 33752 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 1.20 535 10509 4368 5789 352 63.9 MiB 0.19 0.00 2.922 -91.5293 -2.922 2.922 2.27 0.000145018 0.000115067 0.00978173 0.00782424 44 1776 31 6.99608e+06 191304 787024. 2723.27 6.29 0.24808 0.239784 27778 195446 -1 1254 23 998 1562 123725 29408 3.16227 3.16227 -97.6512 -3.16227 0 0 997811. 3452.63 1.43 0.02 0.62 -1 -1 1.43 0.0066414 0.00581891 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 23.17 vpr 64.45 MiB -1 -1 0.45 21432 1 0.40 -1 -1 33800 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 25.8 MiB 4.02 947 15044 6497 7967 580 64.4 MiB 0.50 0.00 4.78912 -134.232 -4.78912 4.78912 2.33 0.000181126 0.000146901 0.0962427 0.093064 46 2762 25 6.99608e+06 235451 828058. 2865.25 8.50 0.707065 0.655959 28066 200906 -1 2115 21 1570 2715 198354 43220 4.4258 4.4258 -134.383 -4.4258 0 0 1.01997e+06 3529.29 1.24 0.21 0.32 -1 -1 1.24 0.374509 0.373134 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 18.82 vpr 64.01 MiB -1 -1 0.36 21128 1 0.27 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.3 MiB 2.71 510 10204 2772 5522 1910 64.0 MiB 0.16 0.00 2.966 -97.4119 -2.966 2.966 2.46 0.000130392 0.000101996 0.00938946 0.00758579 38 1706 46 6.99608e+06 206020 678818. 2348.85 5.64 0.201013 0.0775166 26626 170182 -1 1321 20 1013 1499 97313 22780 3.20727 3.20727 -108.328 -3.20727 0 0 902133. 3121.57 1.30 0.03 0.32 -1 -1 1.30 0.00981572 0.00853123 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 23.65 vpr 64.05 MiB -1 -1 0.62 21128 1 0.08 -1 -1 33896 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 25.5 MiB 2.26 687 11293 4742 6109 442 64.1 MiB 0.19 0.00 3.75078 -115.874 -3.75078 3.75078 2.68 6.1499e-05 4.7279e-05 0.157643 0.155498 38 1989 24 6.99608e+06 191304 678818. 2348.85 10.53 0.235995 0.227258 26626 170182 -1 1558 24 1279 1709 139697 30155 3.35642 3.35642 -115.674 -3.35642 0 0 902133. 3121.57 1.24 0.04 0.34 -1 -1 1.24 0.0118463 0.0104752 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.30 vpr 63.97 MiB -1 -1 0.32 21584 1 0.02 -1 -1 33832 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 25.2 MiB 5.34 994 7008 2797 3909 302 64.0 MiB 0.25 0.00 4.18292 -131.078 -4.18292 4.18292 2.52 0.000162497 0.00012991 0.150902 0.149406 40 3441 43 6.99608e+06 264882 706193. 2443.58 16.01 0.669417 0.659298 26914 176310 -1 2874 22 2123 3092 384118 87360 3.94156 3.94156 -139.592 -3.94156 0 0 926341. 3205.33 1.09 0.26 0.19 -1 -1 1.09 0.0144362 0.0128676 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 42.84 vpr 64.05 MiB -1 -1 0.25 21432 1 0.12 -1 -1 33840 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 25.3 MiB 4.56 931 7008 2217 3531 1260 64.1 MiB 0.10 0.00 4.25698 -140.399 -4.25698 4.25698 2.31 0.000177969 0.000142754 0.00764803 0.00628501 40 2908 35 6.99608e+06 220735 706193. 2443.58 28.75 0.368772 0.344694 26914 176310 -1 2417 69 3723 5380 1133922 475606 5.07131 5.07131 -162.382 -5.07131 0 0 926341. 3205.33 1.06 0.77 0.27 -1 -1 1.06 0.131801 0.12812 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 27.95 vpr 64.62 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33848 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 8.14 1126 12585 4376 6061 2148 64.6 MiB 0.30 0.00 4.54997 -147.039 -4.54997 4.54997 2.65 0.000170124 0.000138057 0.0986792 0.0958479 40 2898 34 6.99608e+06 220735 706193. 2443.58 8.79 0.151868 0.141548 26914 176310 -1 2697 23 1971 2885 312909 60301 4.66721 4.66721 -157.112 -4.66721 0 0 926341. 3205.33 1.04 0.19 0.49 -1 -1 1.04 0.0143271 0.0126198 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 27.25 vpr 64.16 MiB -1 -1 0.21 21280 1 0.06 -1 -1 33844 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 25.5 MiB 7.15 661 11767 4888 6509 370 64.2 MiB 0.12 0.00 3.96872 -124.487 -3.96872 3.96872 2.55 0.000167643 0.000132871 0.068274 0.0658955 40 2367 25 6.99608e+06 161872 706193. 2443.58 9.78 0.107201 0.098682 26914 176310 -1 1809 24 1313 1689 188497 53743 3.87076 3.87076 -132.815 -3.87076 0 0 926341. 3205.33 1.26 0.10 0.31 -1 -1 1.26 0.0115145 0.0101467 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 18.84 vpr 64.47 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33900 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 25.8 MiB 3.18 794 12791 5380 7022 389 64.5 MiB 0.14 0.00 3.72927 -124.193 -3.72927 3.72927 2.30 0.000161194 0.000127061 0.013976 0.0112777 46 2333 30 6.99608e+06 206020 828058. 2865.25 5.41 0.52602 0.515982 28066 200906 -1 1790 22 1454 2030 156940 33870 3.36281 3.36281 -121.934 -3.36281 0 0 1.01997e+06 3529.29 1.10 0.11 0.38 -1 -1 1.10 0.0836658 0.0822534 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 22.27 vpr 64.54 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33576 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 25.8 MiB 4.35 861 13731 5139 6518 2074 64.5 MiB 0.19 0.00 3.45074 -112.678 -3.45074 3.45074 2.30 0.000156749 0.000123991 0.0908065 0.0880744 40 2887 25 6.99608e+06 279598 706193. 2443.58 8.27 0.132724 0.123464 26914 176310 -1 2144 22 1847 2619 248813 55028 3.18851 3.18851 -115.459 -3.18851 0 0 926341. 3205.33 0.99 0.39 0.34 -1 -1 0.99 0.0126617 0.0112127 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 37.34 vpr 64.00 MiB -1 -1 0.44 21128 1 0.16 -1 -1 33720 -1 -1 17 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 25.4 MiB 1.39 723 11976 5024 6337 615 64.0 MiB 0.17 0.00 3.68935 -104.223 -3.68935 3.68935 3.02 0.000138445 0.000109218 0.134629 0.13222 38 2170 32 6.99608e+06 250167 678818. 2348.85 25.35 0.328546 0.312845 26626 170182 -1 1687 23 1445 2242 178128 37301 3.83422 3.83422 -111.835 -3.83422 0 0 902133. 3121.57 0.97 0.16 0.24 -1 -1 0.97 0.010884 0.00961885 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 26.96 vpr 64.47 MiB -1 -1 0.55 21128 1 0.12 -1 -1 33528 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 25.9 MiB 5.42 818 11324 3148 6454 1722 64.5 MiB 0.17 0.00 4.41761 -136.631 -4.41761 4.41761 2.18 0.000157971 0.000126032 0.0130531 0.010633 46 2411 48 6.99608e+06 220735 828058. 2865.25 10.90 0.0628872 0.0525514 28066 200906 -1 1681 20 1634 2153 148658 36551 3.73525 3.73525 -130.072 -3.73525 0 0 1.01997e+06 3529.29 1.14 0.14 0.29 -1 -1 1.14 0.0107802 0.00956925 87 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 20.78 vpr 64.57 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33568 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 25.9 MiB 2.69 1010 13192 5594 7383 215 64.6 MiB 0.19 0.00 3.51674 -126.355 -3.51674 3.51674 2.31 0.000171431 0.000136538 0.0480006 0.0450497 40 2849 29 6.99608e+06 206020 706193. 2443.58 8.39 0.733582 0.690415 26914 176310 -1 2595 20 1836 2525 265148 53412 3.14421 3.14421 -130.08 -3.14421 0 0 926341. 3205.33 1.03 0.14 0.23 -1 -1 1.03 0.235713 0.234658 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 20.27 vpr 64.06 MiB -1 -1 0.36 21280 1 0.09 -1 -1 33788 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.6 MiB 1.12 737 13911 5155 6642 2114 64.1 MiB 0.18 0.00 4.50448 -121.077 -4.50448 4.50448 2.67 0.00015456 0.000123481 0.00944061 0.00762836 46 2250 32 6.99608e+06 353176 828058. 2865.25 8.29 0.199999 0.190714 28066 200906 -1 1674 22 1240 2123 163406 36714 3.80592 3.80592 -119.755 -3.80592 0 0 1.01997e+06 3529.29 1.32 0.35 0.35 -1 -1 1.32 0.10073 0.0993712 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 25.36 vpr 64.45 MiB -1 -1 0.50 21584 1 0.03 -1 -1 33952 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 25.8 MiB 6.90 870 10204 4231 5688 285 64.4 MiB 0.18 0.00 4.41391 -146.987 -4.41391 4.41391 2.98 0.000156037 0.000123696 0.0131657 0.0107111 44 3323 36 6.99608e+06 206020 787024. 2723.27 7.42 0.113824 0.102974 27778 195446 -1 2310 23 1929 2857 210235 46439 4.19065 4.19065 -150.738 -4.19065 0 0 997811. 3452.63 1.13 0.18 0.21 -1 -1 1.13 0.0213556 0.0198425 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 25.05 vpr 64.78 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66332 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 26.1 MiB 2.58 1114 14606 5637 6534 2435 64.8 MiB 0.26 0.00 5.07184 -165.984 -5.07184 5.07184 2.61 0.000198871 0.000161516 0.0175467 0.0143501 44 3532 33 6.99608e+06 250167 787024. 2723.27 11.33 0.129499 0.0630345 27778 195446 -1 2490 23 2284 3287 279990 57438 4.86974 4.86974 -167.378 -4.86974 0 0 997811. 3452.63 1.18 0.03 0.42 -1 -1 1.18 0.0097321 0.00865276 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 22.47 vpr 64.83 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33772 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66388 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.2 MiB 2.63 1042 9181 3711 5204 266 64.8 MiB 0.05 0.00 4.37608 -146.243 -4.37608 4.37608 2.38 0.000180605 0.00014511 0.0125134 0.0102249 46 3529 25 6.99608e+06 250167 828058. 2865.25 10.07 0.0688836 0.0581383 28066 200906 -1 2566 22 1996 2878 264750 54411 4.1678 4.1678 -154.244 -4.1678 0 0 1.01997e+06 3529.29 1.06 0.41 0.44 -1 -1 1.06 0.05239 0.0508108 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 19.12 vpr 64.02 MiB -1 -1 0.31 21280 1 0.17 -1 -1 33892 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 25.6 MiB 2.74 629 9713 2668 5130 1915 64.0 MiB 0.08 0.06 4.31695 -123.26 -4.31695 4.31695 2.91 5.9551e-05 4.6167e-05 0.00485077 0.00390429 46 1921 21 6.99608e+06 191304 828058. 2865.25 5.77 0.0389078 0.0323672 28066 200906 -1 1475 21 1049 1505 106998 24231 3.47286 3.47286 -117.41 -3.47286 0 0 1.01997e+06 3529.29 1.15 0.12 0.45 -1 -1 1.15 0.0105365 0.00932647 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 25.72 vpr 64.76 MiB -1 -1 0.39 21432 1 0.11 -1 -1 33648 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 26.1 MiB 3.78 883 12120 4402 5485 2233 64.8 MiB 0.19 0.00 5.2091 -158.73 -5.2091 5.2091 2.99 0.000207889 0.000155966 0.0806197 0.0133318 46 3049 27 6.99608e+06 264882 828058. 2865.25 11.63 0.265989 0.190151 28066 200906 -1 2139 35 2805 4012 293032 69352 5.0758 5.0758 -166.038 -5.0758 0 0 1.01997e+06 3529.29 1.46 0.10 0.31 -1 -1 1.46 0.020199 0.0176592 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 25.40 vpr 64.16 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33696 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 25.8 MiB 4.32 774 11698 4362 5117 2219 64.2 MiB 0.03 0.00 4.8046 -141.064 -4.8046 4.8046 2.69 7.1295e-05 5.4613e-05 0.00618305 0.00495622 48 2796 44 6.99608e+06 206020 865456. 2994.66 10.07 0.385289 0.375274 28354 207349 -1 2171 22 1819 2863 265130 59913 4.06535 4.06535 -139.843 -4.06535 0 0 1.05005e+06 3633.38 1.17 0.18 0.43 -1 -1 1.17 0.0131011 0.0116469 82 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 27.98 vpr 64.14 MiB -1 -1 0.45 21584 1 0.06 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 25.6 MiB 3.22 823 14528 6271 7657 600 64.1 MiB 0.05 0.00 5.20705 -145.134 -5.20705 5.20705 2.79 7.4495e-05 5.75e-05 0.00931898 0.00753086 40 2954 37 6.99608e+06 250167 706193. 2443.58 12.92 0.0680158 0.0575733 26914 176310 -1 2320 23 1641 2320 260789 71889 4.25341 4.25341 -143.505 -4.25341 0 0 926341. 3205.33 1.26 0.20 0.33 -1 -1 1.26 0.0935723 0.0920482 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 26.05 vpr 64.55 MiB -1 -1 0.76 21432 1 0.14 -1 -1 34024 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 998 14606 5036 6964 2606 64.6 MiB 0.09 0.00 4.3242 -135.128 -4.3242 4.3242 2.70 0.000163392 0.000131069 0.0167373 0.0136154 44 3548 25 6.99608e+06 279598 787024. 2723.27 8.64 0.394468 0.383259 27778 195446 -1 2461 23 2270 3116 251673 57476 4.5468 4.5468 -153.096 -4.5468 0 0 997811. 3452.63 1.27 0.11 0.39 -1 -1 1.27 0.0141649 0.0117678 107 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 29.86 vpr 64.70 MiB -1 -1 0.40 21280 1 0.04 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 1170 15831 5552 8021 2258 64.7 MiB 0.33 0.00 4.80442 -153.646 -4.80442 4.80442 2.65 0.000178972 0.000134991 0.018578 0.0149174 38 3254 29 6.99608e+06 250167 678818. 2348.85 13.53 0.0696827 0.05815 26626 170182 -1 2746 26 2184 3139 323817 82005 5.28061 5.28061 -177.869 -5.28061 0 0 902133. 3121.57 1.20 0.15 0.55 -1 -1 1.20 0.0548885 0.0534143 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 30.01 vpr 64.66 MiB -1 -1 0.37 21280 1 0.09 -1 -1 33872 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.9 MiB 8.98 1070 13906 5389 6734 1783 64.7 MiB 0.26 0.00 3.78245 -124.642 -3.78245 3.78245 2.80 8.4602e-05 6.5399e-05 0.00815995 0.00657445 38 3327 42 6.99608e+06 294314 678818. 2348.85 10.48 0.137742 0.126969 26626 170182 -1 2574 21 1946 2530 210023 43499 3.69272 3.69272 -132.251 -3.69272 0 0 902133. 3121.57 1.30 0.22 0.38 -1 -1 1.30 0.174559 0.173038 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 42.82 vpr 63.96 MiB -1 -1 0.34 21128 1 0.10 -1 -1 33768 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 25.3 MiB 5.11 491 9374 2820 4647 1907 64.0 MiB 0.23 0.00 3.56099 -102.364 -3.56099 3.56099 3.10 0.000145911 0.000116842 0.00973358 0.00785464 50 1345 33 6.99608e+06 147157 902133. 3121.57 25.65 0.451724 0.437003 28642 213929 -1 1054 20 885 1359 83206 22588 2.77822 2.77822 -98.0204 -2.77822 0 0 1.08113e+06 3740.92 1.26 0.10 0.34 -1 -1 1.26 0.0424821 0.0413921 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 22.05 vpr 64.72 MiB -1 -1 0.53 21584 1 0.19 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.1 MiB 2.18 1172 9531 3063 4611 1857 64.7 MiB 0.24 0.00 5.23038 -167.099 -5.23038 5.23038 2.48 7.6887e-05 6.0848e-05 0.209571 0.208077 46 3034 27 6.99608e+06 250167 828058. 2865.25 9.04 0.384827 0.375343 28066 200906 -1 2545 20 1810 2569 228338 44266 4.63514 4.63514 -160.327 -4.63514 0 0 1.01997e+06 3529.29 1.23 0.10 0.50 -1 -1 1.23 0.0137036 0.0123399 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.28 vpr 64.65 MiB -1 -1 0.47 21280 1 0.16 -1 -1 33840 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66204 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 26.1 MiB 2.57 1060 12506 5192 6537 777 64.7 MiB 0.24 0.00 4.95096 -169.07 -4.95096 4.95096 2.03 0.000172515 0.000136975 0.112528 0.109561 46 3312 25 6.99608e+06 250167 828058. 2865.25 8.99 0.318291 0.307215 28066 200906 -1 2524 22 2640 3696 290225 59376 4.58324 4.58324 -165.627 -4.58324 0 0 1.01997e+06 3529.29 1.32 0.17 0.58 -1 -1 1.32 0.013983 0.0124359 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 23.96 vpr 64.14 MiB -1 -1 0.37 21128 1 0.05 -1 -1 33692 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.01 663 12241 5259 6676 306 64.1 MiB 0.06 0.00 3.88707 -116.611 -3.88707 3.88707 3.08 0.000146057 0.000105949 0.0129342 0.0103792 38 2462 42 6.99608e+06 161872 678818. 2348.85 8.54 0.057466 0.0475796 26626 170182 -1 1638 20 1165 1453 107317 24853 3.38201 3.38201 -115.688 -3.38201 0 0 902133. 3121.57 1.00 0.17 0.68 -1 -1 1.00 0.143692 0.14253 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 28.32 vpr 63.98 MiB -1 -1 0.35 21280 1 0.12 -1 -1 33776 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.5 MiB 1.32 576 8556 2635 4197 1724 64.0 MiB 0.26 0.00 3.30733 -101.102 -3.30733 3.30733 2.67 6.1179e-05 4.6676e-05 0.00729084 0.00583146 38 1814 27 6.99608e+06 191304 678818. 2348.85 16.69 0.103741 0.0912761 26626 170182 -1 1313 22 1039 1555 113093 25818 3.01782 3.01782 -103.961 -3.01782 0 0 902133. 3121.57 1.06 0.05 0.45 -1 -1 1.06 0.0102529 0.00912286 56 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 28.59 vpr 64.41 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33816 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 25.9 MiB 2.92 869 12754 4459 5989 2306 64.4 MiB 0.16 0.00 4.59981 -149.693 -4.59981 4.59981 2.53 7.6451e-05 5.9181e-05 0.129655 0.127424 38 3590 42 6.99608e+06 220735 678818. 2348.85 15.40 0.217238 0.174312 26626 170182 -1 2440 23 2002 2676 239947 49921 4.50775 4.50775 -157.404 -4.50775 0 0 902133. 3121.57 0.86 0.25 0.40 -1 -1 0.86 0.226714 0.00924684 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 25.68 vpr 64.64 MiB -1 -1 0.62 21280 1 0.13 -1 -1 33732 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 25.9 MiB 6.20 940 12416 5188 6985 243 64.6 MiB 0.11 0.00 4.54977 -140.907 -4.54977 4.54977 2.35 0.000169631 0.000134919 0.0693031 0.0664362 40 2963 48 6.99608e+06 220735 706193. 2443.58 8.79 0.265381 0.254194 26914 176310 -1 2484 23 2055 2828 282419 58469 4.38751 4.38751 -152.055 -4.38751 0 0 926341. 3205.33 1.01 0.20 0.37 -1 -1 1.01 0.142984 0.0957221 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 24.43 vpr 64.52 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33528 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.8 MiB 1.71 872 12156 5062 6580 514 64.5 MiB 0.15 0.00 4.64591 -137.817 -4.64591 4.64591 2.24 8.3278e-05 6.5343e-05 0.0110396 0.00903414 40 3074 37 6.99608e+06 250167 706193. 2443.58 12.43 0.0704377 0.0600563 26914 176310 -1 2385 21 1926 3184 289065 65855 4.81341 4.81341 -158.276 -4.81341 0 0 926341. 3205.33 0.87 0.12 0.43 -1 -1 0.87 0.0137225 0.0122841 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 22.46 vpr 64.19 MiB -1 -1 0.70 21584 1 0.17 -1 -1 33808 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 25.6 MiB 3.96 830 11698 4911 6285 502 64.2 MiB 0.15 0.00 3.74623 -107.503 -3.74623 3.74623 2.66 7.1168e-05 5.4589e-05 0.00928814 0.00754558 44 2671 42 6.99608e+06 235451 787024. 2723.27 6.71 0.0500671 0.0413002 27778 195446 -1 1997 22 1577 2353 179360 39103 3.33842 3.33842 -113.24 -3.33842 0 0 997811. 3452.63 1.13 0.17 0.25 -1 -1 1.13 0.0127874 0.0113079 86 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 19.76 vpr 63.70 MiB -1 -1 0.36 21432 1 0.13 -1 -1 34024 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 25.2 MiB 4.31 509 7669 2724 3648 1297 63.7 MiB 0.14 0.00 3.48259 -102.05 -3.48259 3.48259 3.34 0.000122514 9.551e-05 0.00801491 0.00648311 42 1667 21 6.99608e+06 220735 744469. 2576.02 4.64 0.0385039 0.0317852 27202 183097 -1 1234 20 862 1319 84682 21044 3.45442 3.45442 -104.789 -3.45442 0 0 949917. 3286.91 1.07 0.03 0.33 -1 -1 1.07 0.00916121 0.00808584 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 24.24 vpr 64.75 MiB -1 -1 0.34 21584 1 0.04 -1 -1 33676 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 26.1 MiB 3.19 1230 15746 6854 8529 363 64.7 MiB 0.37 0.00 4.19054 -144.989 -4.19054 4.19054 2.75 0.000195151 0.000157367 0.0584025 0.0542852 46 3679 33 6.99608e+06 264882 828058. 2865.25 9.64 0.213592 0.200704 28066 200906 -1 2871 23 2406 3607 276534 57095 4.29751 4.29751 -149.943 -4.29751 0 0 1.01997e+06 3529.29 1.78 0.31 0.35 -1 -1 1.78 0.0141414 0.0126209 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 22.19 vpr 64.70 MiB -1 -1 0.42 21432 1 0.09 -1 -1 33808 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.1 MiB 3.46 970 7648 1766 5271 611 64.7 MiB 0.17 0.00 5.55089 -158.936 -5.55089 5.55089 2.36 0.000163996 0.000130622 0.13478 0.133045 44 3150 26 6.99608e+06 250167 787024. 2723.27 7.97 0.239227 0.229047 27778 195446 -1 2264 21 1964 2790 202537 46807 4.71884 4.71884 -157.007 -4.71884 0 0 997811. 3452.63 1.36 0.06 0.37 -1 -1 1.36 0.0124501 0.01105 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 22.21 vpr 64.54 MiB -1 -1 0.56 21432 1 0.06 -1 -1 33936 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66092 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 25.8 MiB 3.14 984 12362 5200 6901 261 64.5 MiB 0.30 0.00 4.34704 -155.732 -4.34704 4.34704 2.88 0.000156906 0.000124549 0.185411 0.182749 46 2942 45 6.99608e+06 206020 828058. 2865.25 7.81 0.239602 0.228281 28066 200906 -1 2135 20 1370 1712 135955 29714 3.88141 3.88141 -148.486 -3.88141 0 0 1.01997e+06 3529.29 1.26 0.04 0.48 -1 -1 1.26 0.0112848 0.0101196 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 21.24 vpr 64.31 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33740 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 25.8 MiB 2.25 810 13768 5955 7355 458 64.3 MiB 0.05 0.00 4.11318 -126.224 -4.11318 4.11318 3.03 0.000170112 0.00013506 0.0074196 0.00588256 46 2606 47 6.99608e+06 220735 828058. 2865.25 7.84 0.29288 0.282978 28066 200906 -1 1913 20 1336 1823 126148 28964 3.88781 3.88781 -126.282 -3.88781 0 0 1.01997e+06 3529.29 1.26 0.11 0.25 -1 -1 1.26 0.0120217 0.0107499 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 21.60 vpr 64.43 MiB -1 -1 0.27 21280 1 0.07 -1 -1 33612 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 25.8 MiB 4.18 911 12120 5043 6557 520 64.4 MiB 0.33 0.00 4.16973 -124.445 -4.16973 4.16973 2.44 0.000106355 8.1504e-05 0.110868 0.0130646 46 2581 47 6.99608e+06 250167 828058. 2865.25 7.00 0.282863 0.175516 28066 200906 -1 2091 23 1782 2496 172921 38960 4.08162 4.08162 -129.28 -4.08162 0 0 1.01997e+06 3529.29 1.47 0.25 0.41 -1 -1 1.47 0.0158417 0.0142778 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 55.62 vpr 64.50 MiB -1 -1 0.39 21432 1 0.09 -1 -1 33900 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 25.8 MiB 5.16 853 8191 3286 4551 354 64.5 MiB 0.14 0.00 3.59563 -113.561 -3.59563 3.59563 2.24 0.00015353 0.000121934 0.00930531 0.00764348 44 2628 47 6.99608e+06 250167 787024. 2723.27 39.65 0.727286 0.589306 27778 195446 -1 1911 20 1464 2206 169394 36495 3.45631 3.45631 -119.101 -3.45631 0 0 997811. 3452.63 1.17 0.02 0.63 -1 -1 1.17 0.0072413 0.00657779 88 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 28.07 vpr 64.33 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33560 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 934 9042 3688 5047 307 64.3 MiB 0.17 0.00 4.39601 -145.17 -4.39601 4.39601 2.21 0.000183568 0.000147796 0.0114251 0.00943339 46 3357 30 6.99608e+06 206020 828058. 2865.25 13.20 0.0636262 0.0537504 28066 200906 -1 2451 23 2098 3129 259161 55709 4.38161 4.38161 -154.433 -4.38161 0 0 1.01997e+06 3529.29 1.60 0.15 0.35 -1 -1 1.60 0.0105296 0.00960721 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 27.92 vpr 64.68 MiB -1 -1 0.39 21280 1 0.17 -1 -1 33672 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66232 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 26.1 MiB 8.70 965 11260 4654 6213 393 64.7 MiB 0.21 0.00 3.73597 -128.871 -3.73597 3.73597 2.50 0.000173481 0.000138965 0.0144193 0.0117566 44 3539 46 6.99608e+06 235451 787024. 2723.27 8.82 0.3673 0.153114 27778 195446 -1 2256 22 1940 2610 199384 44429 3.47481 3.47481 -129.962 -3.47481 0 0 997811. 3452.63 1.03 0.25 0.23 -1 -1 1.03 0.182367 0.180816 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 20.81 vpr 64.14 MiB -1 -1 0.20 21432 1 0.08 -1 -1 33804 -1 -1 14 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.53 553 10345 3346 4809 2190 64.1 MiB 0.02 0.00 4.28805 -120.257 -4.28805 4.28805 2.95 5.6187e-05 4.3429e-05 0.00465428 0.00373116 44 1988 29 6.99608e+06 206020 787024. 2723.27 6.18 0.130293 0.122866 27778 195446 -1 1330 22 1317 1750 124111 30032 3.34456 3.34456 -119.019 -3.34456 0 0 997811. 3452.63 1.24 0.12 0.36 -1 -1 1.24 0.0105669 0.00932764 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 48.97 vpr 64.13 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33928 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 25.6 MiB 7.49 793 12362 5268 6864 230 64.1 MiB 0.25 0.00 4.02018 -135.883 -4.02018 4.02018 2.31 0.00023656 0.000174734 0.0140549 0.0114148 38 2575 30 6.99608e+06 206020 678818. 2348.85 32.25 0.161798 0.14525 26626 170182 -1 2012 20 1609 2187 211896 46250 3.90455 3.90455 -140.013 -3.90455 0 0 902133. 3121.57 0.96 0.14 0.32 -1 -1 0.96 0.0113684 0.0101394 79 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 21.52 vpr 64.30 MiB -1 -1 0.40 21280 1 0.14 -1 -1 34100 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 25.7 MiB 2.50 826 12196 4442 6061 1693 64.3 MiB 0.17 0.00 4.09738 -124.458 -4.09738 4.09738 2.17 0.000185234 0.000151997 0.0142251 0.0116491 40 2795 44 6.99608e+06 220735 706193. 2443.58 9.17 0.0681879 0.0573542 26914 176310 -1 2030 28 1940 2883 358545 135793 3.89202 3.89202 -131.812 -3.89202 0 0 926341. 3205.33 1.14 0.35 0.51 -1 -1 1.14 0.00944034 0.00810684 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 19.47 vpr 63.97 MiB -1 -1 0.39 21432 1 0.01 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 25.5 MiB 3.28 623 8909 3777 4738 394 64.0 MiB 0.09 0.00 3.79267 -110.261 -3.79267 3.79267 2.34 0.000128352 0.000100824 0.0630843 0.0611368 42 2006 30 6.99608e+06 191304 744469. 2576.02 5.80 0.450794 0.44265 27202 183097 -1 1504 18 1083 1382 104481 25915 3.19941 3.19941 -107.059 -3.19941 0 0 949917. 3286.91 1.52 0.05 0.33 -1 -1 1.52 0.0245591 0.0235331 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 18.33 vpr 64.20 MiB -1 -1 0.44 21128 1 0.02 -1 -1 33836 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 25.6 MiB 2.68 747 11436 4976 6147 313 64.2 MiB 0.02 0.00 4.32795 -132.311 -4.32795 4.32795 2.24 6.3357e-05 4.8258e-05 0.00555277 0.00439008 46 1985 20 6.99608e+06 176588 828058. 2865.25 6.48 0.0484308 0.0414298 28066 200906 -1 1624 22 1252 1683 122330 27578 3.50386 3.50386 -129.467 -3.50386 0 0 1.01997e+06 3529.29 1.07 0.06 0.38 -1 -1 1.07 0.038826 0.0376409 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 20.37 vpr 64.34 MiB -1 -1 0.69 21280 1 0.16 -1 -1 33840 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 25.6 MiB 3.05 925 14356 5451 6870 2035 64.3 MiB 0.36 0.00 4.44525 -144.678 -4.44525 4.44525 2.58 8.9399e-05 7.1659e-05 0.167974 0.16532 44 2984 38 6.99608e+06 250167 787024. 2723.27 6.51 0.287971 0.277588 27778 195446 -1 2191 22 1989 2681 204537 45301 4.39755 4.39755 -148.654 -4.39755 0 0 997811. 3452.63 1.14 0.34 0.42 -1 -1 1.14 0.14785 0.146321 102 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 19.04 vpr 64.29 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33736 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 25.6 MiB 2.90 677 12236 4942 6162 1132 64.3 MiB 0.21 0.00 3.74867 -113.589 -3.74867 3.74867 2.65 0.000126127 9.809e-05 0.172657 0.00951226 40 1944 42 6.99608e+06 191304 706193. 2443.58 5.18 0.339072 0.143402 26914 176310 -1 1672 21 1245 1768 160342 33681 3.16146 3.16146 -110.118 -3.16146 0 0 926341. 3205.33 1.10 0.17 0.28 -1 -1 1.10 0.0104887 0.0093224 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 36.37 vpr 64.15 MiB -1 -1 0.55 21280 1 0.12 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 25.5 MiB 3.97 1000 14275 5369 6741 2165 64.1 MiB 0.07 0.00 3.51669 -120.5 -3.51669 3.51669 2.78 0.000172729 0.000140596 0.0172174 0.0138593 36 3385 48 6.99608e+06 220735 648988. 2245.63 22.36 0.0872736 0.0746695 26050 158493 -1 2516 20 1568 2139 228982 44386 3.39006 3.39006 -127.987 -3.39006 0 0 828058. 2865.25 0.96 0.17 0.38 -1 -1 0.96 0.133893 0.132315 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 30.35 vpr 64.74 MiB -1 -1 0.61 21584 1 0.33 -1 -1 33972 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 26.2 MiB 8.91 1155 14663 6188 7958 517 64.7 MiB 0.26 0.00 4.64393 -158.098 -4.64393 4.64393 2.78 0.000186448 0.000150575 0.0406488 0.0375185 48 3206 36 6.99608e+06 294314 865456. 2994.66 9.86 0.224892 0.133785 28354 207349 -1 2807 28 2923 4123 575768 188632 4.67759 4.67759 -170.147 -4.67759 0 0 1.05005e+06 3633.38 1.38 0.37 0.62 -1 -1 1.38 0.0764526 0.0157775 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 50.06 vpr 64.08 MiB -1 -1 0.36 21432 1 0.12 -1 -1 33732 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 25.5 MiB 6.16 775 10156 4187 5714 255 64.1 MiB 0.13 0.00 3.42554 -116.648 -3.42554 3.42554 2.55 6.3395e-05 4.9045e-05 0.00827363 0.00671773 40 2408 28 6.99608e+06 176588 706193. 2443.58 33.07 0.215568 0.150057 26914 176310 -1 2061 20 1626 2128 206695 44348 3.37781 3.37781 -121.709 -3.37781 0 0 926341. 3205.33 0.75 0.21 0.38 -1 -1 0.75 0.105409 0.0097192 80 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 18.93 vpr 64.22 MiB -1 -1 0.51 21280 1 0.04 -1 -1 33804 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 25.6 MiB 2.22 715 9871 2522 5750 1599 64.2 MiB 0.28 0.00 3.90682 -124.154 -3.90682 3.90682 2.73 0.000132002 0.000104569 0.0106422 0.00864724 48 1761 24 6.99608e+06 161872 865456. 2994.66 5.50 0.0727083 0.0638315 28354 207349 -1 1520 20 1181 1705 120049 30478 3.18826 3.18826 -114.649 -3.18826 0 0 1.05005e+06 3633.38 1.73 0.04 0.69 -1 -1 1.73 0.011206 0.00999042 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 24.14 vpr 64.40 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65944 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 25.9 MiB 5.12 806 10370 4256 5769 345 64.4 MiB 0.14 0.00 4.12063 -125.806 -4.12063 4.12063 2.31 7.5489e-05 5.8267e-05 0.00803951 0.00644611 40 2802 44 6.99608e+06 206020 706193. 2443.58 8.92 0.155293 0.0485573 26914 176310 -1 2341 21 1844 2572 222411 52159 4.04836 4.04836 -139.738 -4.04836 0 0 926341. 3205.33 1.05 0.08 0.57 -1 -1 1.05 0.040421 0.0391463 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 29.38 vpr 64.50 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33740 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 25.8 MiB 5.23 860 11233 4667 5950 616 64.5 MiB 0.16 0.00 3.78147 -112.526 -3.78147 3.78147 2.54 0.000162341 0.000129164 0.0141805 0.0113294 38 2683 32 6.99608e+06 264882 678818. 2348.85 14.67 0.0848577 0.0742908 26626 170182 -1 1990 20 1446 2086 188585 42244 3.21921 3.21921 -110.88 -3.21921 0 0 902133. 3121.57 1.02 0.02 0.39 -1 -1 1.02 0.00705835 0.00639889 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 75.33 vpr 64.80 MiB -1 -1 0.41 21584 1 0.05 -1 -1 33932 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66360 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 26.1 MiB 4.64 1139 12681 5262 6918 501 64.8 MiB 0.17 0.00 5.49769 -178.53 -5.49769 5.49769 2.50 0.0001959 0.00015823 0.01632 0.0134555 44 3771 32 6.99608e+06 250167 787024. 2723.27 60.28 0.287541 0.26721 27778 195446 -1 2606 21 2413 3608 274729 56780 4.7747 4.7747 -174.007 -4.7747 0 0 997811. 3452.63 1.10 0.17 0.47 -1 -1 1.10 0.0148152 0.0132712 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 19.70 vpr 63.92 MiB -1 -1 0.39 20520 1 0.25 -1 -1 33748 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 2.80 587 10476 4438 5741 297 63.9 MiB 0.15 0.00 3.45403 -92.0406 -3.45403 3.45403 2.76 0.000157384 0.000126855 0.0100948 0.00818672 38 2041 40 6.99608e+06 191304 678818. 2348.85 7.26 0.244683 0.235787 26626 170182 -1 1431 22 1146 1808 146741 32202 2.82547 2.82547 -98.1947 -2.82547 0 0 902133. 3121.57 1.15 0.02 0.37 -1 -1 1.15 0.0045327 0.00398858 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 73.15 vpr 64.94 MiB -1 -1 0.32 20976 1 0.02 -1 -1 33848 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66500 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.2 MiB 8.94 1043 15090 5384 7460 2246 64.9 MiB 0.25 0.00 4.74833 -158.465 -4.74833 4.74833 2.47 0.000174847 0.000138967 0.01819 0.0148622 50 3075 46 6.99608e+06 294314 902133. 3121.57 53.87 0.246558 0.224239 28642 213929 -1 2292 22 2270 2774 267368 59687 5.0614 5.0614 -169.611 -5.0614 0 0 1.08113e+06 3740.92 1.49 0.12 0.42 -1 -1 1.49 0.0153767 0.0137454 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 26.32 vpr 64.62 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33748 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.1 MiB 2.87 1243 11948 3932 6174 1842 64.6 MiB 0.15 0.00 4.39022 -163.291 -4.39022 4.39022 2.87 0.000193376 0.000158692 0.0774409 0.0748942 38 3401 24 6.99608e+06 235451 678818. 2348.85 12.56 0.144965 0.134071 26626 170182 -1 2877 22 2782 3539 348319 66606 4.48149 4.48149 -170.274 -4.48149 0 0 902133. 3121.57 0.99 0.18 0.30 -1 -1 0.99 0.0308491 0.029541 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 23.81 vpr 64.66 MiB -1 -1 0.36 21584 1 0.16 -1 -1 33676 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 25.9 MiB 4.69 943 11571 4822 6284 465 64.7 MiB 0.12 0.00 3.68917 -120.78 -3.68917 3.68917 2.29 0.000184103 0.000148264 0.0162178 0.0116573 44 3145 46 6.99608e+06 220735 787024. 2723.27 8.01 0.266417 0.252734 27778 195446 -1 2092 21 1590 2096 144585 34265 3.68832 3.68832 -128.704 -3.68832 0 0 997811. 3452.63 1.40 0.05 0.54 -1 -1 1.40 0.247799 0.246435 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 23.53 vpr 64.54 MiB -1 -1 0.42 21736 1 0.02 -1 -1 33852 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 25.9 MiB 3.33 984 11571 4450 5727 1394 64.5 MiB 0.27 0.00 5.93064 -168.994 -5.93064 5.93064 3.14 0.000191142 0.000154286 0.0132327 0.0108005 46 3271 27 6.99608e+06 220735 828058. 2865.25 8.81 0.0680896 0.057384 28066 200906 -1 2256 23 2165 3247 206923 47402 4.7732 4.7732 -160.204 -4.7732 0 0 1.01997e+06 3529.29 1.04 0.28 0.54 -1 -1 1.04 0.146667 0.144891 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 17.29 vpr 63.91 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33572 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.2 MiB 2.27 449 10769 3021 6028 1720 63.9 MiB 0.14 0.00 2.78575 -94.7661 -2.78575 2.78575 2.54 0.000111254 8.5933e-05 0.00935979 0.00732815 44 1210 45 6.99608e+06 176588 787024. 2723.27 4.92 0.204339 0.195767 27778 195446 -1 907 17 633 808 61006 14855 2.31212 2.31212 -85.0792 -2.31212 0 0 997811. 3452.63 1.13 0.02 0.37 -1 -1 1.13 0.00710424 0.00626875 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 30.56 vpr 64.03 MiB -1 -1 0.56 21432 1 0.02 -1 -1 33852 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 25.5 MiB 11.71 635 8556 3694 4561 301 64.0 MiB 0.02 0.00 3.79502 -117.432 -3.79502 3.79502 2.58 6.5609e-05 5.0115e-05 0.00458027 0.00365901 38 2087 25 6.99608e+06 206020 678818. 2348.85 7.95 0.118946 0.111375 26626 170182 -1 1532 21 1244 1862 213351 69419 3.30746 3.30746 -124.469 -3.30746 0 0 902133. 3121.57 1.18 0.06 0.44 -1 -1 1.18 0.0108647 0.00962303 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 23.40 vpr 64.33 MiB -1 -1 0.34 21280 1 0.14 -1 -1 33580 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 25.6 MiB 1.67 745 10756 3701 5259 1796 64.3 MiB 0.08 0.00 3.68644 -120.453 -3.68644 3.68644 2.67 0.000169394 0.000138435 0.0114146 0.0092875 46 2563 46 6.99608e+06 250167 828058. 2865.25 11.27 0.187972 0.177836 28066 200906 -1 1818 21 1379 2147 194317 44810 3.54672 3.54672 -123.118 -3.54672 0 0 1.01997e+06 3529.29 1.29 0.16 0.42 -1 -1 1.29 0.0114725 0.0101091 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 20.15 vpr 63.90 MiB -1 -1 0.28 21280 1 0.03 -1 -1 33832 -1 -1 16 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 25.2 MiB 3.50 529 9649 3987 4965 697 63.9 MiB 0.10 0.00 3.34779 -78.1264 -3.34779 3.34779 2.14 0.0001172 8.9673e-05 0.0087407 0.00694252 36 1785 31 6.99608e+06 235451 648988. 2245.63 7.49 0.287535 0.27977 26050 158493 -1 1223 22 949 1259 94166 22013 3.08217 3.08217 -83.8681 -3.08217 0 0 828058. 2865.25 0.81 0.09 0.37 -1 -1 0.81 0.0739506 0.0728424 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 36.23 vpr 64.74 MiB -1 -1 0.73 21280 1 0.23 -1 -1 33824 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.2 MiB 9.68 1054 8656 3245 4768 643 64.7 MiB 0.14 0.00 4.05906 -133.149 -4.05906 4.05906 2.24 0.000183218 0.000146769 0.0107266 0.00878672 40 3768 46 6.99608e+06 250167 706193. 2443.58 15.89 0.214846 0.203654 26914 176310 -1 2997 25 2299 3328 332536 68969 4.03662 4.03662 -145.587 -4.03662 0 0 926341. 3205.33 1.20 0.27 0.26 -1 -1 1.20 0.0156515 0.0138368 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 32.38 vpr 64.67 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33892 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 26.1 MiB 8.46 1127 9872 4010 5529 333 64.7 MiB 0.15 0.00 4.48803 -146.589 -4.48803 4.48803 3.02 0.000217775 0.000181679 0.0130191 0.0108329 40 3765 50 6.99608e+06 279598 706193. 2443.58 12.40 0.362758 0.350697 26914 176310 -1 2914 23 2334 3183 337323 76769 4.4325 4.4325 -165.554 -4.4325 0 0 926341. 3205.33 1.18 0.30 0.44 -1 -1 1.18 0.0796756 0.0106643 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 27.09 vpr 64.29 MiB -1 -1 0.66 21888 14 1.29 -1 -1 37020 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 25.6 MiB 5.60 1200 14123 4211 7443 2469 64.3 MiB 0.34 0.00 8.48111 -174.272 -8.48111 8.48111 2.29 0.0002577 0.000200005 0.0231112 0.0189047 38 3430 43 6.79088e+06 255968 678818. 2348.85 9.85 0.549998 0.53525 25966 169698 -1 2700 17 1287 3600 189705 42637 7.35086 7.35086 -163.994 -7.35086 0 0 902133. 3121.57 1.25 0.18 0.25 -1 -1 1.25 0.0278834 0.0263172 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 29.90 vpr 64.09 MiB -1 -1 0.78 21888 14 0.86 -1 -1 36548 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 25.4 MiB 8.24 1041 12506 3388 6981 2137 64.1 MiB 0.40 0.00 7.55088 -152.933 -7.55088 7.55088 2.77 0.000252827 0.000207156 0.163085 0.159623 36 3205 23 6.79088e+06 255968 648988. 2245.63 11.00 0.38998 0.377262 25390 158009 -1 2467 19 1290 3357 197410 46359 6.74539 6.74539 -147.967 -6.74539 0 0 828058. 2865.25 1.16 0.20 0.27 -1 -1 1.16 0.0176808 0.0161191 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 28.80 vpr 64.14 MiB -1 -1 0.37 21432 11 0.84 -1 -1 37192 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 11.23 1174 9623 2464 5833 1326 64.1 MiB 0.30 0.00 6.66938 -147.636 -6.66938 6.66938 2.59 0.000245064 0.000200758 0.121011 0.118329 40 2907 18 6.79088e+06 255968 706193. 2443.58 6.95 0.464845 0.45379 26254 175826 -1 2700 18 1168 3505 212013 47079 6.10754 6.10754 -145.397 -6.10754 0 0 926341. 3205.33 0.84 0.14 0.59 -1 -1 0.84 0.101021 0.0994821 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 52.71 vpr 64.16 MiB -1 -1 0.60 21280 12 1.07 -1 -1 37052 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 4.27 1140 13849 4119 7829 1901 64.2 MiB 0.38 0.00 7.24573 -145.062 -7.24573 7.24573 2.56 0.00010996 8.7726e-05 0.287474 0.284278 40 2712 25 6.79088e+06 323328 706193. 2443.58 36.90 0.43777 0.417334 26254 175826 -1 2622 18 1304 3757 216194 48068 6.49468 6.49468 -141.371 -6.49468 0 0 926341. 3205.33 1.53 0.12 0.28 -1 -1 1.53 0.0180021 0.0163358 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 28.73 vpr 64.48 MiB -1 -1 0.67 21736 13 1.24 -1 -1 36736 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 25.9 MiB 6.21 1308 9536 2519 6199 818 64.5 MiB 0.14 0.00 8.29941 -174.684 -8.29941 8.29941 2.58 0.000248343 0.000203207 0.0144201 0.0119745 38 3855 22 6.79088e+06 296384 678818. 2348.85 9.98 0.291704 0.279499 25966 169698 -1 2990 20 1412 3638 188193 43079 7.04627 7.04627 -163.166 -7.04627 0 0 902133. 3121.57 1.25 0.26 0.51 -1 -1 1.25 0.0179012 0.016226 152 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 48.69 vpr 64.36 MiB -1 -1 0.69 21888 13 1.03 -1 -1 36544 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 25.6 MiB 5.37 1207 10163 2849 5374 1940 64.4 MiB 0.12 0.00 7.60457 -158.151 -7.60457 7.60457 2.35 0.000463158 0.00031649 0.0122512 0.0100914 34 4275 44 6.79088e+06 255968 618332. 2139.56 32.10 0.450958 0.312508 25102 150614 -1 3371 22 1761 5443 391172 82915 6.58427 6.58427 -157.091 -6.58427 0 0 787024. 2723.27 1.10 0.16 0.35 -1 -1 1.10 0.0176595 0.0158979 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 18.45 vpr 63.61 MiB -1 -1 0.69 21128 12 0.90 -1 -1 36088 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 859 8680 2413 5503 764 63.6 MiB 0.04 0.00 6.99932 -125.75 -6.99932 6.99932 2.63 0.000176461 0.000141885 0.0116218 0.00963192 30 2390 31 6.79088e+06 282912 556674. 1926.21 2.90 0.0470823 0.0400823 24526 138013 -1 1954 15 1002 2230 109541 26910 5.65673 5.65673 -117.344 -5.65673 0 0 706193. 2443.58 1.00 0.07 0.25 -1 -1 1.00 0.0124538 0.0114124 106 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 33.44 vpr 63.84 MiB -1 -1 0.54 21280 12 0.71 -1 -1 36660 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 25.3 MiB 11.21 1041 12120 4682 6151 1287 63.8 MiB 0.28 0.00 6.42294 -136.515 -6.42294 6.42294 2.62 0.000176016 0.000141464 0.016542 0.0136174 38 2936 50 6.79088e+06 229024 678818. 2348.85 9.55 0.186959 0.174324 25966 169698 -1 2387 89 1297 3558 1346629 987091 5.90384 5.90384 -131.624 -5.90384 0 0 902133. 3121.57 1.03 1.60 0.46 -1 -1 1.03 0.0755414 0.069839 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 28.36 vpr 63.72 MiB -1 -1 0.79 21432 12 0.53 -1 -1 36284 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 25.3 MiB 11.19 1112 8543 2303 4599 1641 63.7 MiB 0.25 0.00 6.92467 -146.156 -6.92467 6.92467 2.61 0.000180693 0.000145517 0.186034 0.184172 38 2832 40 6.79088e+06 269440 678818. 2348.85 6.13 0.241066 0.231407 25966 169698 -1 2434 18 1148 2890 158628 36102 6.12648 6.12648 -142.526 -6.12648 0 0 902133. 3121.57 0.74 0.14 0.61 -1 -1 0.74 0.125593 0.124962 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 25.68 vpr 63.95 MiB -1 -1 0.58 21280 13 0.57 -1 -1 36432 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 25.3 MiB 8.63 1044 5825 1272 4307 246 64.0 MiB 0.16 0.00 7.71708 -165.102 -7.71708 7.71708 2.98 0.000199702 0.000160614 0.111186 0.109443 38 2762 24 6.79088e+06 202080 678818. 2348.85 5.29 0.272509 0.262761 25966 169698 -1 2322 17 1121 2684 145404 33670 6.70957 6.70957 -157.411 -6.70957 0 0 902133. 3121.57 0.99 0.14 0.48 -1 -1 0.99 0.114655 0.114049 106 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 30.43 vpr 63.74 MiB -1 -1 0.66 21128 12 0.57 -1 -1 36400 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 5.85 926 7008 1689 4680 639 63.7 MiB 0.34 0.00 7.21324 -147.642 -7.21324 7.21324 2.59 0.000175075 0.000140532 0.149015 0.147389 30 2578 44 6.79088e+06 229024 556674. 1926.21 13.13 0.290088 0.279388 24526 138013 -1 2027 17 881 2080 117822 27063 6.27979 6.27979 -141.995 -6.27979 0 0 706193. 2443.58 1.08 0.09 0.24 -1 -1 1.08 0.0124707 0.0113495 96 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 40.96 vpr 63.83 MiB -1 -1 0.75 21584 12 0.61 -1 -1 36512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 7.99 1082 9181 2345 5797 1039 63.8 MiB 0.16 0.00 6.01027 -147.531 -6.01027 6.01027 2.46 0.000216153 0.000179143 0.0765223 0.0743914 36 3449 49 6.79088e+06 229024 648988. 2245.63 21.77 0.321001 0.309567 25390 158009 -1 2497 26 1120 2952 302335 118937 5.35651 5.35651 -141.317 -5.35651 0 0 828058. 2865.25 1.04 0.20 0.29 -1 -1 1.04 0.0180115 0.0161886 101 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 33.88 vpr 64.03 MiB -1 -1 0.75 21736 13 0.92 -1 -1 36496 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 25.4 MiB 7.55 1306 7038 1688 4711 639 64.0 MiB 0.30 0.00 8.03011 -168.791 -8.03011 8.03011 2.04 0.000283555 0.000240447 0.0919729 0.0896139 36 3754 30 6.79088e+06 269440 648988. 2245.63 15.66 0.27022 0.257534 25390 158009 -1 2990 17 1300 3383 208053 46550 6.81035 6.81035 -158.161 -6.81035 0 0 828058. 2865.25 0.94 0.23 0.25 -1 -1 0.94 0.111689 0.110134 134 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 25.50 vpr 64.44 MiB -1 -1 0.85 21736 14 0.89 -1 -1 36376 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 25.7 MiB 7.26 1416 7079 1642 5037 400 64.4 MiB 0.09 0.00 8.75222 -185.44 -8.75222 8.75222 2.10 0.000249265 0.000205395 0.0136223 0.0115001 30 3987 30 6.79088e+06 296384 556674. 1926.21 7.80 0.067932 0.0589295 24526 138013 -1 3086 21 1537 3895 209296 47411 7.92696 7.92696 -180.675 -7.92696 0 0 706193. 2443.58 0.73 0.18 0.29 -1 -1 0.73 0.235672 0.233772 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 29.66 vpr 63.58 MiB -1 -1 0.62 21128 11 0.72 -1 -1 36200 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 9.49 1026 7024 1624 4287 1113 63.6 MiB 0.04 0.00 6.6829 -137.714 -6.6829 6.6829 2.87 0.000208881 0.000172227 0.0103001 0.00857439 36 2816 22 6.79088e+06 282912 648988. 2245.63 9.59 0.392383 0.383297 25390 158009 -1 2455 18 1157 2781 188507 41454 5.77854 5.77854 -135.281 -5.77854 0 0 828058. 2865.25 0.86 0.11 0.33 -1 -1 0.86 0.0141885 0.0129072 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 29.93 vpr 64.47 MiB -1 -1 0.55 21736 12 1.12 -1 -1 36380 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1310 12763 3534 7319 1910 64.5 MiB 0.19 0.00 7.16817 -158.635 -7.16817 7.16817 2.48 0.000248253 0.000203162 0.0202128 0.0168169 38 3452 26 6.79088e+06 323328 678818. 2348.85 9.39 0.0876208 0.0743489 25966 169698 -1 2821 18 1476 4588 235361 53321 6.16568 6.16568 -149.194 -6.16568 0 0 902133. 3121.57 1.15 0.18 0.31 -1 -1 1.15 0.108212 0.106601 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 36.85 vpr 64.06 MiB -1 -1 0.96 21888 14 1.00 -1 -1 36628 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 25.4 MiB 9.13 1313 8723 2298 6119 306 64.1 MiB 0.34 0.00 8.13104 -170.503 -8.13104 8.13104 2.54 0.000239879 0.000191343 0.303268 0.172469 38 3929 22 6.79088e+06 255968 678818. 2348.85 15.37 0.408614 0.26862 25966 169698 -1 2875 25 1389 4010 323964 110156 6.84955 6.84955 -159.968 -6.84955 0 0 902133. 3121.57 0.99 0.19 0.28 -1 -1 0.99 0.0183482 0.0166276 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 42.53 vpr 63.56 MiB -1 -1 0.73 21432 12 0.84 -1 -1 36316 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65088 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 25.1 MiB 7.43 1050 9374 2716 5861 797 63.6 MiB 0.17 0.00 7.14943 -160.299 -7.14943 7.14943 2.68 8.7601e-05 7.0653e-05 0.141649 0.14046 30 2886 39 6.79088e+06 202080 556674. 1926.21 22.01 0.342821 0.331319 24526 138013 -1 2328 16 951 2435 136571 30880 5.84017 5.84017 -150.015 -5.84017 0 0 706193. 2443.58 1.22 0.23 0.29 -1 -1 1.22 0.206577 0.20532 105 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 28.73 vpr 63.07 MiB -1 -1 0.68 21128 10 0.33 -1 -1 36204 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64588 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 24.5 MiB 8.94 831 7975 2137 5194 644 63.1 MiB 0.04 0.00 4.79706 -119.036 -4.79706 4.79706 2.90 0.000158365 0.000130408 0.00938029 0.00773156 36 2002 31 6.79088e+06 175136 648988. 2245.63 6.55 0.144434 0.0440491 25390 158009 -1 1694 15 636 1455 98495 21485 4.29242 4.29242 -114.111 -4.29242 0 0 828058. 2865.25 1.23 0.05 0.46 -1 -1 1.23 0.00903085 0.00822679 66 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 31.36 vpr 63.67 MiB -1 -1 0.85 21280 13 0.88 -1 -1 36648 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 25.1 MiB 9.33 1018 10756 3186 5324 2246 63.7 MiB 0.07 0.00 7.66004 -158.967 -7.66004 7.66004 2.95 0.000185359 0.000149053 0.0143458 0.0118192 36 2846 41 6.79088e+06 242496 648988. 2245.63 9.13 0.619111 0.565154 25390 158009 -1 2328 17 1212 2855 173472 39272 6.54512 6.54512 -149.488 -6.54512 0 0 828058. 2865.25 0.99 0.55 0.33 -1 -1 0.99 0.371943 0.370733 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 68.13 vpr 64.41 MiB -1 -1 1.10 21888 13 1.28 -1 -1 36724 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1313 10315 2856 6290 1169 64.4 MiB 0.34 0.00 7.47852 -163.761 -7.47852 7.47852 2.98 0.000233856 0.000191484 0.12339 0.120356 40 3451 36 6.79088e+06 282912 706193. 2443.58 46.86 0.893786 0.869584 26254 175826 -1 3138 22 1929 5656 340480 73070 6.70957 6.70957 -159.709 -6.70957 0 0 926341. 3205.33 0.92 0.39 0.28 -1 -1 0.92 0.0293518 0.0275192 143 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 42.24 vpr 64.37 MiB -1 -1 0.69 21888 13 1.12 -1 -1 36616 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 25.7 MiB 8.83 1396 13105 3760 7294 2051 64.4 MiB 0.17 0.00 7.56118 -168.622 -7.56118 7.56118 2.95 0.000254581 0.000211133 0.118047 0.114624 38 3903 33 6.79088e+06 282912 678818. 2348.85 20.34 0.528201 0.513872 25966 169698 -1 3027 20 1425 4303 247771 52952 6.71732 6.71732 -160.482 -6.71732 0 0 902133. 3121.57 0.89 0.11 0.36 -1 -1 0.89 0.0134657 0.0120026 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 36.35 vpr 63.27 MiB -1 -1 0.44 20976 9 0.41 -1 -1 36056 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 24.7 MiB 4.98 658 7116 2577 3138 1401 63.3 MiB 0.05 0.00 4.92929 -93.1038 -4.92929 4.92929 3.51 0.000131979 0.000103171 0.00747998 0.00613542 28 2023 39 6.79088e+06 242496 531479. 1839.03 19.47 0.0897151 0.048002 23950 126010 -1 1554 17 655 1548 102837 22988 4.44343 4.44343 -97.5098 -4.44343 0 0 648988. 2245.63 1.09 0.03 0.43 -1 -1 1.09 0.00853712 0.00772056 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 75.81 vpr 64.02 MiB -1 -1 0.76 21432 13 1.18 -1 -1 36656 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 7.05 1303 13911 3831 7698 2382 64.0 MiB 0.31 0.00 8.27554 -169.54 -8.27554 8.27554 3.62 0.000226723 0.000184755 0.237715 0.233848 40 3252 44 6.79088e+06 309856 706193. 2443.58 55.07 1.01425 0.833884 26254 175826 -1 3159 16 1502 3999 258807 56798 7.33623 7.33623 -163.847 -7.33623 0 0 926341. 3205.33 1.69 0.27 0.37 -1 -1 1.69 0.0182123 0.0167801 136 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 28.26 vpr 63.21 MiB -1 -1 0.58 21128 8 0.36 -1 -1 36432 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64732 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 24.5 MiB 7.92 650 7185 1746 4717 722 63.2 MiB 0.03 0.00 4.16702 -95.4775 -4.16702 4.16702 3.21 0.000122738 9.6565e-05 0.00762859 0.00629865 34 1993 50 6.79088e+06 148192 618332. 2139.56 7.23 0.347514 0.33918 25102 150614 -1 1708 16 700 1590 100800 23471 3.62662 3.62662 -97.0161 -3.62662 0 0 787024. 2723.27 0.80 0.03 0.26 -1 -1 0.80 0.00757395 0.00671979 60 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 41.21 vpr 64.09 MiB -1 -1 0.58 21584 15 0.94 -1 -1 36512 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 25.6 MiB 7.60 1241 4710 909 3488 313 64.1 MiB 0.14 0.00 8.6614 -176.248 -8.6614 8.6614 3.00 0.00021865 0.000178363 0.00865266 0.00734166 36 3521 45 6.79088e+06 242496 648988. 2245.63 19.74 0.54981 0.268011 25390 158009 -1 3111 18 1295 3612 246551 55755 7.27251 7.27251 -166.143 -7.27251 0 0 828058. 2865.25 0.98 0.41 0.41 -1 -1 0.98 0.0752199 0.0738206 121 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 82.55 vpr 64.07 MiB -1 -1 0.84 21432 13 0.86 -1 -1 36368 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 25.4 MiB 6.74 1132 11118 3595 5694 1829 64.1 MiB 0.24 0.06 7.01886 -151.319 -7.01886 7.01886 2.94 0.000222905 0.000180979 0.128893 0.125998 40 3321 21 6.79088e+06 242496 706193. 2443.58 63.41 0.789848 0.684937 26254 175826 -1 2799 19 1247 3661 256124 53296 6.11534 6.11534 -145.707 -6.11534 0 0 926341. 3205.33 0.94 0.16 0.32 -1 -1 0.94 0.0167862 0.0153443 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 70.95 vpr 64.09 MiB -1 -1 0.59 21736 13 1.11 -1 -1 36532 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 25.3 MiB 6.46 1327 8092 1764 5104 1224 64.1 MiB 0.21 0.00 7.94214 -171.305 -7.94214 7.94214 3.07 0.000262544 0.00022054 0.140115 0.137851 40 3062 25 6.79088e+06 242496 706193. 2443.58 52.03 0.387347 0.353846 26254 175826 -1 2960 17 1322 3747 225281 49685 6.78802 6.78802 -162.58 -6.78802 0 0 926341. 3205.33 0.94 0.18 0.50 -1 -1 0.94 0.0927011 0.0912764 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 60.12 vpr 63.70 MiB -1 -1 0.43 21280 12 0.54 -1 -1 36344 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65232 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.1 MiB 6.93 977 11088 4157 5492 1439 63.7 MiB 0.31 0.00 6.83134 -154.124 -6.83134 6.83134 2.38 0.000187854 0.00015157 0.0137009 0.0112081 40 2480 48 6.79088e+06 215552 706193. 2443.58 42.06 1.19052 1.17025 26254 175826 -1 2158 31 1081 2507 313542 137842 6.24064 6.24064 -148.909 -6.24064 0 0 926341. 3205.33 1.08 0.67 0.38 -1 -1 1.08 0.164527 0.16249 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 28.27 vpr 62.98 MiB -1 -1 0.44 21280 11 0.43 -1 -1 36364 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64496 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 24.5 MiB 6.30 831 9368 3815 5302 251 63.0 MiB 0.07 0.00 6.26518 -134.378 -6.26518 6.26518 2.86 0.000166535 0.000132186 0.0343133 0.0321888 38 2553 28 6.79088e+06 242496 678818. 2348.85 10.05 0.415735 0.405169 25966 169698 -1 2005 17 996 2455 152330 35005 5.69238 5.69238 -131.796 -5.69238 0 0 902133. 3121.57 1.22 0.26 0.65 -1 -1 1.22 0.0130094 0.0117056 95 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 23.60 vpr 63.36 MiB -1 -1 0.56 21432 11 0.60 -1 -1 36204 -1 -1 21 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 24.8 MiB 5.49 887 4981 1150 3615 216 63.4 MiB 0.06 0.00 6.73536 -131.115 -6.73536 6.73536 2.97 0.000204231 0.00016617 0.0079608 0.00663645 36 2540 29 6.79088e+06 282912 648988. 2245.63 5.92 0.265104 0.255745 25390 158009 -1 2211 16 1015 2701 161874 36196 5.99343 5.99343 -127.69 -5.99343 0 0 828058. 2865.25 1.15 0.04 0.41 -1 -1 1.15 0.0140277 0.0128433 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 56.76 vpr 63.99 MiB -1 -1 0.59 21128 12 0.56 -1 -1 36908 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 25.3 MiB 10.29 1030 11106 3225 5695 2186 64.0 MiB 0.16 0.00 6.88848 -158.105 -6.88848 6.88848 2.66 0.000240285 0.000197817 0.0186478 0.0154757 38 3159 22 6.79088e+06 229024 678818. 2348.85 36.01 0.421308 0.353645 25966 169698 -1 2420 18 1294 3132 153647 36240 6.11524 6.11524 -153.75 -6.11524 0 0 902133. 3121.57 0.91 0.14 0.20 -1 -1 0.91 0.0167585 0.0153428 119 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 37.11 vpr 63.82 MiB -1 -1 0.53 21584 12 0.48 -1 -1 36372 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 25.1 MiB 8.16 844 13496 3879 7699 1918 63.8 MiB 0.14 0.00 6.87864 -138.662 -6.87864 6.87864 2.71 9.172e-05 7.2213e-05 0.0111637 0.00912972 36 3059 35 6.79088e+06 229024 648988. 2245.63 17.10 0.139922 0.128601 25390 158009 -1 2249 19 1428 3693 212494 50213 5.99343 5.99343 -139 -5.99343 0 0 828058. 2865.25 1.51 0.09 0.30 -1 -1 1.51 0.0144222 0.0130471 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 23.40 vpr 63.75 MiB -1 -1 0.51 21280 10 0.73 -1 -1 36276 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 25.1 MiB 5.80 995 8046 2054 5506 486 63.8 MiB 0.15 0.00 6.16888 -134.071 -6.16888 6.16888 2.40 0.000187908 0.000151745 0.0119561 0.00983711 34 2664 29 6.79088e+06 229024 618332. 2139.56 6.31 0.104958 0.0951864 25102 150614 -1 2271 17 963 2723 170534 37426 5.40253 5.40253 -130.879 -5.40253 0 0 787024. 2723.27 1.31 0.36 0.31 -1 -1 1.31 0.156213 0.15505 103 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 38.56 vpr 64.27 MiB -1 -1 0.47 22344 13 0.87 -1 -1 36556 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1366 6409 1425 4059 925 64.3 MiB 0.15 0.00 8.09066 -166.557 -8.09066 8.09066 2.51 0.000128236 0.000103469 0.125818 0.124023 36 3958 42 6.79088e+06 282912 648988. 2245.63 19.71 0.483512 0.469282 25390 158009 -1 3019 17 1393 4015 252624 55094 6.8888 6.8888 -156.705 -6.8888 0 0 828058. 2865.25 1.39 0.16 0.30 -1 -1 1.39 0.0210835 0.0193359 149 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 115.42 vpr 64.34 MiB -1 -1 0.49 22192 14 1.04 -1 -1 37068 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 25.6 MiB 8.07 1410 14500 4472 7875 2153 64.3 MiB 0.19 0.00 7.75965 -172.67 -7.75965 7.75965 2.80 0.000329961 0.000281474 0.126568 0.121285 38 3969 32 6.79088e+06 242496 678818. 2348.85 95.88 0.85192 0.829006 25966 169698 -1 3264 20 1829 5112 311860 66380 7.02749 7.02749 -168.524 -7.02749 0 0 902133. 3121.57 0.97 0.20 0.39 -1 -1 0.97 0.0194149 0.017585 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 29.13 vpr 63.77 MiB -1 -1 0.89 21432 12 0.49 -1 -1 36260 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 25.3 MiB 7.47 998 11402 3354 6097 1951 63.8 MiB 0.18 0.00 7.09988 -153.854 -7.09988 7.09988 2.47 0.00021504 0.000178155 0.0171087 0.0141498 36 2732 36 6.79088e+06 215552 648988. 2245.63 10.45 0.353144 0.229182 25390 158009 -1 2300 17 985 2624 155977 34793 6.16568 6.16568 -149.033 -6.16568 0 0 828058. 2865.25 1.20 0.07 0.22 -1 -1 1.20 0.0128253 0.0115886 101 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 30.55 vpr 64.64 MiB -1 -1 0.73 21888 12 1.29 -1 -1 36236 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 25.7 MiB 8.68 1359 6231 1346 4416 469 64.6 MiB 0.10 0.00 7.65151 -160.422 -7.65151 7.65151 2.67 0.000283533 0.000237054 0.0122681 0.0105254 40 3408 25 6.79088e+06 323328 706193. 2443.58 9.03 0.361571 0.350717 26254 175826 -1 3342 38 2194 7334 1085083 456031 6.67032 6.67032 -152.362 -6.67032 0 0 926341. 3205.33 1.21 0.78 0.48 -1 -1 1.21 0.031921 0.0284717 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 22.94 vpr 64.38 MiB -1 -1 0.64 22192 14 1.49 -1 -1 36540 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65928 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 25.9 MiB 4.26 1193 5665 1093 3974 598 64.4 MiB 0.20 0.00 8.28837 -165.331 -8.28837 8.28837 2.30 0.000261939 0.000218331 0.0111879 0.00947461 36 3316 27 6.79088e+06 296384 648988. 2245.63 6.88 0.349284 0.337661 25390 158009 -1 2822 17 1459 4149 227427 51737 7.42577 7.42577 -162.119 -7.42577 0 0 828058. 2865.25 0.88 0.21 0.45 -1 -1 0.88 0.0393434 0.0379051 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 26.79 vpr 64.15 MiB -1 -1 0.76 22344 13 1.25 -1 -1 36680 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 25.6 MiB 6.74 1189 5189 1012 3920 257 64.1 MiB 0.02 0.00 8.65671 -167.943 -8.65671 8.65671 2.38 0.000112498 9.0493e-05 0.00472279 0.00399846 38 3541 40 6.79088e+06 309856 678818. 2348.85 8.67 0.396939 0.319421 25966 169698 -1 2672 16 1397 3633 186100 42706 7.43696 7.43696 -156.943 -7.43696 0 0 902133. 3121.57 1.06 0.12 0.30 -1 -1 1.06 0.016003 0.0147382 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 28.50 vpr 64.26 MiB -1 -1 0.79 21432 13 0.87 -1 -1 36364 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 25.6 MiB 6.40 1217 13077 3680 7087 2310 64.3 MiB 0.22 0.00 7.80928 -160.261 -7.80928 7.80928 2.76 0.000219108 0.000177378 0.134618 0.130877 44 3524 43 6.79088e+06 282912 787024. 2723.27 9.28 0.331196 0.316766 27118 194962 -1 2681 14 1246 3644 211004 45670 6.96798 6.96798 -148.651 -6.96798 0 0 997811. 3452.63 1.28 0.31 0.52 -1 -1 1.28 0.0153053 0.013976 125 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 30.25 vpr 63.64 MiB -1 -1 0.53 21584 12 0.55 -1 -1 36508 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.0 MiB 6.54 916 13324 4298 7153 1873 63.6 MiB 0.10 0.00 6.70425 -141.753 -6.70425 6.70425 2.49 0.000208867 0.000169735 0.0185925 0.0153617 36 3132 45 6.79088e+06 215552 648988. 2245.63 12.19 0.470829 0.283541 25390 158009 -1 2212 18 1117 3049 170416 41332 5.86813 5.86813 -136.621 -5.86813 0 0 828058. 2865.25 1.23 0.23 0.19 -1 -1 1.23 0.0166886 0.015356 111 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 29.06 vpr 64.38 MiB -1 -1 1.10 22496 14 1.35 -1 -1 37388 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 25.7 MiB 4.17 1571 12919 3579 7237 2103 64.4 MiB 0.33 0.00 8.5825 -180.126 -8.5825 8.5825 2.74 0.000258543 0.000210852 0.106574 0.0202929 40 4074 33 6.79088e+06 282912 706193. 2443.58 11.27 0.299676 0.202284 26254 175826 -1 3702 17 1678 4931 347900 79711 7.061 7.061 -169.202 -7.061 0 0 926341. 3205.33 1.15 0.35 0.29 -1 -1 1.15 0.253444 0.251654 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 67.64 vpr 63.97 MiB -1 -1 0.40 21128 11 0.78 -1 -1 36444 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 25.3 MiB 7.37 1073 6501 1499 4640 362 64.0 MiB 0.06 0.00 6.42637 -139.096 -6.42637 6.42637 2.44 9.5438e-05 7.5766e-05 0.00770841 0.00651454 40 2801 27 6.79088e+06 215552 706193. 2443.58 49.48 0.139593 0.120026 26254 175826 -1 2664 18 1264 3555 227038 50309 5.60634 5.60634 -134.693 -5.60634 0 0 926341. 3205.33 1.13 0.12 0.33 -1 -1 1.13 0.0825741 0.0811963 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 25.65 vpr 64.32 MiB -1 -1 0.54 21736 13 0.70 -1 -1 36968 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 5.99 1076 5303 1019 4187 97 64.3 MiB 0.14 0.00 8.03811 -165.365 -8.03811 8.03811 2.38 0.000241382 0.000191922 0.0105488 0.00881116 40 2681 18 6.79088e+06 269440 706193. 2443.58 7.08 0.346059 0.273809 26254 175826 -1 2576 16 1174 3750 219191 50384 7.09671 7.09671 -157.684 -7.09671 0 0 926341. 3205.33 0.89 0.17 0.44 -1 -1 0.89 0.161788 0.160401 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 27.14 vpr 64.45 MiB -1 -1 0.44 21736 12 1.07 -1 -1 36684 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 25.7 MiB 6.76 1229 8269 1949 5817 503 64.4 MiB 0.22 0.00 7.09992 -154.886 -7.09992 7.09992 2.54 0.000234094 0.000190357 0.0116545 0.00950389 40 3274 49 6.79088e+06 282912 706193. 2443.58 8.20 0.332727 0.32009 26254 175826 -1 3120 19 1469 4941 319382 68823 6.54158 6.54158 -154.955 -6.54158 0 0 926341. 3205.33 1.25 0.32 0.42 -1 -1 1.25 0.0172385 0.0153837 146 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 27.39 vpr 64.10 MiB -1 -1 0.37 21584 13 1.14 -1 -1 36504 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65636 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 25.4 MiB 4.76 1166 5945 1195 4546 204 64.1 MiB 0.18 0.00 8.15537 -168.597 -8.15537 8.15537 2.74 0.00022861 0.000180786 0.150262 0.148657 36 3271 24 6.79088e+06 296384 648988. 2245.63 10.11 0.397978 0.386681 25390 158009 -1 2693 17 1250 3318 199331 44831 6.7734 6.7734 -156.55 -6.7734 0 0 828058. 2865.25 1.01 0.41 0.28 -1 -1 1.01 0.0154978 0.0140153 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 43.67 vpr 64.01 MiB -1 -1 0.70 22040 13 0.60 -1 -1 36528 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 25.4 MiB 9.76 1291 6668 1628 4315 725 64.0 MiB 0.21 0.00 7.6093 -161.643 -7.6093 7.6093 2.48 0.00011067 8.5515e-05 0.0102627 0.00869206 36 3491 44 6.79088e+06 242496 648988. 2245.63 22.96 0.317646 0.275622 25390 158009 -1 2937 17 1309 3463 214530 46829 6.50936 6.50936 -155.108 -6.50936 0 0 828058. 2865.25 1.24 0.03 0.21 -1 -1 1.24 0.0102207 0.00954788 124 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 47.11 vpr 64.17 MiB -1 -1 0.73 21888 12 1.03 -1 -1 36840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 7.23 1264 13077 4245 6963 1869 64.2 MiB 0.13 0.00 7.48863 -164.662 -7.48863 7.48863 2.36 0.000259409 0.000216488 0.0390412 0.0354763 36 4312 32 6.79088e+06 269440 648988. 2245.63 28.31 0.285615 0.269325 25390 158009 -1 3063 27 1475 4687 437807 142940 6.33367 6.33367 -153.642 -6.33367 0 0 828058. 2865.25 0.94 0.28 0.28 -1 -1 0.94 0.0227667 0.0206025 140 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 28.73 vpr 64.31 MiB -1 -1 0.59 21888 13 0.92 -1 -1 37080 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 4.87 1308 7404 1742 4872 790 64.3 MiB 0.26 0.00 7.79737 -172.677 -7.79737 7.79737 2.20 0.000254334 0.000207742 0.157532 0.155345 38 3611 33 6.79088e+06 269440 678818. 2348.85 12.42 0.39145 0.378126 25966 169698 -1 2932 15 1402 4063 208507 47168 6.72081 6.72081 -161.844 -6.72081 0 0 902133. 3121.57 1.05 0.14 0.34 -1 -1 1.05 0.00927677 0.00849161 145 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 30.64 vpr 64.04 MiB -1 -1 0.66 21584 14 0.93 -1 -1 36668 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 25.4 MiB 5.25 1134 12528 3689 7280 1559 64.0 MiB 0.13 0.00 8.14516 -169.239 -8.14516 8.14516 2.43 0.000221408 0.000179969 0.0177354 0.0146792 36 3215 23 6.79088e+06 269440 648988. 2245.63 13.87 0.200928 0.189127 25390 158009 -1 2583 21 1334 3813 212707 47879 7.17517 7.17517 -157.885 -7.17517 0 0 828058. 2865.25 1.10 0.32 0.37 -1 -1 1.10 0.216246 0.0172196 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 39.38 vpr 64.37 MiB -1 -1 0.46 21736 13 1.04 -1 -1 36948 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 25.6 MiB 7.58 1230 12547 3334 7250 1963 64.4 MiB 0.43 0.00 8.09269 -160.616 -8.09269 8.09269 2.92 0.000267871 0.00020868 0.0210651 0.0172658 36 3920 34 6.79088e+06 282912 648988. 2245.63 19.44 0.269556 0.255153 25390 158009 -1 3169 26 2031 6074 492410 149015 6.93565 6.93565 -154.112 -6.93565 0 0 828058. 2865.25 0.98 0.23 0.56 -1 -1 0.98 0.0705995 0.0687446 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 25.55 vpr 64.19 MiB -1 -1 0.90 22192 13 0.77 -1 -1 36480 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 25.6 MiB 7.43 1194 6855 1560 4961 334 64.2 MiB 0.13 0.00 7.84076 -167.565 -7.84076 7.84076 2.28 0.000241605 0.000188472 0.0916661 0.0896377 48 2954 22 6.79088e+06 282912 865456. 2994.66 6.64 0.163436 0.151934 27694 206865 -1 2632 18 1331 3856 240858 53932 6.65923 6.65923 -154.098 -6.65923 0 0 1.05005e+06 3633.38 1.15 0.14 0.54 -1 -1 1.15 0.0198617 0.0181981 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 25.10 vpr 64.47 MiB -1 -1 0.61 21736 12 1.03 -1 -1 36688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 25.7 MiB 5.36 1311 5851 1203 3709 939 64.5 MiB 0.02 0.00 7.71669 -163.184 -7.71669 7.71669 2.74 0.000112474 9.1615e-05 0.0079034 0.00708409 40 3316 22 6.79088e+06 282912 706193. 2443.58 8.09 0.257026 0.246894 26254 175826 -1 3313 20 1647 4462 285411 62849 6.63117 6.63117 -158.189 -6.63117 0 0 926341. 3205.33 0.87 0.31 0.44 -1 -1 0.87 0.0201752 0.0183414 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 22.00 vpr 63.66 MiB -1 -1 0.35 21432 11 0.70 -1 -1 36356 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 25.0 MiB 4.58 1005 10702 3112 6246 1344 63.7 MiB 0.46 0.00 6.21064 -136.494 -6.21064 6.21064 2.48 0.000192871 0.000159306 0.013544 0.0111321 40 2250 19 6.79088e+06 188608 706193. 2443.58 6.11 0.122257 0.112621 26254 175826 -1 2127 18 845 2152 139952 31180 5.40258 5.40258 -131.108 -5.40258 0 0 926341. 3205.33 1.15 0.08 0.21 -1 -1 1.15 0.013256 0.0120132 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 30.09 vpr 63.81 MiB -1 -1 0.44 21432 13 0.77 -1 -1 36304 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 25.3 MiB 6.51 1176 10515 2869 6205 1441 63.8 MiB 0.19 0.00 7.53642 -162.326 -7.53642 7.53642 2.57 0.000107736 8.6084e-05 0.013269 0.0108508 36 3408 30 6.79088e+06 269440 648988. 2245.63 12.89 0.253267 0.241571 25390 158009 -1 2709 14 1186 3024 183009 41359 6.45902 6.45902 -157.581 -6.45902 0 0 828058. 2865.25 1.10 0.15 0.33 -1 -1 1.10 0.10883 0.107951 118 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 33.06 vpr 64.73 MiB -1 -1 0.64 22344 14 1.53 -1 -1 36652 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 26.2 MiB 4.33 1606 14908 4178 8064 2666 64.7 MiB 0.27 0.00 9.30628 -185.251 -9.30628 9.30628 2.23 0.000134787 0.000110081 0.124343 0.121712 40 4467 40 6.79088e+06 323328 706193. 2443.58 15.91 0.417336 0.322385 26254 175826 -1 4044 41 3170 10484 1659413 686250 8.71802 8.71802 -185.563 -8.71802 0 0 926341. 3205.33 0.97 1.22 0.30 -1 -1 0.97 0.0306023 0.0274072 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 25.30 vpr 64.04 MiB -1 -1 0.76 21888 13 1.14 -1 -1 36516 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 25.3 MiB 5.51 1373 5107 1065 3575 467 64.0 MiB 0.04 0.00 7.99662 -176.141 -7.99662 7.99662 2.49 0.000218079 0.000176617 0.00941603 0.00790282 40 3267 21 6.79088e+06 282912 706193. 2443.58 7.75 0.131858 0.122108 26254 175826 -1 2988 16 1279 3446 222044 48292 7.28922 7.28922 -171.863 -7.28922 0 0 926341. 3205.33 0.98 0.14 0.39 -1 -1 0.98 0.124756 0.123954 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 28.03 vpr 63.77 MiB -1 -1 0.46 21280 11 0.50 -1 -1 36860 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 25.1 MiB 2.54 913 8698 3216 4702 780 63.8 MiB 0.18 0.00 6.69153 -142.001 -6.69153 6.69153 2.51 0.000209485 0.000173569 0.0126132 0.0103406 34 2978 37 6.79088e+06 229024 618332. 2139.56 15.11 0.169104 0.146718 25102 150614 -1 2191 25 1068 2905 278697 110360 5.86813 5.86813 -137.036 -5.86813 0 0 787024. 2723.27 1.18 0.27 0.34 -1 -1 1.18 0.0210295 0.0158263 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 31.55 vpr 64.84 MiB -1 -1 0.58 22344 15 1.74 -1 -1 36496 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66392 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 26.0 MiB 3.96 1499 13751 3607 8212 1932 64.8 MiB 0.33 0.00 9.45131 -196.491 -9.45131 9.45131 2.71 0.000318105 0.000263405 0.0230354 0.0194144 38 4290 28 6.79088e+06 336800 678818. 2348.85 15.30 0.672402 0.553503 25966 169698 -1 3256 18 1773 4898 239338 54871 8.26721 8.26721 -182.774 -8.26721 0 0 902133. 3121.57 1.05 0.16 0.25 -1 -1 1.05 0.0245497 0.0219405 179 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 30.67 vpr 64.41 MiB -1 -1 0.59 21736 13 0.96 -1 -1 36504 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 25.7 MiB 3.51 1327 7221 1806 4907 508 64.4 MiB 0.22 0.00 8.09861 -175.276 -8.09861 8.09861 2.48 0.000331575 0.000277067 0.0137795 0.0117318 36 3663 28 6.79088e+06 269440 648988. 2245.63 15.90 0.233698 0.220814 25390 158009 -1 3024 29 1390 3984 459582 194762 7.09671 7.09671 -171.261 -7.09671 0 0 828058. 2865.25 0.87 0.26 0.24 -1 -1 0.87 0.046677 0.0442748 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 22.41 vpr 63.77 MiB -1 -1 0.68 21128 11 0.70 -1 -1 36428 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65300 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 25.1 MiB 4.90 1048 9368 2840 4823 1705 63.8 MiB 0.22 0.00 6.8184 -143.52 -6.8184 6.8184 2.64 8.2634e-05 6.5816e-05 0.00629914 0.00517708 30 2846 50 6.79088e+06 175136 556674. 1926.21 6.30 0.263977 0.257217 24526 138013 -1 2348 20 938 2439 208524 64465 6.07177 6.07177 -142.376 -6.07177 0 0 706193. 2443.58 0.77 0.25 0.38 -1 -1 0.77 0.0146992 0.0133064 94 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 23.96 vpr 64.50 MiB -1 -1 0.62 21888 12 1.35 -1 -1 36672 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 25.9 MiB 4.42 1273 3744 682 2956 106 64.5 MiB 0.11 0.00 7.80662 -164.116 -7.80662 7.80662 2.57 0.000244239 0.000199565 0.00687012 0.00580622 40 3138 27 6.79088e+06 269440 706193. 2443.58 7.56 0.105382 0.0946088 26254 175826 -1 2977 17 1398 4272 273067 60353 6.75996 6.75996 -158.558 -6.75996 0 0 926341. 3205.33 0.95 0.21 0.36 -1 -1 0.95 0.0734521 0.0724445 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 24.70 vpr 63.98 MiB -1 -1 0.72 21432 12 0.65 -1 -1 36228 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65512 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 25.3 MiB 5.26 1093 11296 2879 6424 1993 64.0 MiB 0.37 0.00 7.38808 -154.548 -7.38808 7.38808 2.24 0.000239935 0.000200695 0.155373 0.013257 38 2925 25 6.79088e+06 242496 678818. 2348.85 6.55 0.21314 0.0629693 25966 169698 -1 2388 18 1120 2927 157781 35630 6.38057 6.38057 -146.795 -6.38057 0 0 902133. 3121.57 1.31 0.20 0.59 -1 -1 1.31 0.0681036 0.0667688 113 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 24.48 vpr 63.66 MiB -1 -1 0.91 21432 12 0.69 -1 -1 36368 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 25.1 MiB 3.45 829 8191 1875 6055 261 63.7 MiB 0.19 0.00 7.82373 -148.45 -7.82373 7.82373 2.83 0.000203113 0.000164562 0.013368 0.0110101 36 2341 28 6.79088e+06 229024 648988. 2245.63 9.38 0.295668 0.284638 25390 158009 -1 2017 24 946 2503 136921 35400 6.75996 6.75996 -143.141 -6.75996 0 0 828058. 2865.25 1.00 0.05 0.49 -1 -1 1.00 0.0168202 0.0151748 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 34.01 vpr 64.32 MiB -1 -1 0.74 21736 12 0.92 -1 -1 36356 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 25.6 MiB 7.87 1310 7383 1809 4748 826 64.3 MiB 0.05 0.00 7.48697 -145.09 -7.48697 7.48697 2.82 0.000292137 0.000185049 0.0217345 0.020355 38 3295 41 6.79088e+06 350272 678818. 2348.85 14.20 0.260329 0.247771 25966 169698 -1 2675 24 1252 3878 344961 136790 6.54158 6.54158 -137.332 -6.54158 0 0 902133. 3121.57 0.90 0.36 0.42 -1 -1 0.90 0.0196077 0.0181298 140 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 27.97 vpr 64.62 MiB -1 -1 0.84 21888 13 1.37 -1 -1 36532 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 25.9 MiB 3.60 1469 6615 1348 4384 883 64.6 MiB 0.31 0.00 7.94883 -165.303 -7.94883 7.94883 3.06 0.000267001 0.000206715 0.186171 0.184091 36 4119 27 6.79088e+06 309856 648988. 2245.63 11.27 0.512899 0.500123 25390 158009 -1 3376 21 2082 5079 318029 69650 7.04976 7.04976 -167.899 -7.04976 0 0 828058. 2865.25 0.78 0.16 0.27 -1 -1 0.78 0.0184049 0.0170139 160 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 35.75 vpr 64.09 MiB -1 -1 0.81 21432 12 0.61 -1 -1 36512 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 4.48 1369 7770 1945 5143 682 64.1 MiB 0.14 0.00 7.82957 -168.971 -7.82957 7.82957 2.42 0.000233252 0.000191506 0.101844 0.0997273 36 4168 40 6.79088e+06 269440 648988. 2245.63 19.11 0.7468 0.731399 25390 158009 -1 3205 21 1508 4153 311924 77482 6.91327 6.91327 -165.194 -6.91327 0 0 828058. 2865.25 0.75 0.18 0.54 -1 -1 0.75 0.106456 0.104503 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 29.15 vpr 63.68 MiB -1 -1 0.92 21432 12 0.90 -1 -1 36216 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.0 MiB 7.06 827 5825 1179 4572 74 63.7 MiB 0.06 0.00 7.39828 -145.899 -7.39828 7.39828 2.64 0.000198677 0.000162889 0.033063 0.0316761 36 2583 41 6.79088e+06 202080 648988. 2245.63 9.66 0.110919 0.101458 25390 158009 -1 1941 15 809 2234 143044 32097 6.37287 6.37287 -138.856 -6.37287 0 0 828058. 2865.25 1.03 0.11 0.19 -1 -1 1.03 0.0118702 0.010874 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 27.73 vpr 63.86 MiB -1 -1 0.66 21736 12 0.84 -1 -1 36036 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 4.99 989 11830 4101 6106 1623 63.9 MiB 0.29 0.00 7.24523 -149.288 -7.24523 7.24523 2.39 0.000193892 0.000157104 0.241623 0.238772 36 3110 24 6.79088e+06 255968 648988. 2245.63 10.55 0.502515 0.49089 25390 158009 -1 2468 16 1076 3020 188463 42983 6.09963 6.09963 -144.436 -6.09963 0 0 828058. 2865.25 1.15 0.13 0.33 -1 -1 1.15 0.0148927 0.0135748 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 52.42 vpr 64.20 MiB -1 -1 0.86 21736 11 1.01 -1 -1 36516 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 25.4 MiB 5.06 1062 11296 3634 5901 1761 64.2 MiB 0.21 0.00 6.89956 -139.068 -6.89956 6.89956 2.16 0.000106642 8.3768e-05 0.0112168 0.00934218 38 2948 43 6.79088e+06 269440 678818. 2348.85 35.25 0.509993 0.487258 25966 169698 -1 2389 17 1070 3307 169957 38680 5.78197 5.78197 -130.146 -5.78197 0 0 902133. 3121.57 0.95 0.08 0.34 -1 -1 0.95 0.0211488 0.0195772 125 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 31.38 vpr 64.03 MiB -1 -1 0.44 21584 11 0.82 -1 -1 36348 -1 -1 19 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 25.6 MiB 4.92 1034 10388 3390 5543 1455 64.0 MiB 0.27 0.00 6.39394 -127.87 -6.39394 6.39394 2.61 9.595e-05 7.5721e-05 0.0156995 0.0129696 36 2873 38 6.79088e+06 255968 648988. 2245.63 14.75 0.330659 0.318051 25390 158009 -1 2414 20 1286 4124 267250 57798 5.56708 5.56708 -124.707 -5.56708 0 0 828058. 2865.25 1.08 0.25 0.35 -1 -1 1.08 0.193951 0.192324 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 68.38 vpr 63.90 MiB -1 -1 0.70 21432 13 0.69 -1 -1 36332 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 25.3 MiB 6.69 1069 10744 3320 5344 2080 63.9 MiB 0.06 0.00 7.007 -145.297 -7.007 7.007 2.51 0.000198778 0.000160338 0.0147657 0.0121089 30 3512 38 6.79088e+06 242496 556674. 1926.21 50.60 0.364066 0.329897 24526 138013 -1 2473 16 1122 3044 172020 39077 6.3268 6.3268 -142.889 -6.3268 0 0 706193. 2443.58 1.02 0.08 0.33 -1 -1 1.02 0.0131872 0.0120748 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 34.41 vpr 64.18 MiB -1 -1 0.72 21736 12 1.11 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.6 MiB 7.01 1181 11474 3011 6873 1590 64.2 MiB 0.35 0.00 7.19453 -164.62 -7.19453 7.19453 2.59 0.000250409 0.000206342 0.0184873 0.0155476 36 3249 47 6.79088e+06 242496 648988. 2245.63 16.22 0.518665 0.504726 25390 158009 -1 2767 31 1313 3455 450128 202660 6.29442 6.29442 -153.441 -6.29442 0 0 828058. 2865.25 0.96 0.23 0.28 -1 -1 0.96 0.0229519 0.0204786 120 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 23.65 vpr 64.21 MiB -1 -1 0.51 21432 13 1.08 -1 -1 36564 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 25.6 MiB 6.00 1196 12528 3337 7297 1894 64.2 MiB 0.18 0.00 8.59275 -169.25 -8.59275 8.59275 2.79 0.000237044 0.000193352 0.132535 0.129176 30 3445 28 6.79088e+06 282912 556674. 1926.21 5.13 0.59282 0.550171 24526 138013 -1 2737 15 1314 3497 185103 42238 7.51535 7.51535 -164.152 -7.51535 0 0 706193. 2443.58 0.84 0.15 0.30 -1 -1 0.84 0.0156508 0.0143744 137 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 22.34 vpr 64.34 MiB -1 -1 0.55 21888 14 1.09 -1 -1 36932 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 25.6 MiB 4.37 1146 5574 1039 4449 86 64.3 MiB 0.02 0.00 8.72598 -178.523 -8.72598 8.72598 2.64 0.00011691 9.3905e-05 0.00539058 0.004559 46 2907 36 6.79088e+06 269440 828058. 2865.25 6.69 0.113 0.102811 27406 200422 -1 2346 18 1166 3599 177913 40777 7.64066 7.64066 -167.177 -7.64066 0 0 1.01997e+06 3529.29 1.05 0.22 0.45 -1 -1 1.05 0.0176089 0.0161782 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 34.27 vpr 64.09 MiB -1 -1 0.64 22040 14 0.77 -1 -1 36380 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65632 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 25.4 MiB 8.09 1230 8656 2011 5349 1296 64.1 MiB 0.12 0.00 8.05712 -162.43 -8.05712 8.05712 2.43 0.000317229 0.000272174 0.0148106 0.012429 36 3323 48 6.79088e+06 229024 648988. 2245.63 14.49 0.136221 0.122487 25390 158009 -1 2736 21 1388 4227 246785 54143 6.92451 6.92451 -155.298 -6.92451 0 0 828058. 2865.25 0.85 0.17 0.34 -1 -1 0.85 0.0944107 0.092571 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 31.33 vpr 64.20 MiB -1 -1 0.74 22192 13 1.29 -1 -1 36544 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 25.6 MiB 6.66 1412 5945 1208 4509 228 64.2 MiB 0.14 0.00 8.26127 -169.83 -8.26127 8.26127 2.73 0.000127078 0.000102927 0.0100232 0.00857266 46 3364 24 6.79088e+06 296384 828058. 2865.25 12.10 0.114665 0.10355 27406 200422 -1 2817 19 1407 3920 199584 45033 7.25008 7.25008 -161.265 -7.25008 0 0 1.01997e+06 3529.29 1.48 0.15 0.42 -1 -1 1.48 0.0198741 0.0181337 144 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 25.00 vpr 63.68 MiB -1 -1 0.41 21432 13 0.48 -1 -1 36260 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 25.0 MiB 6.76 994 9024 2062 6050 912 63.7 MiB 0.08 0.00 7.09997 -149.654 -7.09997 7.09997 2.35 0.000181299 0.000146487 0.0127175 0.0105188 38 2558 18 6.79088e+06 242496 678818. 2348.85 6.04 0.150968 0.141226 25966 169698 -1 2142 16 993 2590 129762 29565 6.16917 6.16917 -140.618 -6.16917 0 0 902133. 3121.57 1.19 0.14 0.51 -1 -1 1.19 0.130816 0.130237 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 32.85 vpr 64.27 MiB -1 -1 0.94 22192 13 1.75 -1 -1 36540 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 5.76 1348 12894 3597 7190 2107 64.3 MiB 0.15 0.00 8.17676 -167.864 -8.17676 8.17676 2.45 0.000120605 9.6308e-05 0.0112707 0.00933704 38 3888 38 6.79088e+06 296384 678818. 2348.85 14.71 0.392014 0.279797 25966 169698 -1 2997 18 1534 4216 220306 49419 7.08126 7.08126 -162.178 -7.08126 0 0 902133. 3121.57 1.19 0.17 0.51 -1 -1 1.19 0.13666 0.135017 145 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 26.30 vpr 64.20 MiB -1 -1 0.62 21736 14 1.21 -1 -1 36684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 25.4 MiB 6.17 1204 12542 3557 7512 1473 64.2 MiB 0.28 0.00 8.33107 -176.562 -8.33107 8.33107 1.99 0.000231903 0.000179628 0.225717 0.222269 44 3220 27 6.79088e+06 242496 787024. 2723.27 8.45 0.363751 0.349328 27118 194962 -1 2662 17 1149 3386 201433 43261 7.43352 7.43352 -168.165 -7.43352 0 0 997811. 3452.63 1.18 0.17 0.58 -1 -1 1.18 0.103352 0.101981 128 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 35.90 vpr 64.16 MiB -1 -1 0.59 21736 13 0.69 -1 -1 36520 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 25.6 MiB 6.14 1125 9516 2594 5042 1880 64.2 MiB 0.17 0.05 7.45922 -159.332 -7.45922 7.45922 2.59 0.0483542 0.0483104 0.131607 0.129133 36 3566 40 6.79088e+06 255968 648988. 2245.63 18.22 0.356329 0.343212 25390 158009 -1 2839 19 1358 3733 236269 51682 6.95324 6.95324 -158.854 -6.95324 0 0 828058. 2865.25 1.03 0.32 0.28 -1 -1 1.03 0.0143134 0.0128503 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 33.80 vpr 63.89 MiB -1 -1 0.65 21888 13 0.68 -1 -1 36520 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 25.3 MiB 5.35 1137 12856 4036 7043 1777 63.9 MiB 0.28 0.00 7.52397 -147.14 -7.52397 7.52397 2.53 0.000199929 0.000161569 0.0523737 0.0486881 36 3258 50 6.79088e+06 255968 648988. 2245.63 18.13 0.237289 0.223628 25390 158009 -1 2698 19 1306 3548 219060 48160 6.90978 6.90978 -145.069 -6.90978 0 0 828058. 2865.25 0.76 0.23 0.38 -1 -1 0.76 0.0170688 0.015416 121 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 30.99 vpr 64.41 MiB -1 -1 0.69 21888 14 1.87 -1 -1 36380 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 25.9 MiB 6.24 1451 10687 2741 6315 1631 64.4 MiB 0.13 0.00 8.72215 -179.517 -8.72215 8.72215 2.68 0.00026871 0.000222142 0.0190015 0.0157864 40 4139 45 6.79088e+06 282912 706193. 2443.58 12.16 0.283295 0.267711 26254 175826 -1 3710 19 1704 5017 366822 79085 8.01306 8.01306 -176.138 -8.01306 0 0 926341. 3205.33 1.13 0.20 0.36 -1 -1 1.13 0.0218377 0.019966 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 31.78 vpr 64.07 MiB -1 -1 0.79 22040 11 1.09 -1 -1 36316 -1 -1 23 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 7.47 1069 9783 2744 5515 1524 64.1 MiB 0.10 0.00 7.52622 -141.496 -7.52622 7.52622 2.53 0.000267645 0.000221515 0.0163732 0.0133055 34 3669 49 6.79088e+06 309856 618332. 2139.56 11.22 0.350322 0.336507 25102 150614 -1 2740 28 1337 3793 356365 131059 6.38057 6.38057 -134.372 -6.38057 0 0 787024. 2723.27 1.23 0.41 0.48 -1 -1 1.23 0.0113785 0.0102966 136 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 62.96 vpr 63.74 MiB -1 -1 0.76 21584 13 0.39 -1 -1 36372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.3 MiB 12.25 943 8212 2080 5932 200 63.7 MiB 0.18 0.00 7.06068 -160.405 -7.06068 7.06068 2.84 8.3754e-05 6.6995e-05 0.00552488 0.00458763 40 2594 33 6.79088e+06 188608 706193. 2443.58 38.55 0.369759 0.353198 26254 175826 -1 2242 27 1135 2554 257116 93514 5.99004 5.99004 -151.715 -5.99004 0 0 926341. 3205.33 1.00 0.28 0.22 -1 -1 1.00 0.0176698 0.0159026 98 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 30.00 vpr 63.86 MiB -1 -1 0.90 21888 14 1.08 -1 -1 36560 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 25.3 MiB 6.44 1207 6731 1642 4519 570 63.9 MiB 0.16 0.00 8.29812 -170.987 -8.29812 8.29812 2.37 0.000228579 0.000187435 0.0463598 0.0443926 36 3162 22 6.79088e+06 229024 648988. 2245.63 11.74 0.161469 0.150586 25390 158009 -1 2729 17 1154 3067 182715 40642 7.42577 7.42577 -164.968 -7.42577 0 0 828058. 2865.25 1.00 0.13 0.44 -1 -1 1.00 0.0173116 0.0158816 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 26.95 vpr 64.71 MiB -1 -1 0.62 22344 15 1.01 -1 -1 36248 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.0 MiB 5.51 1316 11223 3211 6360 1652 64.7 MiB 0.15 0.00 9.24101 -186.679 -9.24101 9.24101 2.38 0.000136464 0.000109802 0.010004 0.00827923 46 3545 32 6.79088e+06 309856 828058. 2865.25 8.31 0.102984 0.0852926 27406 200422 -1 2867 18 1576 4182 206928 48477 8.10615 8.10615 -174.61 -8.10615 0 0 1.01997e+06 3529.29 1.22 0.11 0.40 -1 -1 1.22 0.0142682 0.0128737 163 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 46.75 vpr 63.72 MiB -1 -1 0.30 21736 11 0.47 -1 -1 36352 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65248 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 25.1 MiB 6.28 817 7008 1491 5366 151 63.7 MiB 0.26 0.00 6.91752 -143.632 -6.91752 6.91752 2.45 0.000198506 0.000149481 0.233414 0.00922393 38 2333 21 6.79088e+06 202080 678818. 2348.85 29.04 0.475864 0.23947 25966 169698 -1 1855 17 922 2444 131934 30357 5.99343 5.99343 -137.822 -5.99343 0 0 902133. 3121.57 1.06 0.09 0.26 -1 -1 1.06 0.0132275 0.012109 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 33.05 vpr 63.63 MiB -1 -1 0.91 21280 12 0.70 -1 -1 36552 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 25.1 MiB 5.66 1059 6100 1333 4406 361 63.6 MiB 0.17 0.00 6.68467 -150.19 -6.68467 6.68467 3.03 0.000203636 0.000162379 0.042617 0.0408947 36 3480 34 6.79088e+06 229024 648988. 2245.63 15.41 0.36556 0.35435 25390 158009 -1 2742 21 1417 3797 229983 51414 5.82887 5.82887 -146.097 -5.82887 0 0 828058. 2865.25 1.03 0.31 0.26 -1 -1 1.03 0.0174261 0.0158652 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 24.24 vpr 64.44 MiB -1 -1 0.51 21888 12 1.09 -1 -1 36528 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 25.7 MiB 4.33 1274 6023 1243 4416 364 64.4 MiB 0.16 0.00 7.44946 -160.947 -7.44946 7.44946 2.83 0.000262393 0.000216047 0.0651238 0.0632751 36 3519 22 6.79088e+06 255968 648988. 2245.63 7.78 0.275483 0.263528 25390 158009 -1 2937 19 1489 4320 235582 54894 6.67381 6.67381 -157.967 -6.67381 0 0 828058. 2865.25 1.12 0.20 0.18 -1 -1 1.12 0.17701 0.175841 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 72.75 vpr 64.23 MiB -1 -1 0.57 21736 12 1.29 -1 -1 36360 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 25.6 MiB 7.02 1256 11652 3336 6758 1558 64.2 MiB 0.23 0.00 7.26447 -155.226 -7.26447 7.26447 2.83 0.000252864 0.000180633 0.158774 0.155743 40 3216 19 6.79088e+06 242496 706193. 2443.58 52.33 0.601826 0.508429 26254 175826 -1 3120 16 1362 3927 262860 55541 6.33367 6.33367 -153.277 -6.33367 0 0 926341. 3205.33 1.43 0.09 0.55 -1 -1 1.43 0.0161406 0.0148196 130 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 37.89 vpr 64.59 MiB -1 -1 0.71 22192 14 1.75 -1 -1 36588 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 25.9 MiB 7.53 1311 5567 1101 4179 287 64.6 MiB 0.04 0.02 9.37625 -182.592 -9.37625 9.37625 2.47 0.000134163 0.000107512 0.00613148 0.00519029 36 4039 26 6.79088e+06 296384 648988. 2245.63 17.04 0.513928 0.43663 25390 158009 -1 3438 21 1758 5180 314485 70041 7.81291 7.81291 -173.382 -7.81291 0 0 828058. 2865.25 1.15 0.18 0.25 -1 -1 1.15 0.0242137 0.0220307 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 36.68 vpr 63.84 MiB -1 -1 0.60 21432 12 0.92 -1 -1 36468 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 25.3 MiB 5.74 1038 11631 4130 5622 1879 63.8 MiB 0.14 0.00 7.09222 -139.67 -7.09222 7.09222 2.91 0.000218801 0.000178227 0.00985613 0.00803052 36 3325 46 6.79088e+06 255968 648988. 2245.63 18.89 0.406694 0.395249 25390 158009 -1 2718 18 1284 3770 248485 55214 6.36168 6.36168 -136.43 -6.36168 0 0 828058. 2865.25 0.95 0.18 0.20 -1 -1 0.95 0.016007 0.0145486 121 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 21.36 vpr 63.59 MiB -1 -1 0.37 21128 11 0.71 -1 -1 36524 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 8.70 836 12362 3373 7574 1415 63.6 MiB 0.25 0.00 7.24312 -129.617 -7.24312 7.24312 2.50 0.000183914 0.000148634 0.166608 0.0137765 30 2248 26 6.79088e+06 255968 556674. 1926.21 2.90 0.20089 0.0430698 24526 138013 -1 1895 15 862 2117 104629 25215 6.67032 6.67032 -127.143 -6.67032 0 0 706193. 2443.58 0.59 0.12 0.35 -1 -1 0.59 0.0123789 0.0112994 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 33.71 vpr 64.76 MiB -1 -1 0.63 22648 13 1.67 -1 -1 36704 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.2 MiB 5.72 1548 9135 2246 6246 643 64.8 MiB 0.12 0.00 8.07817 -163.002 -8.07817 8.07817 2.72 0.000324898 0.000270015 0.0670237 0.0639352 40 4395 40 6.79088e+06 350272 706193. 2443.58 15.10 0.279144 0.153606 26254 175826 -1 4023 19 2209 6634 428390 91098 6.96017 6.96017 -159.086 -6.96017 0 0 926341. 3205.33 1.07 0.36 0.28 -1 -1 1.07 0.0249782 0.0228678 188 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 25.03 vpr 64.05 MiB -1 -1 0.59 21888 14 1.03 -1 -1 36304 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 25.4 MiB 7.07 1216 5665 1120 3933 612 64.1 MiB 0.14 0.00 8.1916 -166.036 -8.1916 8.1916 2.67 0.000226605 0.000185802 0.00584723 0.00496125 38 2974 17 6.79088e+06 296384 678818. 2348.85 6.98 0.147742 0.13804 25966 169698 -1 2613 21 1157 3235 164176 37413 7.1786 7.1786 -156.686 -7.1786 0 0 902133. 3121.57 0.89 0.15 0.32 -1 -1 0.89 0.0184198 0.0168247 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 24.59 vpr 63.77 MiB -1 -1 0.43 21432 12 0.57 -1 -1 36308 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 25.1 MiB 6.12 1069 7736 1622 5709 405 63.8 MiB 0.13 0.00 7.30616 -155.25 -7.30616 7.30616 2.38 0.000223248 0.000172778 0.0109389 0.0091079 36 2757 24 6.79088e+06 242496 648988. 2245.63 7.65 0.0694634 0.0595311 25390 158009 -1 2268 14 931 2345 132703 30214 6.27527 6.27527 -149.173 -6.27527 0 0 828058. 2865.25 1.03 0.04 0.20 -1 -1 1.03 0.0132514 0.0121832 109 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 51.60 vpr 63.95 MiB -1 -1 0.57 21584 13 0.90 -1 -1 36364 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 25.4 MiB 5.81 1256 6846 1513 4068 1265 64.0 MiB 0.09 0.00 8.39101 -170.885 -8.39101 8.39101 2.34 0.000283038 0.000242275 0.0531481 0.0513807 34 3785 45 6.79088e+06 242496 618332. 2139.56 35.07 0.54238 0.52401 25102 150614 -1 3057 17 1293 3503 237559 52009 7.08906 7.08906 -166.878 -7.08906 0 0 787024. 2723.27 1.30 0.14 0.47 -1 -1 1.30 0.0128271 0.011729 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 31.87 vpr 64.61 MiB -1 -1 0.70 22192 13 0.97 -1 -1 36568 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 25.9 MiB 5.56 1444 6039 1232 4262 545 64.6 MiB 0.27 0.00 7.26103 -154.941 -7.26103 7.26103 3.14 0.000128786 0.000105109 0.111643 0.109916 40 3873 25 6.79088e+06 323328 706193. 2443.58 13.07 0.522711 0.50947 26254 175826 -1 3690 26 2164 6542 540823 149368 6.45548 6.45548 -154.67 -6.45548 0 0 926341. 3205.33 1.15 0.58 0.34 -1 -1 1.15 0.0864627 0.0839129 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 39.85 vpr 64.26 MiB -1 -1 0.84 21736 11 0.98 -1 -1 36344 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 6.78 1252 8136 2096 4731 1309 64.3 MiB 0.05 0.00 7.13827 -144.758 -7.13827 7.13827 2.83 0.000245886 0.000204375 0.0100692 0.00833935 36 3579 27 6.79088e+06 296384 648988. 2245.63 20.86 0.333703 0.145771 25390 158009 -1 2774 18 1258 3822 237022 52155 6.12992 6.12992 -138.211 -6.12992 0 0 828058. 2865.25 0.99 0.10 0.23 -1 -1 0.99 0.0174968 0.0159903 141 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 84.90 vpr 64.32 MiB -1 -1 0.96 21888 15 1.57 -1 -1 36384 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65860 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 25.7 MiB 5.34 1398 5000 1022 3623 355 64.3 MiB 0.25 0.00 8.64473 -188.25 -8.64473 8.64473 2.52 0.000255711 0.000206434 0.0104988 0.00889174 40 3355 32 6.79088e+06 296384 706193. 2443.58 66.18 0.406963 0.383136 26254 175826 -1 3182 18 1306 4145 285809 60984 7.67991 7.67991 -176.515 -7.67991 0 0 926341. 3205.33 1.28 0.13 0.31 -1 -1 1.28 0.0899599 0.0883922 147 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 29.36 vpr 64.37 MiB -1 -1 0.50 22040 13 1.59 -1 -1 36852 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 25.7 MiB 7.97 1264 9385 2386 5811 1188 64.4 MiB 0.16 0.00 8.01335 -174.221 -8.01335 8.01335 2.10 0.000251256 0.000208167 0.113164 0.110591 38 3415 21 6.79088e+06 282912 678818. 2348.85 7.71 0.337982 0.325943 25966 169698 -1 2763 21 1340 3969 196219 45514 7.08901 7.08901 -167.166 -7.08901 0 0 902133. 3121.57 1.13 0.16 0.49 -1 -1 1.13 0.312205 0.310521 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 25.44 vpr 63.90 MiB -1 -1 0.53 21584 12 0.78 -1 -1 36568 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 25.4 MiB 6.39 1082 7177 1879 4686 612 63.9 MiB 0.12 0.00 7.46481 -154.166 -7.46481 7.46481 2.48 0.000265814 0.00022923 0.011956 0.010091 38 2803 27 6.79088e+06 242496 678818. 2348.85 7.97 0.276848 0.267483 25966 169698 -1 2280 16 1197 2964 157668 36113 6.25871 6.25871 -141.46 -6.25871 0 0 902133. 3121.57 1.26 0.02 0.39 -1 -1 1.26 0.00697017 0.00630815 111 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 40.48 vpr 63.79 MiB -1 -1 0.69 21432 11 0.70 -1 -1 36752 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 25.1 MiB 4.85 795 3896 739 3108 49 63.8 MiB 0.11 0.00 6.53043 -137.046 -6.53043 6.53043 2.89 0.00018483 0.000148471 0.088664 0.0875687 38 2455 21 6.79088e+06 188608 678818. 2348.85 24.85 0.488295 0.472963 25966 169698 -1 1914 16 1035 2541 117928 30509 5.86813 5.86813 -135.756 -5.86813 0 0 902133. 3121.57 1.50 0.07 0.36 -1 -1 1.50 0.0457419 0.0445629 98 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 28.15 vpr 64.36 MiB -1 -1 0.80 21736 13 1.27 -1 -1 36680 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65904 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 25.7 MiB 3.98 1198 13077 3554 7195 2328 64.4 MiB 0.27 0.00 8.26103 -160.93 -8.26103 8.26103 2.16 0.000270348 0.000226147 0.216508 0.212863 34 3863 44 6.79088e+06 282912 618332. 2139.56 11.91 0.46639 0.418887 25102 150614 -1 2972 18 1580 4441 276457 61802 7.17157 7.17157 -154.867 -7.17157 0 0 787024. 2723.27 1.04 0.15 0.57 -1 -1 1.04 0.0123437 0.0113039 143 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 22.20 vpr 63.58 MiB -1 -1 0.76 21432 10 0.46 -1 -1 36424 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 7.21 954 8046 2043 4866 1137 63.6 MiB 0.10 0.00 6.11522 -126.764 -6.11522 6.11522 2.97 0.000210845 0.000158605 0.0119812 0.00979056 30 2468 23 6.79088e+06 229024 556674. 1926.21 4.31 0.191789 0.185121 24526 138013 -1 2106 17 967 2467 126790 28864 5.15193 5.15193 -122.814 -5.15193 0 0 706193. 2443.58 0.68 0.03 0.18 -1 -1 0.68 0.0132977 0.0121969 101 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 34.04 vpr 63.78 MiB -1 -1 0.81 21280 14 0.69 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 25.1 MiB 10.50 1162 8092 2174 5283 635 63.8 MiB 0.13 0.00 7.73405 -163.867 -7.73405 7.73405 2.31 0.000215391 0.000175772 0.0132003 0.0109805 36 2830 21 6.79088e+06 242496 648988. 2245.63 10.65 0.0705317 0.0597081 25390 158009 -1 2507 18 1054 2739 161347 36131 6.99942 6.99942 -158.459 -6.99942 0 0 828058. 2865.25 1.19 0.17 0.55 -1 -1 1.19 0.137354 0.0138083 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 27.37 vpr 64.03 MiB -1 -1 0.58 21888 13 1.03 -1 -1 36536 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 25.4 MiB 9.35 1137 9083 2001 6216 866 64.0 MiB 0.11 0.00 8.08721 -167.06 -8.08721 8.08721 2.75 0.000272858 0.000227797 0.0792009 0.0127277 46 2776 17 6.79088e+06 269440 828058. 2865.25 6.76 0.137092 0.0627626 27406 200422 -1 2419 14 1059 2826 147207 32803 6.97485 6.97485 -157.217 -6.97485 0 0 1.01997e+06 3529.29 1.32 0.19 0.33 -1 -1 1.32 0.162164 0.0134858 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 51.31 vpr 63.60 MiB -1 -1 0.88 21432 12 0.77 -1 -1 36244 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65124 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 25.1 MiB 12.49 1082 7476 1931 4630 915 63.6 MiB 0.38 0.11 6.65573 -144.442 -6.65573 6.65573 2.90 0.000188455 0.00015255 0.200067 0.00936333 36 2682 32 6.79088e+06 229024 648988. 2245.63 25.83 0.406768 0.201892 25390 158009 -1 2393 30 1144 2885 386195 181882 5.65673 5.65673 -137.02 -5.65673 0 0 828058. 2865.25 0.83 0.28 0.29 -1 -1 0.83 0.12046 0.118518 99 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 25.34 vpr 64.32 MiB -1 -1 0.61 21584 12 0.58 -1 -1 37044 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 25.6 MiB 7.32 1119 6134 1379 4379 376 64.3 MiB 0.21 0.00 7.01038 -154.061 -7.01038 7.01038 2.75 0.000112302 8.9372e-05 0.0111242 0.00931707 38 2950 24 6.79088e+06 242496 678818. 2348.85 5.96 0.16096 0.0705324 25966 169698 -1 2464 16 1172 3380 179416 40524 6.07958 6.07958 -148.005 -6.07958 0 0 902133. 3121.57 1.07 0.14 0.34 -1 -1 1.07 0.0176994 0.016164 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 27.67 vpr 64.27 MiB -1 -1 0.75 21888 13 0.85 -1 -1 36472 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 25.6 MiB 4.30 1249 12503 3919 6242 2342 64.3 MiB 0.32 0.00 7.84749 -165.919 -7.84749 7.84749 2.33 0.000261365 0.000210017 0.162284 0.0163846 38 3454 36 6.79088e+06 269440 678818. 2348.85 10.41 0.400356 0.244355 25966 169698 -1 2838 16 1332 3829 207412 46302 6.78001 6.78001 -155.304 -6.78001 0 0 902133. 3121.57 1.27 0.27 0.32 -1 -1 1.27 0.110172 0.0149654 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 28.79 vpr 63.38 MiB -1 -1 0.51 21280 11 0.77 -1 -1 36240 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64896 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 24.8 MiB 8.13 975 11260 3989 5096 2175 63.4 MiB 0.26 0.00 6.23648 -144.813 -6.23648 6.23648 2.69 0.000179694 0.000144289 0.0150163 0.0124489 38 2971 28 6.79088e+06 215552 678818. 2348.85 8.23 0.613452 0.59947 25966 169698 -1 2312 17 1336 3500 191962 44203 5.4461 5.4461 -139.775 -5.4461 0 0 902133. 3121.57 1.32 0.20 0.31 -1 -1 1.32 0.159588 0.158092 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 69.78 vpr 64.03 MiB -1 -1 0.82 21432 13 0.85 -1 -1 36252 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 25.4 MiB 9.17 1138 8360 2130 5255 975 64.0 MiB 0.04 0.00 7.72657 -166.89 -7.72657 7.72657 2.07 0.000222629 0.000183485 0.00710553 0.00589471 38 3105 26 6.79088e+06 202080 678818. 2348.85 48.20 0.559157 0.539576 25966 169698 -1 2590 15 1182 3141 185601 42452 6.83149 6.83149 -159.702 -6.83149 0 0 902133. 3121.57 0.98 0.08 0.25 -1 -1 0.98 0.0127724 0.0115959 113 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 82.43 vpr 64.21 MiB -1 -1 0.51 21736 13 0.78 -1 -1 36796 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 25.6 MiB 4.00 1313 11963 3400 6650 1913 64.2 MiB 0.30 0.00 7.85887 -174.519 -7.85887 7.85887 2.35 0.00031479 0.000205969 0.0200107 0.0165406 30 4568 41 6.79088e+06 255968 556674. 1926.21 66.34 0.871574 0.572404 24526 138013 -1 3314 37 2252 6875 999408 364248 7.16049 7.16049 -172.992 -7.16049 0 0 706193. 2443.58 1.19 0.71 0.19 -1 -1 1.19 0.232466 0.230096 136 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 36.68 vpr 63.86 MiB -1 -1 0.58 21584 11 0.65 -1 -1 36244 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 25.3 MiB 6.41 1115 11432 3871 5660 1901 63.9 MiB 0.19 0.00 6.26054 -131.434 -6.26054 6.26054 2.71 0.000213964 0.000174081 0.0171196 0.0142019 34 3221 43 6.79088e+06 255968 618332. 2139.56 18.36 0.339668 0.318575 25102 150614 -1 2706 20 1337 3963 285622 59780 5.35984 5.35984 -129.56 -5.35984 0 0 787024. 2723.27 1.06 0.35 0.30 -1 -1 1.06 0.0174185 0.0156703 116 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 25.67 vpr 64.23 MiB -1 -1 0.70 22192 14 1.04 -1 -1 36904 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 25.6 MiB 6.96 1385 10647 2557 6767 1323 64.2 MiB 0.25 0.00 8.80331 -192.733 -8.80331 8.80331 2.81 0.000276201 0.000229648 0.0891363 0.0857842 30 3986 28 6.79088e+06 309856 556674. 1926.21 6.57 0.245103 0.23526 24526 138013 -1 3287 25 1652 4416 358935 112256 7.64841 7.64841 -182.338 -7.64841 0 0 706193. 2443.58 0.79 0.19 0.41 -1 -1 0.79 0.104946 0.102389 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 37.72 vpr 63.71 MiB -1 -1 0.54 21128 12 0.61 -1 -1 36272 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 25.1 MiB 9.80 1086 12186 3312 7382 1492 63.7 MiB 0.33 0.00 6.63439 -153.849 -6.63439 6.63439 3.18 0.000183914 0.000147091 0.0156249 0.0128517 36 2948 49 6.79088e+06 255968 648988. 2245.63 16.62 0.153242 0.0646456 25390 158009 -1 2400 28 1086 2531 308355 129895 5.82549 5.82549 -143.643 -5.82549 0 0 828058. 2865.25 0.91 0.30 0.42 -1 -1 0.91 0.0542581 0.052464 106 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 68.05 vpr 64.02 MiB -1 -1 0.65 22192 13 1.09 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 25.4 MiB 5.73 1327 11796 3119 6792 1885 64.0 MiB 0.28 0.00 8.16138 -171.4 -8.16138 8.16138 2.39 0.000130482 9.8505e-05 0.0195796 0.0155773 36 4119 25 6.79088e+06 269440 648988. 2245.63 49.95 0.617249 0.533045 25390 158009 -1 3227 18 1447 4088 298721 67832 7.16403 7.16403 -164.556 -7.16403 0 0 828058. 2865.25 1.06 0.36 0.45 -1 -1 1.06 0.0159327 0.0141426 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 43.78 vpr 63.73 MiB -1 -1 0.59 21432 13 0.65 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 25.1 MiB 4.97 1047 11613 3365 5842 2406 63.7 MiB 0.16 0.00 7.82359 -169.628 -7.82359 7.82359 2.41 0.000227712 0.000190496 0.0538307 0.0511428 34 3044 39 6.79088e+06 269440 618332. 2139.56 27.45 0.668463 0.411437 25102 150614 -1 2691 21 1199 3043 213784 46250 7.08896 7.08896 -169.68 -7.08896 0 0 787024. 2723.27 0.99 0.24 0.25 -1 -1 0.99 0.0156106 0.0141582 107 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 51.44 vpr 63.93 MiB -1 -1 0.65 21888 12 0.73 -1 -1 36804 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 25.4 MiB 6.07 1272 8543 2219 5545 779 63.9 MiB 0.13 0.00 7.47927 -162.601 -7.47927 7.47927 2.32 0.000242842 0.000198714 0.015874 0.0134652 30 3408 29 6.79088e+06 255968 556674. 1926.21 33.94 0.61366 0.599782 24526 138013 -1 2718 21 1487 4408 233239 51727 6.49119 6.49119 -152.452 -6.49119 0 0 706193. 2443.58 0.91 0.15 0.22 -1 -1 0.91 0.0120418 0.0107914 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 28.74 vpr 64.81 MiB -1 -1 0.80 22496 15 1.59 -1 -1 36820 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66364 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 26.2 MiB 5.00 1539 10979 3042 6587 1350 64.8 MiB 0.23 0.00 9.52142 -198.607 -9.52142 9.52142 2.32 0.000300575 0.00024672 0.0234605 0.0197836 38 4388 50 6.79088e+06 336800 678818. 2348.85 11.62 0.253926 0.137742 25966 169698 -1 3570 19 1907 5785 301624 67256 8.06351 8.06351 -186.424 -8.06351 0 0 902133. 3121.57 1.08 0.27 0.41 -1 -1 1.08 0.0828552 0.0808869 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 23.41 vpr 63.17 MiB -1 -1 0.39 21280 10 0.31 -1 -1 36224 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64688 30 32 174 206 1 133 73 17 17 289 -1 unnamed_device 24.7 MiB 6.67 627 9953 2899 5238 1816 63.2 MiB 0.10 0.00 4.79366 -113.325 -4.79366 4.79366 2.34 0.000135958 0.000107489 0.0696102 0.06753 34 1992 42 6.79088e+06 148192 618332. 2139.56 6.04 0.106627 0.098773 25102 150614 -1 1541 15 725 1603 89087 22561 4.51496 4.51496 -114.565 -4.51496 0 0 787024. 2723.27 1.19 0.19 0.30 -1 -1 1.19 0.00914581 0.0083407 65 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 23.14 vpr 63.53 MiB -1 -1 0.64 21584 13 0.63 -1 -1 36340 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 25.0 MiB 5.06 1062 12416 3908 6746 1762 63.5 MiB 0.15 0.00 7.81527 -160.852 -7.81527 7.81527 2.45 0.000206254 0.000159013 0.0185229 0.014972 36 2664 19 6.79088e+06 229024 648988. 2245.63 7.43 0.192552 0.180408 25390 158009 -1 2364 17 1084 2673 155516 35420 6.83498 6.83498 -156.84 -6.83498 0 0 828058. 2865.25 1.03 0.10 0.26 -1 -1 1.03 0.0146921 0.0134424 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 34.53 vpr 63.93 MiB -1 -1 0.66 21584 12 0.63 -1 -1 36380 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.4 MiB 7.54 1159 7736 1879 5232 625 63.9 MiB 0.49 0.00 7.13237 -158.608 -7.13237 7.13237 2.95 0.000210627 0.000169769 0.00960852 0.00787974 34 3355 47 6.79088e+06 242496 618332. 2139.56 14.32 0.116058 0.102759 25102 150614 -1 2853 20 1620 4022 273560 59015 6.28323 6.28323 -157.495 -6.28323 0 0 787024. 2723.27 1.12 0.29 0.25 -1 -1 1.12 0.0213319 0.0196772 117 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 18.54 vpr 63.36 MiB -1 -1 0.47 21280 9 0.55 -1 -1 36084 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 24.8 MiB 3.64 683 6711 1744 4492 475 63.4 MiB 0.60 0.00 5.04099 -94.9896 -5.04099 5.04099 2.25 7.3999e-05 5.8196e-05 0.155318 0.00645552 28 2279 50 6.79088e+06 242496 531479. 1839.03 3.90 0.326083 0.0386991 23950 126010 -1 1882 35 1206 3337 388976 144017 4.77249 4.77249 -103.451 -4.77249 0 0 648988. 2245.63 0.82 0.16 0.30 -1 -1 0.82 0.00993864 0.00876295 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 29.40 vpr 64.38 MiB -1 -1 0.55 21888 12 1.10 -1 -1 36540 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 25.6 MiB 5.88 1287 10501 2542 6098 1861 64.4 MiB 0.15 0.00 7.44518 -164.845 -7.44518 7.44518 3.10 0.000112587 8.9592e-05 0.0096715 0.0080076 46 3522 28 6.79088e+06 282912 828058. 2865.25 9.91 0.399568 0.383678 27406 200422 -1 2824 20 1482 4119 210242 47127 6.41977 6.41977 -155.05 -6.41977 0 0 1.01997e+06 3529.29 1.30 0.09 0.53 -1 -1 1.30 0.0267084 0.0249463 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 29.42 vpr 64.29 MiB -1 -1 0.57 22344 13 0.97 -1 -1 36388 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 25.6 MiB 7.07 1313 6409 1340 4499 570 64.3 MiB 0.15 0.00 8.4064 -173.711 -8.4064 8.4064 2.11 0.000266612 0.000223623 0.0579655 0.0098834 36 3598 20 6.79088e+06 296384 648988. 2245.63 11.51 0.354726 0.29688 25390 158009 -1 3137 19 1415 4009 239624 53054 7.719 7.719 -169.02 -7.719 0 0 828058. 2865.25 0.89 0.21 0.23 -1 -1 0.89 0.0205568 0.0188058 147 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 36.82 vpr 64.11 MiB -1 -1 0.39 21280 1 0.15 -1 -1 33932 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 25.3 MiB 10.99 991 16773 4981 8552 3240 64.1 MiB 0.17 0.00 5.46262 -158.993 -5.46262 5.46262 2.39 0.000166257 0.00013232 0.0170672 0.0139707 30 2828 34 6.87369e+06 363320 556674. 1926.21 16.16 0.628108 0.614131 25186 138497 -1 1951 21 1455 2342 135152 34327 4.306 4.306 -144.582 -4.306 0 0 706193. 2443.58 0.90 0.05 0.21 -1 -1 0.90 0.0091799 0.00828407 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 23.92 vpr 64.31 MiB -1 -1 0.32 21280 1 0.03 -1 -1 33704 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 25.8 MiB 9.80 1105 15395 5029 8642 1724 64.3 MiB 0.19 0.00 4.6569 -139.628 -4.6569 4.6569 2.33 0.000183779 0.000149981 0.0159037 0.0129477 34 2743 24 6.87369e+06 335372 618332. 2139.56 4.02 0.236274 0.165765 25762 151098 -1 2373 20 1798 2701 226002 50787 4.34166 4.34166 -150.553 -4.34166 0 0 787024. 2723.27 0.88 0.11 0.32 -1 -1 0.88 0.0278436 0.0102401 141 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 23.13 vpr 64.22 MiB -1 -1 0.64 21280 1 0.07 -1 -1 33484 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.5 MiB 8.21 973 9571 2499 6619 453 64.2 MiB 0.13 0.00 4.36457 -122.38 -4.36457 4.36457 2.58 0.000149868 0.000118135 0.010994 0.00912159 34 2446 23 6.87369e+06 293451 618332. 2139.56 4.31 0.0465469 0.0389704 25762 151098 -1 1989 21 1377 1840 125121 30167 3.85196 3.85196 -122.838 -3.85196 0 0 787024. 2723.27 1.13 0.06 0.29 -1 -1 1.13 0.0100137 0.00865675 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 18.42 vpr 64.22 MiB -1 -1 0.26 21280 1 0.14 -1 -1 33676 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 25.5 MiB 3.14 962 13557 3889 7576 2092 64.2 MiB 0.30 0.00 4.63038 -127.857 -4.63038 4.63038 2.75 0.00015505 0.000122539 0.0115351 0.00925165 34 2292 25 6.87369e+06 405241 618332. 2139.56 3.84 0.350809 0.342104 25762 151098 -1 1968 20 1368 2519 188672 42105 3.8044 3.8044 -122.158 -3.8044 0 0 787024. 2723.27 0.95 0.05 0.37 -1 -1 0.95 0.0107964 0.00957934 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 20.87 vpr 64.36 MiB -1 -1 0.44 21280 1 0.19 -1 -1 33704 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.6 MiB 4.87 1039 17023 5711 8892 2420 64.4 MiB 0.22 0.00 4.54412 -133.694 -4.54412 4.54412 3.05 0.000166785 0.000133977 0.114843 0.0582197 34 2709 22 6.87369e+06 377294 618332. 2139.56 4.64 0.265154 0.201143 25762 151098 -1 2243 23 1783 3463 258575 57562 3.5348 3.5348 -127.602 -3.5348 0 0 787024. 2723.27 1.07 0.21 0.47 -1 -1 1.07 0.086927 0.0854641 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 17.64 vpr 64.25 MiB -1 -1 0.53 21432 1 0.06 -1 -1 33692 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 25.6 MiB 4.93 1055 17134 4716 10280 2138 64.2 MiB 0.33 0.00 3.30607 -118.576 -3.30607 3.30607 2.42 0.000174675 0.000142387 0.0411234 0.0379096 30 2419 18 6.87369e+06 419215 556674. 1926.21 2.66 0.2291 0.221514 25186 138497 -1 1992 20 1192 2027 120521 27314 2.73471 2.73471 -114.003 -2.73471 0 0 706193. 2443.58 1.12 0.03 0.35 -1 -1 1.12 0.0111662 0.00984468 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 21.59 vpr 63.89 MiB -1 -1 0.63 21280 1 0.20 -1 -1 34148 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.2 MiB 7.61 598 11532 3252 7421 859 63.9 MiB 0.16 0.00 3.87934 -104.974 -3.87934 3.87934 2.58 0.000132466 0.000103121 0.0101505 0.00808648 34 1593 23 6.87369e+06 265503 618332. 2139.56 3.70 0.325426 0.318722 25762 151098 -1 1264 18 995 1650 93834 24428 2.92396 2.92396 -98.013 -2.92396 0 0 787024. 2723.27 0.74 0.08 0.34 -1 -1 0.74 0.00893896 0.00791239 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 17.49 vpr 64.05 MiB -1 -1 0.57 21280 1 0.10 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.5 MiB 2.68 978 15431 4433 8823 2175 64.1 MiB 0.12 0.00 3.50695 -106.713 -3.50695 3.50695 2.58 0.000143358 0.000114212 0.0207569 0.0181229 34 2114 20 6.87369e+06 447163 618332. 2139.56 4.43 0.177116 0.167919 25762 151098 -1 1814 17 965 1627 111277 25198 2.59636 2.59636 -97.5085 -2.59636 0 0 787024. 2723.27 0.84 0.06 0.40 -1 -1 0.84 0.00819473 0.00710164 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 22.87 vpr 64.05 MiB -1 -1 0.51 21280 1 0.09 -1 -1 33892 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 25.6 MiB 7.76 916 12980 4301 6644 2035 64.1 MiB 0.19 0.00 3.30197 -112.934 -3.30197 3.30197 2.91 6.6029e-05 5.1628e-05 0.121977 0.119214 34 2285 22 6.87369e+06 237555 618332. 2139.56 4.64 0.160641 0.151527 25762 151098 -1 1949 21 1338 1995 161157 36615 3.20191 3.20191 -121.06 -3.20191 0 0 787024. 2723.27 1.09 0.11 0.28 -1 -1 1.09 0.0102387 0.00892518 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 27.58 vpr 63.84 MiB -1 -1 0.66 21280 1 0.02 -1 -1 33680 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 25.3 MiB 14.09 944 11432 3128 6967 1337 63.8 MiB 0.03 0.00 4.11183 -135.597 -4.11183 4.11183 2.46 6.5683e-05 5.0992e-05 0.00516988 0.00410632 34 2163 22 6.87369e+06 223581 618332. 2139.56 4.09 0.166875 0.159829 25762 151098 -1 1889 22 1377 2269 183926 40856 2.87696 2.87696 -119.913 -2.87696 0 0 787024. 2723.27 0.83 0.11 0.22 -1 -1 0.83 0.0109243 0.00962712 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 24.39 vpr 63.82 MiB -1 -1 0.39 21128 1 0.08 -1 -1 33864 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 25.3 MiB 10.48 698 4228 848 3032 348 63.8 MiB 0.01 0.00 4.05863 -116.721 -4.05863 4.05863 2.58 6.9263e-05 5.3973e-05 0.00246885 0.00201753 34 1839 40 6.87369e+06 223581 618332. 2139.56 3.70 0.308414 0.300163 25762 151098 -1 1593 21 1044 1703 118400 27927 2.97416 2.97416 -108.479 -2.97416 0 0 787024. 2723.27 1.08 0.05 0.29 -1 -1 1.08 0.0264197 0.00935091 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 23.14 vpr 63.97 MiB -1 -1 0.60 21432 1 0.07 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.3 MiB 7.30 793 8131 1974 5384 773 64.0 MiB 0.11 0.00 3.6704 -113.179 -3.6704 3.6704 2.43 0.000148922 0.000109591 0.00809364 0.00658796 34 2134 22 6.87369e+06 237555 618332. 2139.56 4.88 0.405053 0.397143 25762 151098 -1 1742 20 1056 1506 111588 26371 3.35341 3.35341 -115.585 -3.35341 0 0 787024. 2723.27 1.40 0.02 0.28 -1 -1 1.40 0.00544739 0.00485243 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 30.26 vpr 64.30 MiB -1 -1 0.40 21128 1 0.27 -1 -1 33652 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.6 MiB 12.21 837 15063 3948 9014 2101 64.3 MiB 0.31 0.00 4.17399 -130.445 -4.17399 4.17399 2.86 9.0849e-05 7.2602e-05 0.0152808 0.0123649 36 2644 26 6.87369e+06 321398 648988. 2245.63 6.80 0.23074 0.124605 26050 158493 -1 2067 24 1964 3050 211379 51988 3.51651 3.51651 -124.444 -3.51651 0 0 828058. 2865.25 0.73 0.27 0.29 -1 -1 0.73 0.0133495 0.0117129 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 29.21 vpr 64.17 MiB -1 -1 0.50 21432 1 0.19 -1 -1 33724 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.5 MiB 8.83 872 16727 4869 9293 2565 64.2 MiB 0.25 0.00 4.77648 -139.073 -4.77648 4.77648 3.02 0.000163405 0.000130951 0.0152816 0.0124366 30 2490 24 6.87369e+06 433189 556674. 1926.21 10.27 0.0733525 0.061115 25186 138497 -1 1883 19 1342 2199 140123 33008 4.01576 4.01576 -135.5 -4.01576 0 0 706193. 2443.58 0.78 0.09 0.33 -1 -1 0.78 0.0109592 0.00960836 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 17.20 vpr 63.62 MiB -1 -1 0.49 21280 1 0.11 -1 -1 33732 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 25.0 MiB 5.52 782 10916 2876 6758 1282 63.6 MiB 0.20 0.00 3.26207 -99.6514 -3.26207 3.26207 2.38 0.000190873 0.000158989 0.0300257 0.0281333 32 1990 21 6.87369e+06 265503 586450. 2029.24 2.55 0.0521373 0.0467142 25474 144626 -1 1683 21 1109 1760 137076 31622 2.84596 2.84596 -100.232 -2.84596 0 0 744469. 2576.02 0.66 0.18 0.32 -1 -1 0.66 0.00850023 0.00740987 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 20.16 vpr 64.47 MiB -1 -1 0.42 21280 1 0.12 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.8 MiB 6.25 1043 16273 5726 7876 2671 64.5 MiB 0.21 0.00 3.8137 -126.628 -3.8137 3.8137 2.28 0.000170614 0.000137127 0.0764758 0.073383 32 2878 41 6.87369e+06 335372 586450. 2029.24 2.74 0.112452 0.103721 25474 144626 -1 2322 22 1768 3019 252321 57893 3.36621 3.36621 -127.403 -3.36621 0 0 744469. 2576.02 1.18 0.37 0.18 -1 -1 1.18 0.0109143 0.00938248 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 29.38 vpr 64.13 MiB -1 -1 0.54 21432 1 0.16 -1 -1 33608 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 13.99 1087 9571 2614 6264 693 64.1 MiB 0.23 0.00 4.17947 -136.952 -4.17947 4.17947 2.29 0.000162453 0.000130153 0.00622417 0.00504765 34 2708 23 6.87369e+06 293451 618332. 2139.56 4.96 0.05586 0.0468219 25762 151098 -1 2252 20 1534 2283 175831 39652 3.24661 3.24661 -128.103 -3.24661 0 0 787024. 2723.27 0.82 0.23 0.45 -1 -1 0.82 0.0120199 0.010537 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 23.86 vpr 63.93 MiB -1 -1 0.29 21584 1 0.31 -1 -1 33716 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 25.3 MiB 8.52 699 8993 2148 6078 767 63.9 MiB 0.24 0.00 3.09156 -107.654 -3.09156 3.09156 2.68 0.000158125 0.00012581 0.00826315 0.006625 34 2013 25 6.87369e+06 391268 618332. 2139.56 4.82 0.210333 0.202125 25762 151098 -1 1669 19 1066 1662 108956 26905 2.19587 2.19587 -100.714 -2.19587 0 0 787024. 2723.27 1.16 0.16 0.28 -1 -1 1.16 0.0101906 0.00893816 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 14.33 vpr 63.51 MiB -1 -1 0.45 21128 1 0.20 -1 -1 33724 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65032 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 25.0 MiB 1.87 552 9196 3320 4707 1169 63.5 MiB 0.24 0.00 2.58823 -85.0004 -2.58823 2.58823 2.62 0.00012371 9.5239e-05 0.00779298 0.00618129 30 1296 20 6.87369e+06 195634 556674. 1926.21 2.13 0.0269794 0.0219935 25186 138497 -1 1079 19 533 777 51739 12120 1.94352 1.94352 -83.1698 -1.94352 0 0 706193. 2443.58 1.04 0.07 0.44 -1 -1 1.04 0.00518792 0.00460682 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 24.87 vpr 63.97 MiB -1 -1 0.52 21128 1 0.13 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 9.81 952 10940 3346 6666 928 64.0 MiB 0.13 0.00 5.00887 -150.561 -5.00887 5.00887 2.38 0.000146586 0.000117062 0.0105465 0.00851292 34 2258 24 6.87369e+06 265503 618332. 2139.56 4.47 0.0440352 0.0362521 25762 151098 -1 1964 21 1126 1675 111074 27347 3.69321 3.69321 -139.902 -3.69321 0 0 787024. 2723.27 0.92 0.07 0.32 -1 -1 0.92 0.0102893 0.00900734 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 14.42 vpr 64.21 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33812 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 2.84 1087 17427 4758 10581 2088 64.2 MiB 0.18 0.00 4.24609 -138.045 -4.24609 4.24609 2.22 0.000169902 0.000134969 0.0146762 0.0117861 32 2549 24 6.87369e+06 489084 586450. 2029.24 2.70 0.307655 0.300729 25474 144626 -1 2181 23 1617 2442 198435 44964 3.9297 3.9297 -134.381 -3.9297 0 0 744469. 2576.02 0.86 0.26 0.19 -1 -1 0.86 0.00896796 0.00785315 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 23.30 vpr 64.34 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33788 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 25.6 MiB 7.53 1158 12938 3721 7732 1485 64.3 MiB 0.21 0.00 4.29925 -134.625 -4.29925 4.29925 2.73 0.000196529 0.000158681 0.153724 0.151043 34 2953 28 6.87369e+06 307425 618332. 2139.56 5.01 0.303634 0.292188 25762 151098 -1 2435 18 1582 2467 217411 47399 3.76066 3.76066 -132.683 -3.76066 0 0 787024. 2723.27 0.93 0.15 0.13 -1 -1 0.93 0.0106301 0.00938089 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 17.81 vpr 63.55 MiB -1 -1 0.41 21280 1 0.03 -1 -1 34136 -1 -1 17 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 24.9 MiB 5.33 354 9555 3920 4765 870 63.6 MiB 0.13 0.00 2.60613 -72.0813 -2.60613 2.60613 2.49 0.000101463 7.7379e-05 0.109573 0.107996 30 1232 32 6.87369e+06 237555 556674. 1926.21 2.51 0.130498 0.125272 25186 138497 -1 874 22 615 899 53669 14593 2.25347 2.25347 -72.1647 -2.25347 0 0 706193. 2443.58 0.84 0.04 0.25 -1 -1 0.84 0.00714922 0.0061756 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 19.64 vpr 64.14 MiB -1 -1 0.34 21280 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.5 MiB 3.45 1058 9111 2260 6245 606 64.1 MiB 0.18 0.00 4.50666 -128.623 -4.50666 4.50666 2.81 7.3797e-05 5.7532e-05 0.0292749 0.0276202 34 2389 21 6.87369e+06 321398 618332. 2139.56 4.62 0.193589 0.185412 25762 151098 -1 2137 22 1445 2595 201568 45085 3.7324 3.7324 -123.569 -3.7324 0 0 787024. 2723.27 1.17 0.02 0.32 -1 -1 1.17 0.00605222 0.0053764 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 15.46 vpr 63.29 MiB -1 -1 0.38 20976 1 0.12 -1 -1 33784 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64808 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.55 446 9836 2914 4955 1967 63.3 MiB 0.05 0.00 2.58823 -76.6987 -2.58823 2.58823 2.93 9.893e-05 7.5625e-05 0.0230507 0.0215441 28 1286 19 6.87369e+06 167686 531479. 1839.03 2.51 0.0376124 0.0336914 24610 126494 -1 1088 15 585 680 59406 15832 2.02487 2.02487 -80.4549 -2.02487 0 0 648988. 2245.63 0.95 0.07 0.38 -1 -1 0.95 0.00637249 0.00552249 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 14.99 vpr 64.21 MiB -1 -1 0.52 21128 1 0.03 -1 -1 33528 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 25.5 MiB 2.60 1001 15430 4006 9830 1594 64.2 MiB 0.12 0.00 4.66212 -132.229 -4.66212 4.66212 2.37 0.000171177 0.000125981 0.013494 0.0108168 32 2320 23 6.87369e+06 419215 586450. 2029.24 2.87 0.168715 0.162025 25474 144626 -1 1958 19 984 1559 118404 26575 3.6508 3.6508 -122.317 -3.6508 0 0 744469. 2576.02 0.80 0.17 0.33 -1 -1 0.80 0.00997043 0.00873605 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 18.10 vpr 64.23 MiB -1 -1 0.40 21432 1 0.08 -1 -1 33776 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 2.89 1076 17591 5379 9750 2462 64.2 MiB 0.52 0.00 3.49633 -112.341 -3.49633 3.49633 2.77 7.6094e-05 5.8663e-05 0.00877982 0.00683959 34 2436 22 6.87369e+06 433189 618332. 2139.56 4.19 0.471368 0.463508 25762 151098 -1 2017 20 1232 2248 141825 33683 3.08856 3.08856 -109.053 -3.08856 0 0 787024. 2723.27 0.85 0.18 0.32 -1 -1 0.85 0.00999505 0.00875882 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 22.31 vpr 64.38 MiB -1 -1 0.29 21432 1 0.23 -1 -1 33700 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 25.8 MiB 5.34 1002 15824 5356 7353 3115 64.4 MiB 0.27 0.00 4.71758 -131.299 -4.71758 4.71758 2.71 0.000173243 0.000140509 0.141782 0.138865 34 2511 23 6.87369e+06 391268 618332. 2139.56 6.77 0.223662 0.213441 25762 151098 -1 2005 21 1353 2404 182427 42184 3.94976 3.94976 -127.416 -3.94976 0 0 787024. 2723.27 0.91 0.12 0.46 -1 -1 0.91 0.0549185 0.0535834 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 16.61 vpr 63.74 MiB -1 -1 0.50 21432 1 0.14 -1 -1 33824 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65272 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 25.0 MiB 3.16 723 7304 1770 4913 621 63.7 MiB 0.12 0.00 3.24007 -108.229 -3.24007 3.24007 2.29 0.000144569 0.000114815 0.00768406 0.0062006 34 1830 21 6.87369e+06 223581 618332. 2139.56 3.58 0.0480745 0.0398852 25762 151098 -1 1578 14 814 1319 84892 20527 2.77396 2.77396 -105.415 -2.77396 0 0 787024. 2723.27 0.91 0.02 0.44 -1 -1 0.91 0.00732863 0.00651873 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 16.14 vpr 63.80 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33528 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65336 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 25.3 MiB 4.10 669 13738 3602 8368 1768 63.8 MiB 0.16 0.00 3.22907 -99.5149 -3.22907 3.22907 2.28 6.4238e-05 4.8759e-05 0.00889745 0.0070061 30 1623 18 6.87369e+06 363320 556674. 1926.21 2.28 0.0798346 0.0744247 25186 138497 -1 1326 21 858 1419 92180 21062 2.71316 2.71316 -92.9909 -2.71316 0 0 706193. 2443.58 0.99 0.21 0.35 -1 -1 0.99 0.00829668 0.00697333 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 17.14 vpr 63.75 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33744 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 25.2 MiB 3.03 758 11698 3516 6781 1401 63.7 MiB 0.35 0.00 3.63766 -102.515 -3.63766 3.63766 2.72 0.000141617 0.000112184 0.0110367 0.00886746 32 2139 25 6.87369e+06 251529 586450. 2029.24 2.95 0.0334332 0.027644 25474 144626 -1 1714 22 1198 2121 189213 42791 3.08656 3.08656 -106.439 -3.08656 0 0 744469. 2576.02 0.84 0.04 0.22 -1 -1 0.84 0.00971103 0.00842229 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 15.67 vpr 63.91 MiB -1 -1 0.36 21128 1 0.05 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65440 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.2 MiB 2.65 760 11106 3371 5478 2257 63.9 MiB 0.28 0.00 4.03537 -119.574 -4.03537 4.03537 2.46 0.000135572 0.000106047 0.0107382 0.00864175 32 2134 23 6.87369e+06 237555 586450. 2029.24 2.86 0.13161 0.125728 25474 144626 -1 1727 20 1173 1954 154118 36053 2.84396 2.84396 -110.588 -2.84396 0 0 744469. 2576.02 1.06 0.31 0.50 -1 -1 1.06 0.00903045 0.00788851 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 15.11 vpr 64.00 MiB -1 -1 0.41 21280 1 0.12 -1 -1 33764 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 25.3 MiB 2.64 713 5831 1066 4417 348 64.0 MiB 0.03 0.00 3.5993 -106.942 -3.5993 3.5993 2.40 0.000171539 0.000140931 0.00556667 0.00456771 28 1996 18 6.87369e+06 363320 531479. 1839.03 3.27 0.103794 0.100207 24610 126494 -1 1700 22 1183 2030 135922 33143 3.06161 3.06161 -106.539 -3.06161 0 0 648988. 2245.63 0.80 0.07 0.27 -1 -1 0.80 0.00948447 0.00823742 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 22.03 vpr 63.85 MiB -1 -1 0.37 21128 1 0.28 -1 -1 33500 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 25.3 MiB 9.41 706 8402 1995 5635 772 63.9 MiB 0.12 0.00 3.04756 -96.0841 -3.04756 3.04756 2.70 0.000155535 0.000124263 0.00834491 0.00658225 30 1803 22 6.87369e+06 349346 556674. 1926.21 2.70 0.0339241 0.0280783 25186 138497 -1 1489 21 913 1418 77368 19017 2.25817 2.25817 -91.9004 -2.25817 0 0 706193. 2443.58 0.72 0.03 0.19 -1 -1 0.72 0.00919613 0.00801712 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 24.14 vpr 64.41 MiB -1 -1 0.37 21432 1 0.20 -1 -1 33972 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.6 MiB 11.77 1199 12548 3440 7715 1393 64.4 MiB 0.25 0.00 4.16289 -124.152 -4.16289 4.16289 2.19 9.1343e-05 7.2267e-05 0.00570294 0.0045507 32 3305 23 6.87369e+06 558954 586450. 2029.24 2.88 0.0342904 0.0287899 25474 144626 -1 2475 24 1659 3141 250353 54866 3.5931 3.5931 -123.591 -3.5931 0 0 744469. 2576.02 0.80 0.06 0.25 -1 -1 0.80 0.0126887 0.0110685 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 24.99 vpr 64.59 MiB -1 -1 0.33 21432 1 0.09 -1 -1 33724 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 25.9 MiB 10.97 1019 17476 4989 10107 2380 64.6 MiB 0.27 0.00 3.96554 -133.621 -3.96554 3.96554 2.71 0.000183749 0.000148034 0.0160662 0.0130401 34 2318 19 6.87369e+06 531006 618332. 2139.56 3.70 0.103257 0.0923802 25762 151098 -1 1994 20 1598 2530 167629 38388 3.16056 3.16056 -122.735 -3.16056 0 0 787024. 2723.27 0.74 0.14 0.38 -1 -1 0.74 0.111646 0.110121 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 21.76 vpr 64.04 MiB -1 -1 0.35 21280 1 0.03 -1 -1 33716 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.3 MiB 6.56 811 8306 2170 5113 1023 64.0 MiB 0.09 0.00 4.07373 -119.929 -4.07373 4.07373 2.23 0.000173477 0.000138782 0.00866396 0.00704272 34 2155 20 6.87369e+06 251529 618332. 2139.56 5.09 0.45008 0.441926 25762 151098 -1 1863 19 1282 1823 137204 32816 3.38021 3.38021 -121.441 -3.38021 0 0 787024. 2723.27 0.89 0.06 0.31 -1 -1 0.89 0.0090967 0.00803358 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 23.93 vpr 64.20 MiB -1 -1 0.55 21432 1 0.24 -1 -1 33736 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.6 MiB 8.06 977 12959 4558 6216 2185 64.2 MiB 0.29 0.00 3.77586 -121.537 -3.77586 3.77586 2.82 0.000204933 0.000167121 0.013641 0.0111008 34 2883 22 6.87369e+06 363320 618332. 2139.56 4.79 0.129067 0.11922 25762 151098 -1 2230 20 1564 2672 180642 43077 3.17786 3.17786 -118.463 -3.17786 0 0 787024. 2723.27 0.90 0.13 0.24 -1 -1 0.90 0.0111489 0.00981712 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 27.75 vpr 64.61 MiB -1 -1 0.58 21584 1 0.09 -1 -1 33832 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 25.8 MiB 12.30 1217 9058 2366 5991 701 64.6 MiB 0.11 0.00 5.67608 -170.045 -5.67608 5.67608 2.73 0.000179957 0.00014612 0.00584614 0.00468298 34 3293 23 6.87369e+06 349346 618332. 2139.56 4.81 0.269149 0.259578 25762 151098 -1 2796 22 2219 3285 287360 63069 5.1298 5.1298 -175.351 -5.1298 0 0 787024. 2723.27 1.10 0.17 0.26 -1 -1 1.10 0.120757 0.119223 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 28.13 vpr 64.49 MiB -1 -1 0.47 21736 1 0.12 -1 -1 33792 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 25.8 MiB 12.46 930 10341 2765 6600 976 64.5 MiB 0.18 0.00 5.24874 -156.327 -5.24874 5.24874 2.19 0.000201036 0.000162313 0.0085521 0.00689602 36 2493 27 6.87369e+06 377294 648988. 2245.63 5.33 0.0595267 0.0497657 26050 158493 -1 1987 21 1573 2425 167657 40241 4.67715 4.67715 -153.728 -4.67715 0 0 828058. 2865.25 0.99 0.36 0.21 -1 -1 0.99 0.121806 0.120326 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 22.64 vpr 64.09 MiB -1 -1 0.61 21432 1 0.10 -1 -1 33536 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 9.52 890 9838 2427 6571 840 64.1 MiB 0.21 0.00 4.12463 -126.459 -4.12463 4.12463 2.45 0.000172275 0.000139746 0.0110367 0.00908615 32 2860 24 6.87369e+06 349346 586450. 2029.24 3.08 0.0423773 0.0355873 25474 144626 -1 2227 21 1692 2813 220362 53108 3.62251 3.62251 -132.075 -3.62251 0 0 744469. 2576.02 0.90 0.13 0.50 -1 -1 0.90 0.00909422 0.00788212 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 22.68 vpr 64.16 MiB -1 -1 0.61 21128 1 0.11 -1 -1 33812 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 25.5 MiB 8.11 1030 14907 5658 7296 1953 64.2 MiB 0.17 0.00 4.31305 -116.7 -4.31305 4.31305 2.32 0.000149171 0.000118967 0.0139152 0.0112162 34 2414 26 6.87369e+06 279477 618332. 2139.56 4.51 0.178041 0.0453794 25762 151098 -1 2028 24 1457 2155 154286 36972 3.85476 3.85476 -121.754 -3.85476 0 0 787024. 2723.27 0.71 0.12 0.18 -1 -1 0.71 0.0775601 0.0762208 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 26.69 vpr 64.92 MiB -1 -1 0.41 21432 1 0.26 -1 -1 33948 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66476 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 26.2 MiB 10.57 1252 19142 5218 11863 2061 64.9 MiB 0.25 0.00 4.94161 -161.682 -4.94161 4.94161 2.70 0.000236376 0.000197878 0.0159381 0.012697 26 3662 47 6.87369e+06 531006 503264. 1741.40 5.64 0.0656135 0.0547177 24322 120374 -1 3019 24 2201 3522 390352 93116 4.62016 4.62016 -166.293 -4.62016 0 0 618332. 2139.56 0.61 0.43 0.16 -1 -1 0.61 0.016284 0.0143587 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 22.21 vpr 63.92 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33852 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 25.2 MiB 5.65 665 8827 1886 5968 973 63.9 MiB 0.18 0.00 3.55895 -103.54 -3.55895 3.55895 2.40 0.0001289 0.000102535 0.00744448 0.00593677 32 2162 45 6.87369e+06 307425 586450. 2029.24 2.23 0.0452005 0.0389452 25474 144626 -1 1638 24 1277 2195 166532 39561 2.88796 2.88796 -103.251 -2.88796 0 0 744469. 2576.02 0.94 0.28 0.25 -1 -1 0.94 0.159153 0.157628 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 27.15 vpr 64.17 MiB -1 -1 0.31 21584 1 0.06 -1 -1 33500 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.6 MiB 7.46 1143 8780 2224 5686 870 64.2 MiB 0.13 0.00 4.84783 -148.334 -4.84783 4.84783 2.41 8.0976e-05 6.3748e-05 0.00542575 0.00443272 30 2974 22 6.87369e+06 321398 556674. 1926.21 3.06 0.0345488 0.0292347 25186 138497 -1 2276 20 1319 1963 128114 29110 3.90446 3.90446 -137.638 -3.90446 0 0 706193. 2443.58 1.15 0.08 0.32 -1 -1 1.15 0.0585967 0.0572947 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 19.35 vpr 64.43 MiB -1 -1 0.48 21280 1 0.26 -1 -1 33996 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 25.6 MiB 5.83 1092 15207 4580 7502 3125 64.4 MiB 0.15 0.00 3.6664 -115.914 -3.6664 3.6664 2.54 0.00017133 0.000137374 0.0135402 0.0109293 30 2573 46 6.87369e+06 447163 556674. 1926.21 3.62 0.180732 0.17235 25186 138497 -1 2104 22 1306 2375 155359 38292 2.88001 2.88001 -108.543 -2.88001 0 0 706193. 2443.58 0.93 0.04 0.20 -1 -1 0.93 0.0114539 0.0100252 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 14.87 vpr 64.06 MiB -1 -1 0.51 21128 1 0.14 -1 -1 33724 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.3 MiB 2.40 951 7326 1464 5460 402 64.1 MiB 0.09 0.00 4.18575 -127.803 -4.18575 4.18575 1.82 0.000175655 0.000143574 0.0555812 0.0541994 34 2528 23 6.87369e+06 363320 618332. 2139.56 3.31 0.191298 0.183088 25762 151098 -1 2047 23 1405 2633 189987 44011 3.5621 3.5621 -123.698 -3.5621 0 0 787024. 2723.27 0.72 0.12 0.38 -1 -1 0.72 0.0114617 0.0100687 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 36.94 vpr 64.12 MiB -1 -1 0.51 21584 1 0.18 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65664 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 25.5 MiB 10.66 1138 14072 4363 7314 2395 64.1 MiB 0.29 0.00 5.07875 -152.281 -5.07875 5.07875 2.27 0.000170691 0.000137737 0.0148082 0.0120735 34 2622 19 6.87369e+06 307425 618332. 2139.56 4.22 0.16563 0.0454305 25762 151098 -1 2306 20 1280 1714 142445 32122 3.4645 3.4645 -130.908 -3.4645 0 0 787024. 2723.27 1.00 0.07 0.25 -1 -1 1.00 0.0121515 0.0107941 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 23.89 vpr 64.47 MiB -1 -1 0.25 21280 1 0.24 -1 -1 33852 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 25.8 MiB 8.95 892 17835 6311 8192 3332 64.5 MiB 0.23 0.00 3.76804 -119.452 -3.76804 3.76804 2.29 0.000167884 0.000134379 0.0160244 0.0129913 34 2804 46 6.87369e+06 447163 618332. 2139.56 5.31 0.199513 0.188489 25762 151098 -1 1968 21 1467 2565 178739 43690 3.35021 3.35021 -119.572 -3.35021 0 0 787024. 2723.27 0.96 0.10 0.20 -1 -1 0.96 0.0112241 0.00966769 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 21.50 vpr 64.41 MiB -1 -1 0.60 21584 1 0.03 -1 -1 33712 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.6 MiB 9.25 941 16971 5230 8707 3034 64.4 MiB 0.18 0.00 4.11773 -131.819 -4.11773 4.11773 1.81 0.000182521 0.000146926 0.0156153 0.0126952 34 2879 28 6.87369e+06 489084 618332. 2139.56 4.32 0.117275 0.105604 25762 151098 -1 2186 23 1729 2772 226088 51849 3.24691 3.24691 -123.814 -3.24691 0 0 787024. 2723.27 0.73 0.12 0.37 -1 -1 0.73 0.0764884 0.0747819 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 18.66 vpr 64.24 MiB -1 -1 0.37 21128 1 0.22 -1 -1 33856 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 25.5 MiB 3.14 948 15415 4265 8583 2567 64.2 MiB 0.23 0.00 4.39109 -128.888 -4.39109 4.39109 2.31 0.000152422 0.000121698 0.0131672 0.0107519 28 2279 18 6.87369e+06 461137 531479. 1839.03 2.50 0.164879 0.159291 24610 126494 -1 2106 19 1297 2273 152125 35569 3.8374 3.8374 -129.391 -3.8374 0 0 648988. 2245.63 0.94 0.23 0.39 -1 -1 0.94 0.199371 0.198145 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 20.30 vpr 64.19 MiB -1 -1 0.45 21432 1 0.14 -1 -1 33636 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.6 MiB 6.89 981 12560 3220 7625 1715 64.2 MiB 0.16 0.00 4.75658 -136.53 -4.75658 4.75658 1.94 0.000185334 0.00013945 0.0134098 0.0109114 34 2576 31 6.87369e+06 307425 618332. 2139.56 3.94 0.19211 0.181743 25762 151098 -1 2232 18 1502 2206 155865 36516 3.94506 3.94506 -130.167 -3.94506 0 0 787024. 2723.27 0.86 0.12 0.22 -1 -1 0.86 0.0607714 0.0595868 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 23.47 vpr 64.35 MiB -1 -1 0.69 21736 1 0.03 -1 -1 33836 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 25.8 MiB 7.13 1089 11617 3558 6983 1076 64.4 MiB 0.17 0.00 4.74348 -142.628 -4.74348 4.74348 2.12 0.000169749 0.000137229 0.0135104 0.0110986 34 3012 33 6.87369e+06 307425 618332. 2139.56 6.51 0.245812 0.234455 25762 151098 -1 2421 24 1896 3142 255518 58176 4.20536 4.20536 -145.105 -4.20536 0 0 787024. 2723.27 0.88 0.18 0.54 -1 -1 0.88 0.0886337 0.0869785 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 21.17 vpr 64.27 MiB -1 -1 0.31 21584 1 0.12 -1 -1 33668 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 25.6 MiB 8.03 1081 14779 5269 7600 1910 64.3 MiB 0.18 0.00 4.3693 -135.724 -4.3693 4.3693 2.21 0.00018211 0.000144551 0.0165506 0.0135388 34 3071 25 6.87369e+06 293451 618332. 2139.56 4.03 0.308197 0.246337 25762 151098 -1 2452 20 1602 2893 227755 52056 3.90206 3.90206 -134.338 -3.90206 0 0 787024. 2723.27 1.06 0.02 0.31 -1 -1 1.06 0.00672024 0.00600909 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 14.31 vpr 63.62 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33404 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 25.0 MiB 2.85 779 13883 3395 9668 820 63.6 MiB 0.39 0.00 3.5583 -108.13 -3.5583 3.5583 2.11 0.000129762 0.000102444 0.0112484 0.00892394 32 1947 23 6.87369e+06 307425 586450. 2029.24 2.62 0.0872094 0.0814203 25474 144626 -1 1653 18 1025 1710 137116 31761 2.96926 2.96926 -106.227 -2.96926 0 0 744469. 2576.02 0.86 0.18 0.33 -1 -1 0.86 0.00887165 0.00785178 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 24.94 vpr 64.17 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33920 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 25.6 MiB 6.05 963 13432 4412 7074 1946 64.2 MiB 0.38 0.00 3.7434 -132.085 -3.7434 3.7434 2.71 0.000152367 0.000121191 0.0136534 0.0110173 34 2552 22 6.87369e+06 251529 618332. 2139.56 4.28 0.106562 0.0961737 25762 151098 -1 2119 20 1604 2308 201181 43912 3.3618 3.3618 -131.165 -3.3618 0 0 787024. 2723.27 0.97 0.18 0.34 -1 -1 0.97 0.0126879 0.0108771 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 27.50 vpr 64.68 MiB -1 -1 0.58 21584 1 0.13 -1 -1 33676 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 25.9 MiB 10.07 1271 11983 3961 5911 2111 64.7 MiB 0.26 0.00 5.44288 -158.174 -5.44288 5.44288 2.43 8.7752e-05 6.9194e-05 0.122852 0.120327 36 3481 23 6.87369e+06 335372 648988. 2245.63 6.36 0.284489 0.273162 26050 158493 -1 2730 24 2175 3406 265530 61473 4.81335 4.81335 -159.454 -4.81335 0 0 828058. 2865.25 1.00 0.10 0.38 -1 -1 1.00 0.0148493 0.0131138 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 26.25 vpr 64.18 MiB -1 -1 0.38 21432 1 0.03 -1 -1 34124 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 9.39 1044 14048 3802 8919 1327 64.2 MiB 0.16 0.00 4.31147 -138.564 -4.31147 4.31147 2.23 8.601e-05 6.7813e-05 0.0096058 0.0076664 28 2413 22 6.87369e+06 475111 531479. 1839.03 2.67 0.208974 0.202307 24610 126494 -1 2220 20 1412 2227 166392 37304 3.00716 3.00716 -126.181 -3.00716 0 0 648988. 2245.63 0.66 0.13 0.27 -1 -1 0.66 0.0107818 0.00946197 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 15.88 vpr 64.02 MiB -1 -1 0.54 21128 1 0.03 -1 -1 33768 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 25.3 MiB 2.44 643 13911 3216 9368 1327 64.0 MiB 0.02 0.00 3.6213 -108.932 -3.6213 3.6213 2.13 5.8612e-05 4.5284e-05 0.00512171 0.00404163 28 2013 27 6.87369e+06 349346 531479. 1839.03 3.22 0.0320664 0.0264633 24610 126494 -1 1716 23 1345 2134 175226 47870 2.99626 2.99626 -111.937 -2.99626 0 0 648988. 2245.63 1.04 0.24 0.29 -1 -1 1.04 0.00901013 0.00774294 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 32.72 vpr 64.79 MiB -1 -1 0.66 21584 1 0.14 -1 -1 33960 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66348 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 26.1 MiB 16.94 1320 13157 3582 8208 1367 64.8 MiB 0.24 0.00 5.88501 -173.819 -5.88501 5.88501 2.08 0.000234908 0.000194653 0.0167643 0.0139545 36 3191 21 6.87369e+06 349346 648988. 2245.63 6.14 0.220988 0.208642 26050 158493 -1 2779 24 2351 3650 311794 67863 4.8519 4.8519 -164.233 -4.8519 0 0 828058. 2865.25 0.68 0.25 0.28 -1 -1 0.68 0.0150635 0.013257 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 22.57 vpr 64.25 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 25.5 MiB 10.07 982 19023 5630 11222 2171 64.2 MiB 0.25 0.00 4.64628 -141.602 -4.64628 4.64628 2.49 0.000164867 0.000130981 0.134591 0.131451 28 2297 23 6.87369e+06 489084 531479. 1839.03 2.50 0.158162 0.151353 24610 126494 -1 2086 21 1562 2642 173496 40703 3.9034 3.9034 -136.594 -3.9034 0 0 648988. 2245.63 0.61 0.07 0.18 -1 -1 0.61 0.0350567 0.0335832 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 15.57 vpr 63.76 MiB -1 -1 0.69 21128 1 0.02 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.0 MiB 3.06 766 11398 3000 7253 1145 63.8 MiB 0.04 0.00 3.5954 -102.128 -3.5954 3.5954 2.91 0.000123186 9.6567e-05 0.00521953 0.00410918 26 2180 25 6.87369e+06 335372 503264. 1741.40 3.23 0.0240276 0.0198909 24322 120374 -1 1815 20 1140 1925 162853 38227 3.43151 3.43151 -112.946 -3.43151 0 0 618332. 2139.56 0.72 0.09 0.23 -1 -1 0.72 0.00792622 0.00683717 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 20.97 vpr 64.29 MiB -1 -1 0.46 21432 1 0.05 -1 -1 33756 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.8 MiB 6.95 1098 18666 5476 10496 2694 64.3 MiB 0.32 0.00 5.27722 -139.12 -5.27722 5.27722 2.62 0.000168908 0.000136444 0.0162693 0.0131555 32 3049 25 6.87369e+06 517032 586450. 2029.24 3.25 0.0761952 0.0682264 25474 144626 -1 2273 23 1537 2878 240761 53474 4.42825 4.42825 -139.024 -4.42825 0 0 744469. 2576.02 1.12 0.17 0.36 -1 -1 1.12 0.0096377 0.00820186 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 17.36 vpr 63.61 MiB -1 -1 0.34 20976 1 0.21 -1 -1 33880 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.0 MiB 2.45 805 14303 4969 7161 2173 63.6 MiB 0.25 0.00 3.6144 -113.068 -3.6144 3.6144 2.47 0.000133477 0.00010393 0.108573 0.106008 34 2002 21 6.87369e+06 265503 618332. 2139.56 4.47 0.317148 0.309478 25762 151098 -1 1738 20 1190 2122 159718 35273 2.89096 2.89096 -110.154 -2.89096 0 0 787024. 2723.27 0.83 0.02 0.48 -1 -1 0.83 0.00441281 0.00379108 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 21.45 vpr 64.06 MiB -1 -1 0.54 21280 1 0.02 -1 -1 33644 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 25.3 MiB 8.50 838 14988 4128 9396 1464 64.1 MiB 0.22 0.00 3.91538 -116.007 -3.91538 3.91538 2.86 0.000177341 0.000130236 0.0111925 0.00880656 28 1968 20 6.87369e+06 475111 531479. 1839.03 2.54 0.105873 0.0996559 24610 126494 -1 1887 19 1129 2039 157359 35630 3.04726 3.04726 -113.863 -3.04726 0 0 648988. 2245.63 0.68 0.05 0.31 -1 -1 0.68 0.00905519 0.0079596 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 38.84 vpr 64.43 MiB -1 -1 0.39 21280 1 0.10 -1 -1 33832 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 25.6 MiB 14.50 1022 14221 4941 6601 2679 64.4 MiB 0.15 0.00 4.14789 -124.13 -4.14789 4.14789 2.22 0.000165242 0.000132585 0.0143373 0.0116609 34 2597 22 6.87369e+06 335372 618332. 2139.56 4.66 0.260767 0.251221 25762 151098 -1 2202 23 1894 2884 228158 51796 3.21181 3.21181 -117.514 -3.21181 0 0 787024. 2723.27 0.97 0.21 0.33 -1 -1 0.97 0.00826217 0.00730772 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 22.26 vpr 64.43 MiB -1 -1 0.69 21280 1 0.07 -1 -1 33840 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.6 MiB 8.13 981 14964 4061 9219 1684 64.4 MiB 0.16 0.00 4.38015 -143.22 -4.38015 4.38015 2.51 7.439e-05 5.8317e-05 0.00980464 0.0078887 34 2270 24 6.87369e+06 363320 618332. 2139.56 4.00 0.063303 0.054202 25762 151098 -1 1860 21 1373 2075 135251 32141 3.70116 3.70116 -134.582 -3.70116 0 0 787024. 2723.27 0.83 0.13 0.34 -1 -1 0.83 0.0103844 0.00902867 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 18.92 vpr 64.37 MiB -1 -1 0.48 21584 1 0.23 -1 -1 33540 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 25.6 MiB 7.52 1048 11719 3049 7703 967 64.4 MiB 0.32 0.00 4.78763 -143.617 -4.78763 4.78763 2.11 0.000174953 0.000139402 0.0491357 0.0469582 32 2790 38 6.87369e+06 377294 586450. 2029.24 2.78 0.100601 0.0930089 25474 144626 -1 2289 21 1558 2779 235785 52014 3.94076 3.94076 -140.873 -3.94076 0 0 744469. 2576.02 0.78 0.12 0.35 -1 -1 0.78 0.0135515 0.0112368 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 24.25 vpr 63.83 MiB -1 -1 0.38 21432 1 0.25 -1 -1 33980 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.3 MiB 11.11 879 8529 2069 5850 610 63.8 MiB 0.23 0.00 4.78272 -134.878 -4.78272 4.78272 2.20 0.000150234 0.000119581 0.0532462 0.0515203 34 2183 21 6.87369e+06 209608 618332. 2139.56 3.86 0.103417 0.0884825 25762 151098 -1 1835 19 952 1292 98617 22365 3.2292 3.2292 -117.412 -3.2292 0 0 787024. 2723.27 0.77 0.05 0.23 -1 -1 0.77 0.0322942 0.0311015 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 22.79 vpr 64.23 MiB -1 -1 0.38 21584 1 0.14 -1 -1 33752 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 25.5 MiB 9.37 834 6960 1607 4728 625 64.2 MiB 0.06 0.00 3.80246 -121.175 -3.80246 3.80246 1.93 0.000157813 0.000126288 0.00778018 0.00633874 34 2495 25 6.87369e+06 237555 618332. 2139.56 4.16 0.147391 0.138876 25762 151098 -1 2013 23 1489 2217 176461 41044 3.1862 3.1862 -121.365 -3.1862 0 0 787024. 2723.27 0.83 0.18 0.29 -1 -1 0.83 0.0998266 0.098435 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 22.54 vpr 64.34 MiB -1 -1 0.43 21584 1 0.11 -1 -1 33876 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 25.6 MiB 8.11 921 12141 3304 7964 873 64.3 MiB 0.24 0.00 3.48905 -102.447 -3.48905 3.48905 2.72 0.000179988 0.000141898 0.0105803 0.00845878 26 2465 24 6.87369e+06 475111 503264. 1741.40 3.82 0.071131 0.0645333 24322 120374 -1 2134 19 1258 2349 180203 40845 3.06356 3.06356 -107.013 -3.06356 0 0 618332. 2139.56 1.09 0.02 0.19 -1 -1 1.09 0.1333 0.13263 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 20.17 vpr 63.75 MiB -1 -1 0.45 21432 1 0.02 -1 -1 33560 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 25.0 MiB 6.99 887 17159 5443 8925 2791 63.8 MiB 0.18 0.00 4.16979 -108.155 -4.16979 4.16979 2.58 6.3706e-05 4.9913e-05 0.137375 0.135498 28 2132 25 6.87369e+06 489084 531479. 1839.03 2.77 0.201414 0.196002 24610 126494 -1 1890 23 1185 2097 149261 34011 3.5961 3.5961 -107.81 -3.5961 0 0 648988. 2245.63 1.13 0.09 0.27 -1 -1 1.13 0.00967635 0.00838358 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 23.82 vpr 63.89 MiB -1 -1 0.30 21432 1 0.11 -1 -1 33856 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 25.3 MiB 10.29 720 7853 2018 5047 788 63.9 MiB 0.22 0.00 4.09699 -121.029 -4.09699 4.09699 2.89 0.00014649 0.000117609 0.0557506 0.0542115 28 2181 20 6.87369e+06 237555 531479. 1839.03 3.52 0.0811081 0.0755246 24610 126494 -1 1811 24 1496 2619 190050 43819 3.00226 3.00226 -118.43 -3.00226 0 0 648988. 2245.63 0.85 0.13 0.25 -1 -1 0.85 0.0115239 0.0100459 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 24.07 vpr 64.30 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33704 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 25.6 MiB 9.88 1031 14256 4617 7292 2347 64.3 MiB 0.11 0.00 3.6774 -127.4 -3.6774 3.6774 2.71 0.000176986 0.000141073 0.00876203 0.00699472 34 2685 25 6.87369e+06 237555 618332. 2139.56 4.61 0.0513892 0.0424255 25762 151098 -1 2119 21 1403 2128 175919 39592 3.0892 3.0892 -123.982 -3.0892 0 0 787024. 2723.27 0.81 0.15 0.22 -1 -1 0.81 0.00764843 0.00655914 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 17.84 vpr 64.21 MiB -1 -1 0.50 21128 1 0.05 -1 -1 33940 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.5 MiB 2.66 1006 10105 2485 6935 685 64.2 MiB 0.18 0.00 4.52456 -130.912 -4.52456 4.52456 3.08 0.000193372 0.000158801 0.0778823 0.0759039 26 2792 34 6.87369e+06 433189 503264. 1741.40 5.02 0.209922 0.203266 24322 120374 -1 2448 21 1440 2466 335391 89771 4.1193 4.1193 -135.113 -4.1193 0 0 618332. 2139.56 0.78 0.12 0.30 -1 -1 0.78 0.039717 0.0385584 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 29.64 vpr 64.51 MiB -1 -1 0.56 21584 1 0.16 -1 -1 33956 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.8 MiB 11.58 1030 16023 4465 9060 2498 64.5 MiB 0.36 0.00 4.80948 -150.045 -4.80948 4.80948 2.46 0.000176942 0.000144389 0.0169233 0.0137793 34 3428 33 6.87369e+06 321398 618332. 2139.56 6.67 0.161447 0.150138 25762 151098 -1 2449 24 2150 3216 257431 61542 4.23836 4.23836 -150.772 -4.23836 0 0 787024. 2723.27 1.05 0.32 0.32 -1 -1 1.05 0.011305 0.00989923 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 28.13 vpr 64.56 MiB -1 -1 0.36 21280 1 0.05 -1 -1 33380 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 13.99 992 11004 2505 7094 1405 64.6 MiB 0.20 0.00 5.358 -156.897 -5.358 5.358 2.33 0.000242429 0.000193313 0.011381 0.00927607 30 2877 24 6.87369e+06 503058 556674. 1926.21 4.22 0.18809 0.0356575 25186 138497 -1 2002 23 1283 2303 125778 31088 4.10065 4.10065 -142.7 -4.10065 0 0 706193. 2443.58 0.65 0.19 0.38 -1 -1 0.65 0.0132399 0.0115817 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 27.82 vpr 64.61 MiB -1 -1 0.44 21280 1 0.26 -1 -1 33784 -1 -1 41 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.8 MiB 11.28 1067 14184 3960 9254 970 64.6 MiB 0.39 0.00 4.55456 -143.325 -4.55456 4.55456 2.33 0.000215782 0.000172066 0.012717 0.0103013 28 3027 43 6.87369e+06 572927 531479. 1839.03 4.93 0.207036 0.198649 24610 126494 -1 2564 21 1734 3064 262501 59491 3.8094 3.8094 -142.318 -3.8094 0 0 648988. 2245.63 0.73 0.10 0.61 -1 -1 0.73 0.0124746 0.0109496 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 22.48 vpr 63.75 MiB -1 -1 0.51 21280 1 0.15 -1 -1 33912 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 25.2 MiB 8.25 842 13261 4606 6728 1927 63.8 MiB 0.19 0.00 4.07653 -124.408 -4.07653 4.07653 2.42 7.0062e-05 5.5974e-05 0.146543 0.110637 34 2031 21 6.87369e+06 237555 618332. 2139.56 4.71 0.205748 0.163126 25762 151098 -1 1703 19 962 1667 121009 28305 3.04731 3.04731 -111.246 -3.04731 0 0 787024. 2723.27 0.69 0.03 0.37 -1 -1 0.69 0.00899034 0.00787086 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 26.21 vpr 64.23 MiB -1 -1 0.54 21432 1 0.20 -1 -1 34056 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 25.6 MiB 11.39 1040 10332 2707 6497 1128 64.2 MiB 0.16 0.00 4.61482 -143.916 -4.61482 4.61482 2.36 0.000170814 0.00013764 0.0113869 0.00931017 34 2561 21 6.87369e+06 307425 618332. 2139.56 4.62 0.0545508 0.0457899 25762 151098 -1 2200 24 1763 2818 238272 51426 3.9216 3.9216 -141.718 -3.9216 0 0 787024. 2723.27 1.03 0.10 0.30 -1 -1 1.03 0.0103456 0.00909204 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 24.47 vpr 64.24 MiB -1 -1 0.64 21280 1 0.02 -1 -1 33848 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 9.06 994 8535 2039 6107 389 64.2 MiB 0.08 0.00 5.21006 -151.071 -5.21006 5.21006 3.12 0.000159427 0.00012768 0.0114246 0.00944575 34 2957 23 6.87369e+06 321398 618332. 2139.56 5.03 0.0584212 0.0487153 25762 151098 -1 2368 21 1687 2792 256911 57806 3.94176 3.94176 -140.022 -3.94176 0 0 787024. 2723.27 0.78 0.18 0.28 -1 -1 0.78 0.00927597 0.00825864 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 22.36 vpr 64.05 MiB -1 -1 0.19 21280 1 0.11 -1 -1 33744 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 25.5 MiB 7.60 1089 16207 4865 8603 2739 64.1 MiB 0.39 0.13 5.3663 -151.531 -5.3663 5.3663 2.57 0.00016299 0.000132014 0.200524 0.197734 34 2572 26 6.87369e+06 391268 618332. 2139.56 4.68 0.309481 0.299374 25762 151098 -1 2215 23 1619 2600 183520 43034 4.4486 4.4486 -143.379 -4.4486 0 0 787024. 2723.27 0.90 0.16 0.46 -1 -1 0.90 0.0118623 0.010397 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 25.81 vpr 64.35 MiB -1 -1 0.62 21280 1 0.05 -1 -1 33828 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65892 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.8 MiB 11.50 902 15003 4201 8477 2325 64.3 MiB 0.20 0.10 4.69758 -137.432 -4.69758 4.69758 3.03 0.00017586 0.000138935 0.0145663 0.0117314 28 2839 48 6.87369e+06 433189 531479. 1839.03 4.43 0.204168 0.195417 24610 126494 -1 2184 20 1415 2315 189694 44392 3.7954 3.7954 -136.767 -3.7954 0 0 648988. 2245.63 0.58 0.27 0.18 -1 -1 0.58 0.11292 0.11145 136 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 24.15 vpr 64.06 MiB -1 -1 0.49 21584 1 0.15 -1 -1 33820 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 8.25 1057 15709 4238 9990 1481 64.1 MiB 0.15 0.00 4.73658 -142.328 -4.73658 4.73658 2.48 0.000192429 0.000158325 0.0160489 0.0130146 34 2693 29 6.87369e+06 293451 618332. 2139.56 4.46 0.365607 0.354475 25762 151098 -1 2414 24 1860 3277 244353 56063 3.99376 3.99376 -142.813 -3.99376 0 0 787024. 2723.27 0.73 0.41 0.32 -1 -1 0.73 0.14787 0.0116698 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 24.14 vpr 64.48 MiB -1 -1 0.49 21736 1 0.13 -1 -1 33836 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.8 MiB 8.36 980 14361 3795 8758 1808 64.5 MiB 0.23 0.00 4.08063 -123.956 -4.08063 4.08063 2.45 0.000173293 0.000138665 0.0116365 0.00942744 34 2277 22 6.87369e+06 405241 618332. 2139.56 4.29 0.0590924 0.0491969 25762 151098 -1 1855 21 1465 2435 157122 37309 2.92401 2.92401 -112.423 -2.92401 0 0 787024. 2723.27 1.19 0.24 0.72 -1 -1 1.19 0.165371 0.164343 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 17.87 vpr 63.86 MiB -1 -1 0.52 20824 1 0.07 -1 -1 33924 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.3 MiB 2.41 762 13381 3888 7655 1838 63.9 MiB 0.48 0.00 4.08063 -121.878 -4.08063 4.08063 2.17 0.000127364 0.000101096 0.0115594 0.00927363 30 1753 24 6.87369e+06 237555 556674. 1926.21 5.95 0.328848 0.272579 25186 138497 -1 1475 16 699 1012 58829 14121 2.80671 2.80671 -106.483 -2.80671 0 0 706193. 2443.58 0.72 0.11 0.13 -1 -1 0.72 0.00761888 0.00657686 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 27.83 vpr 64.21 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33736 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.6 MiB 15.27 1078 12698 2986 8362 1350 64.2 MiB 0.16 0.00 4.62608 -141.267 -4.62608 4.62608 2.24 0.000195534 0.00016125 0.0119889 0.0096477 30 2506 24 6.87369e+06 475111 556674. 1926.21 2.89 0.287809 0.280734 25186 138497 -1 2052 20 1183 2080 122141 28584 3.6918 3.6918 -130.183 -3.6918 0 0 706193. 2443.58 0.85 0.14 0.25 -1 -1 0.85 0.0110472 0.00974873 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 30.14 vpr 63.94 MiB -1 -1 0.27 21432 1 0.25 -1 -1 33476 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 25.3 MiB 14.03 998 8827 2077 6176 574 63.9 MiB 0.19 0.00 4.56982 -152.779 -4.56982 4.56982 2.58 0.000311625 0.000272813 0.0111269 0.00904738 34 2791 32 6.87369e+06 293451 618332. 2139.56 4.84 0.14087 0.130225 25762 151098 -1 2300 24 2093 3481 261894 59837 3.6874 3.6874 -146.807 -3.6874 0 0 787024. 2723.27 1.10 0.13 0.37 -1 -1 1.10 0.0146963 0.012916 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 24.87 vpr 63.95 MiB -1 -1 0.44 21128 1 0.13 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 25.3 MiB 10.55 877 12464 4060 6378 2026 63.9 MiB 0.23 0.00 4.35092 -123.721 -4.35092 4.35092 2.40 0.000138315 0.000109707 0.0291551 0.0267301 34 2390 25 6.87369e+06 223581 618332. 2139.56 4.00 0.180129 0.171184 25762 151098 -1 1912 19 1045 1383 113106 26026 3.3655 3.3655 -119.599 -3.3655 0 0 787024. 2723.27 1.16 0.25 0.24 -1 -1 1.16 0.00864042 0.00764285 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 13.91 vpr 63.88 MiB -1 -1 0.49 21280 1 0.05 -1 -1 33796 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 25.2 MiB 2.36 831 12143 3710 6458 1975 63.9 MiB 0.04 0.00 4.08753 -121.46 -4.08753 4.08753 2.51 0.000130321 0.000103266 0.00813313 0.00648839 28 2091 26 6.87369e+06 279477 531479. 1839.03 2.43 0.032326 0.0268989 24610 126494 -1 1926 22 1255 2098 151129 33631 3.06656 3.06656 -115.299 -3.06656 0 0 648988. 2245.63 0.97 0.10 0.32 -1 -1 0.97 0.0191137 0.018127 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 24.89 vpr 64.17 MiB -1 -1 0.43 21432 1 0.20 -1 -1 34116 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.6 MiB 10.15 1048 14871 5310 7645 1916 64.2 MiB 0.25 0.00 4.74578 -148.239 -4.74578 4.74578 2.16 0.000217443 0.000179441 0.154511 0.151479 36 2778 21 6.87369e+06 321398 648988. 2245.63 5.31 0.203356 0.19278 26050 158493 -1 2299 23 2032 2768 214916 47750 4.09326 4.09326 -145.711 -4.09326 0 0 828058. 2865.25 0.92 0.09 0.31 -1 -1 0.92 0.0144787 0.0129622 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 23.43 vpr 64.27 MiB -1 -1 0.56 21432 1 0.47 -1 -1 33828 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65816 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 25.6 MiB 8.04 1156 10291 2704 7024 563 64.3 MiB 0.20 0.00 5.18474 -149.951 -5.18474 5.18474 2.28 0.000173435 0.000138918 0.0106602 0.00869726 34 2836 43 6.87369e+06 377294 618332. 2139.56 4.75 0.177397 0.166598 25762 151098 -1 2209 21 1477 2262 145226 37923 4.8875 4.8875 -153.376 -4.8875 0 0 787024. 2723.27 1.03 0.16 0.41 -1 -1 1.03 0.0517608 0.0501269 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 17.97 vpr 64.36 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.8 MiB 2.66 1079 20284 6521 10124 3639 64.4 MiB 0.23 0.00 5.37378 -147.82 -5.37378 5.37378 2.37 0.000175743 0.0001416 0.0177904 0.0144316 30 3023 31 6.87369e+06 503058 556674. 1926.21 4.03 0.139801 0.131127 25186 138497 -1 2085 21 1291 2437 138623 33500 4.25585 4.25585 -141.062 -4.25585 0 0 706193. 2443.58 1.08 0.08 0.31 -1 -1 1.08 0.0127445 0.0112248 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 22.13 vpr 64.25 MiB -1 -1 0.31 21432 1 0.03 -1 -1 33684 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.5 MiB 7.93 927 17397 5065 9948 2384 64.3 MiB 0.46 0.00 3.60295 -108.088 -3.60295 3.60295 2.72 0.000149172 0.000117939 0.083006 0.0801073 28 2143 16 6.87369e+06 475111 531479. 1839.03 3.59 0.104044 0.0978537 24610 126494 -1 1954 21 1477 2589 180577 42563 3.17156 3.17156 -109.399 -3.17156 0 0 648988. 2245.63 0.63 0.19 0.37 -1 -1 0.63 0.158986 0.0207749 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 17.86 vpr 63.88 MiB -1 -1 0.56 21128 1 0.02 -1 -1 34300 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 25.2 MiB 3.53 651 12980 3995 7984 1001 63.9 MiB 0.16 0.00 3.6605 -100.499 -3.6605 3.6605 2.63 0.000133245 0.000102794 0.0129438 0.0105119 34 1631 22 6.87369e+06 293451 618332. 2139.56 4.12 0.2536 0.244908 25762 151098 -1 1471 17 1000 1481 108358 24700 2.98326 2.98326 -98.5613 -2.98326 0 0 787024. 2723.27 0.89 0.16 0.37 -1 -1 0.89 0.00550685 0.0047051 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 28.21 vpr 64.48 MiB -1 -1 0.69 21432 1 0.03 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 25.9 MiB 12.12 1305 7498 1697 5254 547 64.5 MiB 0.21 0.00 4.4144 -140.878 -4.4144 4.4144 3.05 0.000193586 0.000155586 0.0102645 0.00841528 34 3816 26 6.87369e+06 335372 618332. 2139.56 5.70 0.209201 0.19799 25762 151098 -1 3072 23 2124 3517 294906 66508 4.13856 4.13856 -146.202 -4.13856 0 0 787024. 2723.27 0.81 0.30 0.39 -1 -1 0.81 0.155998 0.154166 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 30.74 vpr 64.23 MiB -1 -1 0.39 21584 1 0.20 -1 -1 33564 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 15.64 1074 15151 5128 7714 2309 64.2 MiB 0.39 0.00 5.62787 -168.35 -5.62787 5.62787 3.08 0.000195413 0.000162177 0.0111841 0.00903981 34 2751 44 6.87369e+06 307425 618332. 2139.56 4.57 0.125654 0.115732 25762 151098 -1 2244 21 1792 2718 184181 44605 4.71195 4.71195 -159.067 -4.71195 0 0 787024. 2723.27 0.93 0.08 0.36 -1 -1 0.93 0.0648545 0.0634683 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 31.71 vpr 64.29 MiB -1 -1 0.48 21432 1 0.06 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 25.6 MiB 16.51 919 12720 5050 5541 2129 64.3 MiB 0.41 0.00 4.44674 -144.261 -4.44674 4.44674 2.50 0.00016062 0.000126966 0.0264314 0.02378 34 2497 25 6.87369e+06 251529 618332. 2139.56 4.26 0.073152 0.0625917 25762 151098 -1 2129 21 1638 2383 187322 42493 3.67646 3.67646 -142.535 -3.67646 0 0 787024. 2723.27 0.88 0.11 0.30 -1 -1 0.88 0.0108914 0.00959515 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 17.61 vpr 64.34 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33780 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 25.8 MiB 4.09 976 10753 2429 7569 755 64.3 MiB 0.54 0.00 5.00965 -138.522 -5.00965 5.00965 2.41 0.000155334 0.000124383 0.00679763 0.00545239 32 2763 27 6.87369e+06 461137 586450. 2029.24 2.44 0.131443 0.125685 25474 144626 -1 2212 23 1337 2115 197538 43683 3.6091 3.6091 -126.097 -3.6091 0 0 744469. 2576.02 1.15 0.21 0.49 -1 -1 1.15 0.00988829 0.00863721 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 19.99 vpr 64.30 MiB -1 -1 0.48 21432 1 0.11 -1 -1 33488 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1013 10087 2314 7206 567 64.3 MiB 0.12 0.00 4.42234 -128.528 -4.42234 4.42234 2.48 0.000210025 0.000173901 0.0109573 0.00897473 26 2786 25 6.87369e+06 475111 503264. 1741.40 3.48 0.302713 0.119406 24322 120374 -1 2350 23 1643 2720 217701 49985 4.30596 4.30596 -136.052 -4.30596 0 0 618332. 2139.56 0.94 0.28 0.21 -1 -1 0.94 0.0130602 0.0113431 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 20.47 vpr 64.15 MiB -1 -1 0.47 21584 1 0.16 -1 -1 33892 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 25.6 MiB 6.88 789 16473 4509 9304 2660 64.1 MiB 0.16 0.00 3.6543 -102.402 -3.6543 3.6543 2.47 0.000157977 0.000125103 0.0114113 0.00918502 30 2403 31 6.87369e+06 433189 556674. 1926.21 3.36 0.0384202 0.0318093 25186 138497 -1 1692 21 1163 2079 118397 30989 2.84601 2.84601 -99.6498 -2.84601 0 0 706193. 2443.58 1.13 0.07 0.34 -1 -1 1.13 0.0105219 0.00923325 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 26.24 vpr 64.34 MiB -1 -1 0.33 21280 1 0.14 -1 -1 33420 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 25.8 MiB 11.25 1043 7835 1690 4990 1155 64.3 MiB 0.14 0.00 4.80948 -147.863 -4.80948 4.80948 2.35 8.083e-05 6.2918e-05 0.120904 0.119769 38 2793 25 6.87369e+06 307425 678818. 2348.85 4.77 0.356462 0.331458 26626 170182 -1 2286 21 1725 2702 176685 43882 3.97676 3.97676 -143.812 -3.97676 0 0 902133. 3121.57 1.04 0.14 0.53 -1 -1 1.04 0.0118122 0.0104249 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 27.06 vpr 64.31 MiB -1 -1 0.30 21280 1 0.02 -1 -1 33584 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 11.54 1116 17964 5292 9872 2800 64.3 MiB 0.17 0.00 4.13563 -137.404 -4.13563 4.13563 2.45 8.7406e-05 6.708e-05 0.00957555 0.00757502 34 2483 28 6.87369e+06 503058 618332. 2139.56 5.17 0.233915 0.223526 25762 151098 -1 2092 21 1459 2325 157406 36334 3.12431 3.12431 -122.815 -3.12431 0 0 787024. 2723.27 1.11 0.06 0.37 -1 -1 1.11 0.0132458 0.0118161 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 20.09 vpr 63.97 MiB -1 -1 0.43 21128 1 0.06 -1 -1 33816 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 25.3 MiB 6.95 703 14184 4182 7144 2858 64.0 MiB 0.28 0.00 3.92008 -117.095 -3.92008 3.92008 2.06 0.000130365 0.000101356 0.0130918 0.0104772 32 1786 22 6.87369e+06 265503 586450. 2029.24 2.57 0.0443424 0.03859 25474 144626 -1 1465 18 1159 1649 106327 25517 2.95216 2.95216 -109.502 -2.95216 0 0 744469. 2576.02 0.96 0.05 0.37 -1 -1 0.96 0.00803945 0.00704296 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 20.83 vpr 64.20 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33756 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 25.5 MiB 5.94 745 10056 2219 6943 894 64.2 MiB 0.08 0.00 4.29715 -118.471 -4.29715 4.29715 2.67 0.000175463 0.000142299 0.0117008 0.0095659 34 2412 25 6.87369e+06 237555 618332. 2139.56 4.97 0.121361 0.11164 25762 151098 -1 1921 22 1172 1607 147553 34263 3.38331 3.38331 -128.591 -3.38331 0 0 787024. 2723.27 0.84 0.02 0.34 -1 -1 0.84 0.00952054 0.00885081 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 21.30 vpr 64.37 MiB -1 -1 0.47 21432 1 0.02 -1 -1 34036 -1 -1 39 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 25.8 MiB 6.44 902 19380 5589 10619 3172 64.4 MiB 0.18 0.00 4.58512 -127.193 -4.58512 4.58512 2.91 0.000155813 0.000124815 0.0154607 0.0123699 30 2365 22 6.87369e+06 544980 556674. 1926.21 3.93 0.0444408 0.0369961 25186 138497 -1 1716 22 1241 2354 128386 30446 3.5538 3.5538 -120.664 -3.5538 0 0 706193. 2443.58 0.82 0.07 0.19 -1 -1 0.82 0.0114633 0.0100832 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 24.06 vpr 63.75 MiB -1 -1 0.55 21280 1 0.20 -1 -1 33708 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.2 MiB 11.31 749 6788 1524 4749 515 63.7 MiB 0.08 0.00 4.6958 -121.206 -4.6958 4.6958 2.31 0.000169203 0.00013788 0.00655129 0.00534007 30 1952 20 6.87369e+06 265503 556674. 1926.21 2.30 0.0735153 0.0687536 25186 138497 -1 1612 16 830 1112 65319 16469 3.46886 3.46886 -112.916 -3.46886 0 0 706193. 2443.58 1.12 0.01 0.38 -1 -1 1.12 0.00378377 0.00333699 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 26.02 vpr 64.00 MiB -1 -1 0.58 21280 1 0.21 -1 -1 33960 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 25.3 MiB 11.72 866 13092 4214 7388 1490 64.0 MiB 0.10 0.00 4.09853 -129.916 -4.09853 4.09853 2.25 0.00017348 0.000144012 0.0517077 0.0492828 34 2136 19 6.87369e+06 209608 618332. 2139.56 4.28 0.160242 0.15194 25762 151098 -1 1876 19 1305 2186 179380 40088 3.06026 3.06026 -118.527 -3.06026 0 0 787024. 2723.27 1.00 0.13 0.34 -1 -1 1.00 0.0974043 0.0963665 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 25.95 vpr 64.29 MiB -1 -1 0.41 21432 1 0.18 -1 -1 33660 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.8 MiB 9.88 1039 12628 3304 8275 1049 64.3 MiB 0.32 0.00 4.00054 -129.166 -4.00054 4.00054 2.13 0.000210017 0.000174169 0.0122035 0.00990819 30 2209 47 6.87369e+06 517032 556674. 1926.21 6.04 0.554985 0.542485 25186 138497 -1 1847 24 1361 2336 125733 29890 2.85166 2.85166 -116.929 -2.85166 0 0 706193. 2443.58 0.64 0.07 0.17 -1 -1 0.64 0.045678 0.0436281 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 26.14 vpr 63.98 MiB -1 -1 0.40 21128 1 0.13 -1 -1 33904 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 25.4 MiB 11.40 739 6272 1406 4366 500 64.0 MiB 0.04 0.00 3.6584 -112.307 -3.6584 3.6584 2.53 0.000146881 0.000116644 0.00726985 0.00588212 34 2230 21 6.87369e+06 237555 618332. 2139.56 4.11 0.12054 0.113228 25762 151098 -1 1774 21 1275 1857 140665 34493 3.10761 3.10761 -112.25 -3.10761 0 0 787024. 2723.27 1.02 0.23 0.53 -1 -1 1.02 0.00745575 0.00654715 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 23.18 vpr 64.41 MiB -1 -1 0.42 21280 1 0.05 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 9.96 994 15431 4930 8161 2340 64.4 MiB 0.38 0.00 3.71714 -116.274 -3.71714 3.71714 2.43 0.00016668 0.000132315 0.154015 0.151407 28 2577 30 6.87369e+06 433189 531479. 1839.03 3.18 0.260622 0.253714 24610 126494 -1 2282 22 1256 2064 170461 37936 2.99431 2.99431 -116.308 -2.99431 0 0 648988. 2245.63 0.97 0.08 0.39 -1 -1 0.97 0.0116898 0.010177 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 24.73 vpr 64.34 MiB -1 -1 0.42 21584 1 0.06 -1 -1 33836 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 25.7 MiB 11.44 961 16511 5552 8275 2684 64.3 MiB 0.17 0.00 3.7214 -123.871 -3.7214 3.7214 3.01 0.000210592 0.00017045 0.0799071 0.0769423 30 2253 32 6.87369e+06 447163 556674. 1926.21 3.39 0.11623 0.107678 25186 138497 -1 1722 20 1533 2326 127313 31294 2.93501 2.93501 -117.678 -2.93501 0 0 706193. 2443.58 1.19 0.09 0.27 -1 -1 1.19 0.0117807 0.0103106 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 21.28 vpr 63.85 MiB -1 -1 0.42 21432 1 0.21 -1 -1 33736 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 25.3 MiB 8.28 737 5584 1099 4145 340 63.8 MiB 0.04 0.00 3.6034 -109.653 -3.6034 3.6034 2.54 0.000172967 0.000138711 0.00655164 0.00533344 34 2010 22 6.87369e+06 223581 618332. 2139.56 3.44 0.197616 0.173372 25762 151098 -1 1778 20 1088 1717 149494 35149 2.93831 2.93831 -111.61 -2.93831 0 0 787024. 2723.27 0.96 0.04 0.25 -1 -1 0.96 0.00950595 0.00830105 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 20.96 vpr 64.08 MiB -1 -1 0.35 21128 1 0.03 -1 -1 33692 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.3 MiB 5.02 952 10940 2740 7203 997 64.1 MiB 0.14 0.00 4.25609 -132.381 -4.25609 4.25609 2.59 0.000151853 0.000121995 0.0911806 0.0892098 34 2539 31 6.87369e+06 251529 618332. 2139.56 4.62 0.254826 0.209777 25762 151098 -1 2274 20 1537 2285 205051 45570 3.43621 3.43621 -129.843 -3.43621 0 0 787024. 2723.27 1.20 0.20 0.44 -1 -1 1.20 0.00827715 0.00723661 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 23.20 vpr 64.33 MiB -1 -1 0.42 21280 1 0.16 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 25.6 MiB 8.99 1054 12749 3289 7313 2147 64.3 MiB 0.36 0.00 4.80313 -136.884 -4.80313 4.80313 2.18 7.4449e-05 5.8209e-05 0.0104704 0.00848545 34 2729 44 6.87369e+06 307425 618332. 2139.56 4.30 0.0586755 0.0488335 25762 151098 -1 2281 19 1506 2130 160084 36271 4.02506 4.02506 -135.193 -4.02506 0 0 787024. 2723.27 1.01 0.21 0.21 -1 -1 1.01 0.0102614 0.00911307 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 24.01 vpr 63.86 MiB -1 -1 0.40 21584 1 0.02 -1 -1 33852 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 25.4 MiB 9.05 910 8331 2069 5702 560 63.9 MiB 0.06 0.00 4.10263 -113.755 -4.10263 4.10263 2.81 0.000161988 0.000130599 0.0169096 0.0153965 26 2355 25 6.87369e+06 405241 503264. 1741.40 3.92 0.205653 0.0381333 24322 120374 -1 2033 23 1259 2182 174835 40984 3.55251 3.55251 -115.502 -3.55251 0 0 618332. 2139.56 0.78 0.10 0.21 -1 -1 0.78 0.011704 0.0102749 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 25.23 vpr 64.60 MiB -1 -1 0.62 21584 1 0.14 -1 -1 33436 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 26.1 MiB 10.23 1103 15395 4881 8425 2089 64.6 MiB 0.25 0.00 5.21806 -166.108 -5.21806 5.21806 2.43 0.000182827 0.000148202 0.0237798 0.0138708 34 2947 24 6.87369e+06 307425 618332. 2139.56 4.30 0.152651 0.134698 25762 151098 -1 2371 20 1678 2569 223080 48160 4.13096 4.13096 -154.719 -4.13096 0 0 787024. 2723.27 1.05 0.12 0.42 -1 -1 1.05 0.01251 0.0110478 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 17.53 vpr 63.66 MiB -1 -1 0.52 21128 1 0.10 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.2 MiB 2.28 761 8164 2247 5336 581 63.7 MiB 0.19 0.00 3.6213 -109.656 -3.6213 3.6213 2.52 0.000132315 0.000104858 0.00764862 0.00618307 34 1877 21 6.87369e+06 237555 618332. 2139.56 4.02 0.153606 0.146459 25762 151098 -1 1560 22 878 1383 100065 23147 2.69971 2.69971 -100.34 -2.69971 0 0 787024. 2723.27 0.87 0.18 0.14 -1 -1 0.87 0.00978808 0.0085085 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 22.05 vpr 64.48 MiB -1 -1 0.43 21432 1 0.22 -1 -1 33844 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.9 MiB 6.44 1098 17883 5450 10197 2236 64.5 MiB 0.21 0.00 4.40215 -147.898 -4.40215 4.40215 2.31 0.0001791 0.000141826 0.016478 0.0133201 34 2698 23 6.87369e+06 489084 618332. 2139.56 4.46 0.204551 0.192941 25762 151098 -1 2289 19 1528 2195 163597 37531 4.09906 4.09906 -150.382 -4.09906 0 0 787024. 2723.27 1.25 0.14 0.42 -1 -1 1.25 0.0123489 0.010729 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 28.71 vpr 64.36 MiB -1 -1 0.34 21280 1 0.15 -1 -1 33432 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 25.8 MiB 14.98 884 12808 4071 7270 1467 64.4 MiB 0.10 0.00 3.7416 -133.639 -3.7416 3.7416 2.39 0.000185557 0.000133548 0.0145308 0.0116667 34 2203 22 6.87369e+06 223581 618332. 2139.56 3.97 0.167213 0.138523 25762 151098 -1 1898 22 1647 2358 207288 44212 3.09651 3.09651 -131.753 -3.09651 0 0 787024. 2723.27 1.01 0.21 0.15 -1 -1 1.01 0.177656 0.176112 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 23.18 vpr 64.25 MiB -1 -1 0.35 21432 1 0.03 -1 -1 33524 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 25.6 MiB 9.73 1035 16083 4540 9099 2444 64.3 MiB 0.33 0.00 4.13563 -128.556 -4.13563 4.13563 2.53 0.000178336 0.000141814 0.155804 0.0300563 34 2321 22 6.87369e+06 447163 618332. 2139.56 3.70 0.241406 0.108683 25762 151098 -1 1975 20 1113 1723 125202 28251 2.88171 2.88171 -110.937 -2.88171 0 0 787024. 2723.27 0.78 0.14 0.36 -1 -1 0.78 0.12239 0.121288 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 27.47 vpr 64.60 MiB -1 -1 0.61 21432 1 0.13 -1 -1 33808 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 25.9 MiB 12.84 1287 13355 3699 8482 1174 64.6 MiB 0.26 0.00 5.89739 -178.153 -5.89739 5.89739 2.62 0.000182643 0.000146677 0.0152379 0.0125769 30 3132 24 6.87369e+06 349346 556674. 1926.21 3.01 0.0535792 0.0453289 25186 138497 -1 2431 22 1816 2892 196741 44670 4.7438 4.7438 -161.916 -4.7438 0 0 706193. 2443.58 0.97 0.06 0.23 -1 -1 0.97 0.0124387 0.0109805 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 19.27 vpr 63.44 MiB -1 -1 0.59 21128 1 0.43 -1 -1 33428 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64964 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 4.17 701 8879 2399 5497 983 63.4 MiB 0.02 0.00 3.00866 -95.1783 -3.00866 3.00866 2.29 5.4423e-05 4.1445e-05 0.00344419 0.0026929 34 1714 22 6.87369e+06 209608 618332. 2139.56 3.49 0.0229619 0.018796 25762 151098 -1 1446 22 914 1239 95931 21985 2.41177 2.41177 -93.2366 -2.41177 0 0 787024. 2723.27 0.86 0.08 0.56 -1 -1 0.86 0.155442 0.154411 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 21.09 vpr 64.02 MiB -1 -1 0.25 21128 1 0.03 -1 -1 34020 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 25.3 MiB 4.35 780 10931 2920 7179 832 64.0 MiB 0.14 0.00 4.09289 -125.17 -4.09289 4.09289 2.63 0.000138732 0.000110097 0.0106528 0.00854101 30 1832 21 6.87369e+06 265503 556674. 1926.21 6.08 0.052991 0.0439109 25186 138497 -1 1484 19 812 1262 82398 18839 2.96331 2.96331 -113.015 -2.96331 0 0 706193. 2443.58 0.91 0.04 0.35 -1 -1 0.91 0.0184988 0.0174497 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 15.59 vpr 63.84 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 25.3 MiB 2.97 823 13335 3842 8129 1364 63.8 MiB 0.22 0.00 3.6323 -119.992 -3.6323 3.6323 2.25 0.000169515 0.000139323 0.00897186 0.00703524 32 2531 30 6.87369e+06 321398 586450. 2029.24 2.94 0.0389559 0.0323161 25474 144626 -1 2024 23 1432 2515 224836 51322 3.19191 3.19191 -122.428 -3.19191 0 0 744469. 2576.02 0.71 0.15 0.21 -1 -1 0.71 0.0323575 0.0308986 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 14.86 vpr 63.75 MiB -1 -1 0.18 21280 1 0.03 -1 -1 33660 -1 -1 29 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.9 MiB 2.77 478 11804 3373 6324 2107 63.8 MiB 0.29 0.00 3.5473 -82.0121 -3.5473 3.5473 2.29 0.00011186 8.6921e-05 0.00848826 0.00661571 32 1406 23 6.87369e+06 405241 586450. 2029.24 2.43 0.224238 0.219024 25474 144626 -1 1113 21 759 1365 103068 25092 3.24821 3.24821 -82.8494 -3.24821 0 0 744469. 2576.02 0.96 0.14 0.29 -1 -1 0.96 0.00721949 0.00620565 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 25.09 vpr 64.49 MiB -1 -1 0.68 21280 1 0.03 -1 -1 33836 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66036 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 25.8 MiB 9.26 1101 11796 3845 6942 1009 64.5 MiB 0.11 0.00 4.3434 -133.109 -4.3434 4.3434 2.62 8.5428e-05 6.6476e-05 0.0118216 0.00980211 34 2898 48 6.87369e+06 279477 618332. 2139.56 4.35 0.0697086 0.057851 25762 151098 -1 2423 20 1440 2558 195916 43947 3.72146 3.72146 -131.72 -3.72146 0 0 787024. 2723.27 0.94 0.26 0.28 -1 -1 0.94 0.0118249 0.010334 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 24.82 vpr 64.62 MiB -1 -1 0.61 21584 1 0.04 -1 -1 33868 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66168 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.1 MiB 9.55 1005 17347 4974 10720 1653 64.6 MiB 0.48 0.08 4.12463 -135.699 -4.12463 4.12463 2.30 0.000174695 0.000139207 0.0174827 0.0142548 34 2407 22 6.87369e+06 433189 618332. 2139.56 3.99 0.0820274 0.0713159 25762 151098 -1 2069 22 1746 2660 180911 42069 3.30881 3.30881 -130.418 -3.30881 0 0 787024. 2723.27 0.88 0.15 0.36 -1 -1 0.88 0.0142291 0.0125481 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 24.91 vpr 64.22 MiB -1 -1 0.45 21128 1 0.25 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 25.4 MiB 8.52 1161 17053 5989 8608 2456 64.2 MiB 0.25 0.00 5.4505 -158.266 -5.4505 5.4505 2.07 0.000176998 0.000143319 0.0795813 0.0763266 36 2675 22 6.89349e+06 338252 648988. 2245.63 5.71 0.128371 0.117427 26050 158493 -1 2304 20 1673 2418 173005 38338 4.47565 4.47565 -149.167 -4.47565 0 0 828058. 2865.25 0.85 0.18 0.63 -1 -1 0.85 0.00957657 0.0082788 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 20.74 vpr 64.20 MiB -1 -1 0.40 21280 1 0.08 -1 -1 33564 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 25.6 MiB 5.58 1183 17053 6028 7314 3711 64.2 MiB 0.32 0.00 4.96382 -147.599 -4.96382 4.96382 2.48 0.000185221 0.000152978 0.0174222 0.0142415 40 2569 24 6.89349e+06 366440 706193. 2443.58 4.65 0.0633972 0.0531138 26914 176310 -1 2410 21 2086 3030 245852 53097 4.44693 4.44693 -146.332 -4.44693 0 0 926341. 3205.33 1.30 0.09 0.24 -1 -1 1.30 0.0121252 0.0105801 157 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 21.58 vpr 63.75 MiB -1 -1 0.30 21280 1 0.23 -1 -1 33560 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.2 MiB 6.30 1005 8641 2306 5994 341 63.8 MiB 0.18 0.00 4.21693 -118.79 -4.21693 4.21693 2.64 0.000165577 0.000136217 0.00595313 0.00481065 34 2497 30 6.89349e+06 295971 618332. 2139.56 5.69 0.0524443 0.0442435 25762 151098 -1 2075 21 1394 1953 140315 31761 3.481 3.481 -115.563 -3.481 0 0 787024. 2723.27 0.96 0.10 0.28 -1 -1 0.96 0.0681163 0.0668224 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 21.95 vpr 63.76 MiB -1 -1 0.57 21432 1 0.02 -1 -1 33496 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 25.2 MiB 5.76 1042 11245 2935 7152 1158 63.8 MiB 0.36 0.00 4.87453 -132.17 -4.87453 4.87453 2.76 0.000131131 0.000103231 0.00891168 0.00719115 40 2177 26 6.89349e+06 338252 706193. 2443.58 3.98 0.118991 0.110701 26914 176310 -1 2110 21 1379 2258 178424 40311 3.77346 3.77346 -124.825 -3.77346 0 0 926341. 3205.33 1.49 0.07 0.38 -1 -1 1.49 0.0106657 0.00938011 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 23.32 vpr 64.04 MiB -1 -1 0.57 21584 1 0.22 -1 -1 33576 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 25.5 MiB 5.13 1138 14679 5112 7369 2198 64.0 MiB 0.19 0.00 5.26431 -151.77 -5.26431 5.26431 2.81 8.4178e-05 6.6136e-05 0.0106353 0.00857157 34 3290 30 6.89349e+06 324158 618332. 2139.56 6.37 0.115847 0.105756 25762 151098 -1 2611 22 1920 3410 320266 76372 4.37429 4.37429 -147.257 -4.37429 0 0 787024. 2723.27 0.91 0.24 0.35 -1 -1 0.91 0.0117727 0.0103205 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 24.12 vpr 64.25 MiB -1 -1 0.45 21432 1 0.04 -1 -1 33972 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 25.5 MiB 7.12 1321 18079 5361 9939 2779 64.2 MiB 0.45 0.00 4.04936 -131.962 -4.04936 4.04936 2.50 0.000178121 0.000132771 0.0628183 0.0122638 34 3361 47 6.89349e+06 465097 618332. 2139.56 6.19 0.31131 0.251722 25762 151098 -1 2778 21 1732 2914 219808 48366 3.70335 3.70335 -137.69 -3.70335 0 0 787024. 2723.27 1.06 0.28 0.25 -1 -1 1.06 0.0107926 0.00956445 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 18.37 vpr 63.77 MiB -1 -1 0.61 21128 1 0.04 -1 -1 34176 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 25.1 MiB 4.35 839 11260 3450 5917 1893 63.8 MiB 0.09 0.00 4.19007 -114.449 -4.19007 4.19007 2.64 0.000137292 0.000108949 0.044233 0.00826467 34 1915 21 6.89349e+06 295971 618332. 2139.56 4.34 0.119948 0.0784687 25762 151098 -1 1655 18 1154 1659 146368 31515 3.17986 3.17986 -105.452 -3.17986 0 0 787024. 2723.27 0.78 0.07 0.21 -1 -1 0.78 0.00843702 0.00722768 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 16.07 vpr 63.86 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.2 MiB 2.73 949 9383 2442 6271 670 63.9 MiB 0.16 0.00 3.43417 -103.803 -3.43417 3.43417 2.64 0.000147994 0.000117041 0.00818077 0.00660448 26 2457 27 6.89349e+06 451003 503264. 1741.40 3.83 0.130788 0.125164 24322 120374 -1 2161 21 1217 2108 198951 44635 2.60681 2.60681 -101.55 -2.60681 0 0 618332. 2139.56 0.94 0.02 0.17 -1 -1 0.94 0.00539005 0.00467584 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 21.79 vpr 63.85 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33580 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 25.2 MiB 6.39 1057 11652 3291 6897 1464 63.9 MiB 0.15 0.00 3.72781 -126.045 -3.72781 3.72781 2.44 6.9584e-05 5.2628e-05 0.00794743 0.00642072 36 2479 32 6.89349e+06 267783 648988. 2245.63 5.19 0.25551 0.246837 26050 158493 -1 2104 21 1429 1952 165378 35709 2.76806 2.76806 -114.99 -2.76806 0 0 828058. 2865.25 1.13 0.19 0.32 -1 -1 1.13 0.0860574 0.0846668 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 21.88 vpr 63.96 MiB -1 -1 0.27 21432 1 0.06 -1 -1 33500 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 25.2 MiB 7.59 828 7914 1799 5700 415 64.0 MiB 0.08 0.00 4.03358 -129.578 -4.03358 4.03358 2.79 0.000155201 0.000122814 0.00860274 0.00698644 34 2423 23 6.89349e+06 253689 618332. 2139.56 4.90 0.157708 0.149603 25762 151098 -1 1889 18 1292 1700 120374 28926 3.2385 3.2385 -123.374 -3.2385 0 0 787024. 2723.27 1.03 0.04 0.17 -1 -1 1.03 0.0185968 0.0173179 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 20.73 vpr 63.75 MiB -1 -1 0.37 21128 1 0.13 -1 -1 33884 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 25.1 MiB 6.51 926 14123 4183 7803 2137 63.7 MiB 0.14 0.00 4.47797 -129.601 -4.47797 4.47797 2.37 6.263e-05 4.9121e-05 0.00666466 0.00535488 36 2199 23 6.89349e+06 295971 648988. 2245.63 4.51 0.0440458 0.0363173 26050 158493 -1 1863 20 1236 1654 121267 27418 3.4952 3.4952 -120.568 -3.4952 0 0 828058. 2865.25 1.07 0.12 0.27 -1 -1 1.07 0.00947721 0.00827429 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 19.03 vpr 63.84 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33688 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65376 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.4 MiB 4.68 952 13206 3630 8318 1258 63.8 MiB 0.10 0.00 3.6807 -113.75 -3.6807 3.6807 2.33 0.000156193 0.000127332 0.0299875 0.00961667 34 2268 22 6.89349e+06 239595 618332. 2139.56 4.23 0.290009 0.263579 25762 151098 -1 1953 19 1085 1467 115324 26320 3.22811 3.22811 -116.042 -3.22811 0 0 787024. 2723.27 1.11 0.13 0.46 -1 -1 1.11 0.106119 0.104901 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 21.93 vpr 63.82 MiB -1 -1 0.47 21584 1 0.04 -1 -1 33980 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.2 MiB 7.61 1096 16791 5267 9304 2220 63.8 MiB 0.20 0.00 4.09068 -133.499 -4.09068 4.09068 2.50 0.000198508 0.000163314 0.0170644 0.0137481 34 2716 23 6.89349e+06 324158 618332. 2139.56 4.67 0.0958319 0.0848305 25762 151098 -1 2330 21 1747 2714 224269 47993 3.20486 3.20486 -124.183 -3.20486 0 0 787024. 2723.27 0.76 0.04 0.25 -1 -1 0.76 0.0141967 0.0131484 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 23.57 vpr 64.22 MiB -1 -1 0.36 21280 1 0.16 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 25.6 MiB 6.26 1098 13348 3832 7332 2184 64.2 MiB 0.17 0.00 5.44961 -153.357 -5.44961 5.44961 2.31 0.000166728 0.000133456 0.0133028 0.010714 36 3003 29 6.89349e+06 338252 648988. 2245.63 7.54 0.158609 0.147505 26050 158493 -1 2305 21 2012 2798 189613 45478 4.37909 4.37909 -148.168 -4.37909 0 0 828058. 2865.25 0.87 0.25 0.38 -1 -1 0.87 0.0117438 0.0103645 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 21.27 vpr 63.53 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33736 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.9 MiB 6.93 831 9374 2437 5969 968 63.5 MiB 0.18 0.00 3.17792 -97.7522 -3.17792 3.17792 2.69 0.000125564 9.9846e-05 0.00871104 0.00701499 34 1972 27 6.89349e+06 253689 618332. 2139.56 3.59 0.0596259 0.0364528 25762 151098 -1 1638 18 940 1326 89510 20951 2.71661 2.71661 -94.194 -2.71661 0 0 787024. 2723.27 1.03 0.16 0.31 -1 -1 1.03 0.00531485 0.00468482 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 23.39 vpr 64.37 MiB -1 -1 0.46 21432 1 0.03 -1 -1 33548 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 25.7 MiB 7.86 1293 12568 3874 7582 1112 64.4 MiB 0.28 0.00 4.1299 -137.165 -4.1299 4.1299 2.34 0.000193488 0.000155335 0.129421 0.126839 34 3535 29 6.89349e+06 338252 618332. 2139.56 5.03 0.177301 0.167009 25762 151098 -1 2788 23 2219 3501 275962 61516 3.65345 3.65345 -137.227 -3.65345 0 0 787024. 2723.27 0.96 0.30 0.26 -1 -1 0.96 0.0125185 0.0109158 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 24.27 vpr 63.88 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33708 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 25.4 MiB 6.83 1050 11237 3157 6324 1756 63.9 MiB 0.19 0.00 4.12104 -133.15 -4.12104 4.12104 2.51 0.000201959 0.000135361 0.0114769 0.00929293 34 2644 33 6.89349e+06 310065 618332. 2139.56 5.08 0.302628 0.292097 25762 151098 -1 2226 20 1454 2138 168154 37059 2.99151 2.99151 -119.597 -2.99151 0 0 787024. 2723.27 1.10 0.03 0.30 -1 -1 1.10 0.00779777 0.00688851 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 21.98 vpr 64.17 MiB -1 -1 0.73 21128 1 0.08 -1 -1 33408 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 25.4 MiB 6.58 1106 9943 2735 6276 932 64.2 MiB 0.34 0.00 3.55425 -126.676 -3.55425 3.55425 2.33 0.000191948 0.00015908 0.0102347 0.0083218 34 2862 34 6.89349e+06 295971 618332. 2139.56 4.80 0.081078 0.0710734 25762 151098 -1 2261 21 1595 2084 154635 34776 2.92521 2.92521 -121.736 -2.92521 0 0 787024. 2723.27 1.00 0.29 0.27 -1 -1 1.00 0.00865996 0.00745008 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 17.39 vpr 63.63 MiB -1 -1 0.53 20976 1 0.03 -1 -1 33700 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 222 206 1 140 77 17 17 289 -1 unnamed_device 25.1 MiB 3.33 750 8227 2512 4388 1327 63.6 MiB 0.22 0.00 2.66469 -91.1536 -2.66469 2.66469 2.59 5.4469e-05 4.1216e-05 0.200041 0.198555 34 1569 21 6.89349e+06 211408 618332. 2139.56 3.74 0.409015 0.320328 25762 151098 -1 1355 14 606 676 48927 10985 2.17217 2.17217 -89.9899 -2.17217 0 0 787024. 2723.27 1.21 0.05 0.38 -1 -1 1.21 0.00583853 0.00512938 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 22.09 vpr 63.93 MiB -1 -1 0.24 21128 1 0.09 -1 -1 33852 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 25.2 MiB 7.05 945 9338 2566 6202 570 63.9 MiB 0.23 0.00 4.75752 -142.801 -4.75752 4.75752 2.42 0.000146087 0.000116232 0.00942941 0.00743356 36 2155 20 6.89349e+06 267783 648988. 2245.63 4.43 0.0493733 0.0406779 26050 158493 -1 1957 22 1225 1925 163923 35742 3.32256 3.32256 -127.555 -3.32256 0 0 828058. 2865.25 0.89 0.20 0.36 -1 -1 0.89 0.010323 0.00904507 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 19.62 vpr 64.27 MiB -1 -1 0.36 21432 1 0.14 -1 -1 34096 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 25.5 MiB 3.79 1106 14498 3974 9407 1117 64.3 MiB 0.31 0.00 4.73843 -148.84 -4.73843 4.73843 2.10 0.000159838 0.000128976 0.0480151 0.0455712 34 2741 36 6.89349e+06 479191 618332. 2139.56 4.53 0.0924301 0.0826887 25762 151098 -1 2294 20 1441 2135 164381 36417 4.00824 4.00824 -141.721 -4.00824 0 0 787024. 2723.27 1.00 0.20 0.18 -1 -1 1.00 0.0500119 0.0486807 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 20.70 vpr 64.38 MiB -1 -1 0.53 21432 1 0.10 -1 -1 33484 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 25.7 MiB 4.49 1263 9303 2806 5911 586 64.4 MiB 0.13 0.00 4.4892 -137.729 -4.4892 4.4892 2.30 0.000179038 0.000145934 0.0107695 0.00879205 34 3261 30 6.89349e+06 324158 618332. 2139.56 5.69 0.0984196 0.0884654 25762 151098 -1 2599 19 1835 2784 217381 46351 3.69166 3.69166 -135.469 -3.69166 0 0 787024. 2723.27 1.04 0.33 0.41 -1 -1 1.04 0.0120759 0.0106086 155 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 18.67 vpr 63.48 MiB -1 -1 0.39 20976 1 0.07 -1 -1 34132 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65000 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 24.8 MiB 3.35 418 9996 4123 4950 923 63.5 MiB 0.22 0.00 2.70371 -73.2251 -2.70371 2.70371 2.81 0.000105946 8.1485e-05 0.00853983 0.00661842 36 1235 30 6.89349e+06 253689 648988. 2245.63 4.26 0.0795398 0.0720086 26050 158493 -1 969 17 715 861 71372 17438 2.14365 2.14365 -67.9526 -2.14365 0 0 828058. 2865.25 0.82 0.17 0.22 -1 -1 0.82 0.00591336 0.00494052 75 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 17.79 vpr 63.89 MiB -1 -1 0.38 21128 1 0.06 -1 -1 33600 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.2 MiB 3.25 1037 13527 3557 8136 1834 63.9 MiB 0.22 0.00 4.54937 -129.45 -4.54937 4.54937 2.28 0.000152252 0.000120273 0.0120581 0.00969019 34 2454 22 6.89349e+06 324158 618332. 2139.56 3.94 0.0937873 0.0853824 25762 151098 -1 2055 23 1346 2426 175903 39239 3.5448 3.5448 -121.004 -3.5448 0 0 787024. 2723.27 1.19 0.08 0.32 -1 -1 1.19 0.0445351 0.0432386 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 14.96 vpr 63.37 MiB -1 -1 0.22 20976 1 0.07 -1 -1 33288 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64888 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.20 387 9836 3174 4591 2071 63.4 MiB 0.19 0.00 2.35942 -72.6422 -2.35942 2.35942 2.94 9.4139e-05 7.0639e-05 0.00748048 0.00591742 34 1203 34 6.89349e+06 169126 618332. 2139.56 4.50 0.0385843 0.0313698 25762 151098 -1 923 18 587 743 56885 15810 2.15406 2.15406 -75.681 -2.15406 0 0 787024. 2723.27 0.74 0.02 0.17 -1 -1 0.74 0.0058296 0.00487531 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 20.68 vpr 63.97 MiB -1 -1 0.26 21432 1 0.23 -1 -1 33540 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 25.4 MiB 5.16 1049 14175 4566 7521 2088 64.0 MiB 0.38 0.00 4.89708 -136.784 -4.89708 4.89708 2.42 0.000153844 0.000121804 0.0486893 0.0459391 34 2358 23 6.89349e+06 281877 618332. 2139.56 5.03 0.162207 0.152474 25762 151098 -1 2096 20 1206 1786 142525 31564 3.97096 3.97096 -128.615 -3.97096 0 0 787024. 2723.27 0.91 0.09 0.39 -1 -1 0.91 0.010172 0.00897861 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 15.77 vpr 63.89 MiB -1 -1 0.59 21128 1 0.04 -1 -1 33924 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.4 MiB 2.37 982 15863 4499 9572 1792 63.9 MiB 0.29 0.00 3.4448 -108.59 -3.4448 3.4448 2.47 0.000160124 0.000127726 0.00992976 0.00796932 30 2387 22 6.89349e+06 436909 556674. 1926.21 2.85 0.333538 0.327146 25186 138497 -1 1959 20 1197 2106 124320 29935 2.79101 2.79101 -104.316 -2.79101 0 0 706193. 2443.58 0.87 0.02 0.32 -1 -1 0.87 0.00564937 0.00503124 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 28.86 vpr 64.22 MiB -1 -1 2.74 21280 1 0.08 -1 -1 33544 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 7.70 1071 15639 5177 7703 2759 64.2 MiB 0.40 0.00 4.83798 -133.537 -4.83798 4.83798 2.27 7.6476e-05 6.0777e-05 0.0142363 0.0114557 36 2758 21 6.89349e+06 324158 648988. 2245.63 6.89 0.0615648 0.0513071 26050 158493 -1 2302 18 1377 2115 163695 35160 3.78876 3.78876 -128.419 -3.78876 0 0 828058. 2865.25 0.86 0.12 0.35 -1 -1 0.86 0.0105428 0.00937975 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 20.96 vpr 63.79 MiB -1 -1 0.29 21128 1 0.10 -1 -1 33676 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 25.2 MiB 6.22 990 13381 4387 7225 1769 63.8 MiB 0.23 0.00 3.7357 -124.935 -3.7357 3.7357 2.94 0.000158141 0.000125865 0.0131214 0.0104593 34 2226 21 6.89349e+06 239595 618332. 2139.56 4.00 0.577318 0.351787 25762 151098 -1 1912 21 1234 1820 133303 30491 3.11201 3.11201 -123.369 -3.11201 0 0 787024. 2723.27 0.91 0.11 0.30 -1 -1 0.91 0.0103176 0.00900796 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 21.87 vpr 63.79 MiB -1 -1 0.34 21128 1 0.08 -1 -1 33752 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 6.05 909 12754 4897 5949 1908 63.8 MiB 0.07 0.00 4.01762 -115.9 -4.01762 4.01762 2.53 0.000132799 0.00010365 0.0126227 0.00986177 34 2278 33 6.89349e+06 239595 618332. 2139.56 5.98 0.0506795 0.0414166 25762 151098 -1 1998 21 1029 1668 193909 63148 3.61455 3.61455 -117.663 -3.61455 0 0 787024. 2723.27 0.97 0.26 0.25 -1 -1 0.97 0.00960677 0.00840918 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 20.37 vpr 63.77 MiB -1 -1 0.57 21280 1 0.25 -1 -1 33740 -1 -1 20 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 770 10744 2793 6819 1132 63.8 MiB 0.27 0.00 4.27226 -116.484 -4.27226 4.27226 2.46 0.000147524 0.000117958 0.149002 0.00824494 34 2208 21 6.89349e+06 281877 618332. 2139.56 4.76 0.249153 0.102272 25762 151098 -1 1705 19 1133 1910 128252 31463 3.82765 3.82765 -122.486 -3.82765 0 0 787024. 2723.27 1.06 0.17 0.48 -1 -1 1.06 0.146382 0.145231 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 15.41 vpr 63.73 MiB -1 -1 0.56 21280 1 0.16 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.9 MiB 2.13 762 11106 3345 5408 2353 63.7 MiB 0.08 0.00 3.95122 -118.483 -3.95122 3.95122 2.73 0.000146478 0.000116101 0.0119581 0.00988952 32 2205 41 6.89349e+06 239595 586450. 2029.24 3.25 0.0422495 0.0356058 25474 144626 -1 1767 20 1241 2040 155089 37004 2.94736 2.94736 -113.578 -2.94736 0 0 744469. 2576.02 0.71 0.14 0.26 -1 -1 0.71 0.00961496 0.00840644 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 18.64 vpr 63.83 MiB -1 -1 0.41 21432 1 0.03 -1 -1 33792 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 25.1 MiB 4.98 947 14081 4218 7922 1941 63.8 MiB 0.13 0.00 3.58045 -111.985 -3.58045 3.58045 2.71 0.000150592 0.000119266 0.0100022 0.00805501 34 2183 24 6.89349e+06 253689 618332. 2139.56 4.24 0.0864726 0.0782567 25762 151098 -1 1888 17 1055 1549 124959 27488 2.96526 2.96526 -111.334 -2.96526 0 0 787024. 2723.27 0.71 0.07 0.24 -1 -1 0.71 0.00751459 0.00642917 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 20.80 vpr 63.95 MiB -1 -1 0.33 21280 1 0.11 -1 -1 33804 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 25.4 MiB 5.88 967 13763 3852 8263 1648 63.9 MiB 0.15 0.00 3.56757 -107.571 -3.56757 3.56757 2.31 0.000149774 0.000117813 0.0925902 0.0901656 34 2211 20 6.89349e+06 310065 618332. 2139.56 3.99 0.219681 0.210222 25762 151098 -1 1919 21 1319 1792 133626 30538 2.68166 2.68166 -105.653 -2.68166 0 0 787024. 2723.27 0.89 0.27 0.28 -1 -1 0.89 0.184225 0.182958 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 24.19 vpr 64.19 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33984 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 25.5 MiB 6.21 1340 9395 2079 6207 1109 64.2 MiB 0.14 0.00 4.57545 -132.533 -4.57545 4.57545 2.52 8.4226e-05 6.7783e-05 0.00503451 0.00413113 36 2944 20 6.89349e+06 352346 648988. 2245.63 6.30 0.473721 0.358325 26050 158493 -1 2516 22 1406 2458 184861 40610 3.93936 3.93936 -129.14 -3.93936 0 0 828058. 2865.25 0.90 0.21 0.26 -1 -1 0.90 0.0103301 0.00902842 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 25.06 vpr 64.46 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 25.7 MiB 7.15 1272 11983 3218 7752 1013 64.5 MiB 0.30 0.05 4.72237 -154.591 -4.72237 4.72237 2.46 0.000182637 0.000146584 0.158053 0.155323 36 3300 35 6.89349e+06 338252 648988. 2245.63 7.15 0.301791 0.289655 26050 158493 -1 2824 20 2224 3106 243367 52681 3.69635 3.69635 -143.014 -3.69635 0 0 828058. 2865.25 0.98 0.33 0.29 -1 -1 0.98 0.123518 0.122076 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 18.79 vpr 63.70 MiB -1 -1 0.47 21432 1 0.17 -1 -1 33696 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.2 MiB 4.48 841 12681 4546 5579 2556 63.7 MiB 0.09 0.00 4.0919 -121.826 -4.0919 4.0919 2.46 6.4517e-05 4.9961e-05 0.0111589 0.00889523 34 2184 25 6.89349e+06 253689 618332. 2139.56 4.61 0.052851 0.0435675 25762 151098 -1 1749 31 1232 2059 335521 138536 3.03485 3.03485 -111.97 -3.03485 0 0 787024. 2723.27 1.07 0.37 0.25 -1 -1 1.07 0.0107278 0.00910154 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 23.18 vpr 64.05 MiB -1 -1 0.33 21280 1 0.02 -1 -1 33904 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 25.4 MiB 7.83 1305 10618 3120 6525 973 64.0 MiB 0.22 0.00 4.27101 -135.48 -4.27101 4.27101 2.47 0.000182376 0.000148056 0.0114622 0.00929948 34 3173 45 6.89349e+06 352346 618332. 2139.56 5.47 0.182183 0.17048 25762 151098 -1 2697 22 1768 2621 206634 45615 3.61005 3.61005 -135.072 -3.61005 0 0 787024. 2723.27 0.90 0.16 0.25 -1 -1 0.90 0.0261556 0.0244935 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 27.70 vpr 64.15 MiB -1 -1 0.35 21432 1 0.06 -1 -1 33864 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 25.5 MiB 8.63 1252 16858 5939 8225 2694 64.1 MiB 0.39 0.00 5.45066 -163.759 -5.45066 5.45066 2.65 0.000229146 0.000188047 0.0179937 0.014615 36 3174 28 6.89349e+06 352346 648988. 2245.63 8.51 0.276731 0.165252 26050 158493 -1 2710 20 2061 2993 257997 53984 4.53995 4.53995 -156.682 -4.53995 0 0 828058. 2865.25 1.04 0.13 0.25 -1 -1 1.04 0.0115974 0.0101953 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 23.94 vpr 64.57 MiB -1 -1 0.50 21736 1 0.16 -1 -1 33784 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66116 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 25.8 MiB 7.73 1213 15688 5612 7679 2397 64.6 MiB 0.34 0.00 5.84064 -169.918 -5.84064 5.84064 2.54 0.000207408 0.000159411 0.0171914 0.0138646 34 3647 42 6.89349e+06 352346 618332. 2139.56 6.28 0.144176 0.132151 25762 151098 -1 2864 25 2196 3313 285768 66829 5.40808 5.40808 -173.675 -5.40808 0 0 787024. 2723.27 0.88 0.35 0.45 -1 -1 0.88 0.193491 0.191939 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 21.49 vpr 64.15 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33824 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 25.5 MiB 6.29 1263 9879 2667 6477 735 64.2 MiB 0.18 0.00 4.11004 -128.233 -4.11004 4.11004 2.30 8.4418e-05 6.5533e-05 0.0085894 0.00702498 36 2766 20 6.89349e+06 338252 648988. 2245.63 5.15 0.199224 0.110009 26050 158493 -1 2415 22 1610 2307 167831 36881 3.20466 3.20466 -120.439 -3.20466 0 0 828058. 2865.25 1.00 0.07 0.21 -1 -1 1.00 0.0124044 0.0106203 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 22.97 vpr 63.79 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33604 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 25.1 MiB 5.90 1023 13992 4497 7044 2451 63.8 MiB 0.36 0.00 4.45885 -119.521 -4.45885 4.45885 2.43 6.2569e-05 4.934e-05 0.0111908 0.00876703 34 2549 18 6.89349e+06 281877 618332. 2139.56 5.60 0.278267 0.0799272 25762 151098 -1 2088 21 1165 1640 132247 28991 3.7047 3.7047 -118.264 -3.7047 0 0 787024. 2723.27 0.73 0.07 0.20 -1 -1 0.73 0.0104538 0.00903745 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 28.93 vpr 64.66 MiB -1 -1 0.75 21888 1 0.16 -1 -1 33936 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 26.0 MiB 7.24 1484 18239 5692 9124 3423 64.7 MiB 0.31 0.00 5.31607 -168.894 -5.31607 5.31607 2.48 0.000202766 0.000164484 0.163627 0.160066 36 4388 31 6.89349e+06 436909 648988. 2245.63 11.40 0.371241 0.358157 26050 158493 -1 3294 23 2757 4157 326606 70776 4.48819 4.48819 -160.677 -4.48819 0 0 828058. 2865.25 0.85 0.27 0.39 -1 -1 0.85 0.0108999 0.00935499 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 20.37 vpr 63.79 MiB -1 -1 0.41 21128 1 0.22 -1 -1 33616 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 5.34 846 14606 5266 7102 2238 63.8 MiB 0.24 0.00 3.7437 -110.334 -3.7437 3.7437 2.80 0.000133293 0.000105081 0.012947 0.0103795 34 2165 23 6.89349e+06 253689 618332. 2139.56 4.19 0.204173 0.195921 25762 151098 -1 1930 20 1178 1601 118497 27392 3.02146 3.02146 -107.83 -3.02146 0 0 787024. 2723.27 1.01 0.14 0.37 -1 -1 1.01 0.117757 0.116637 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 18.75 vpr 64.16 MiB -1 -1 0.47 21432 1 0.19 -1 -1 33900 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 5.09 1166 14639 3979 9152 1508 64.2 MiB 0.31 0.00 4.78472 -144.026 -4.78472 4.78472 2.32 0.000162417 0.000131542 0.0144069 0.0117087 30 2873 22 6.89349e+06 324158 556674. 1926.21 3.01 0.0414557 0.0347172 25186 138497 -1 2298 18 1267 2011 140907 30722 3.7785 3.7785 -134.678 -3.7785 0 0 706193. 2443.58 0.98 0.07 0.23 -1 -1 0.98 0.00949522 0.00836261 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 23.51 vpr 64.31 MiB -1 -1 0.49 21584 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 25.5 MiB 7.31 1247 9495 2379 6397 719 64.3 MiB 0.22 0.00 4.43179 -132.548 -4.43179 4.43179 2.33 0.000181305 0.00014822 0.0100271 0.00815757 34 3354 35 6.89349e+06 324158 618332. 2139.56 5.32 0.0605553 0.0502183 25762 151098 -1 2766 20 1589 2479 199855 43969 3.7586 3.7586 -136.828 -3.7586 0 0 787024. 2723.27 1.17 0.21 0.35 -1 -1 1.17 0.0114649 0.010084 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 15.31 vpr 63.92 MiB -1 -1 0.33 21280 1 0.06 -1 -1 33716 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.2 MiB 2.03 983 11748 2712 8028 1008 63.9 MiB 0.31 0.00 4.26729 -129.037 -4.26729 4.26729 2.47 0.000158889 0.000127092 0.0103642 0.00837274 30 2359 20 6.89349e+06 366440 556674. 1926.21 2.71 0.135345 0.129445 25186 138497 -1 2080 23 1168 2312 157273 35494 3.5399 3.5399 -124.689 -3.5399 0 0 706193. 2443.58 0.85 0.04 0.28 -1 -1 0.85 0.010869 0.00949345 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 23.38 vpr 64.15 MiB -1 -1 0.40 21584 1 0.03 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 25.5 MiB 6.08 1053 12951 4521 6182 2248 64.2 MiB 0.21 0.00 4.44301 -128.576 -4.44301 4.44301 2.52 0.000166899 0.000132888 0.0202605 0.0111968 36 2766 29 6.89349e+06 324158 648988. 2245.63 6.60 0.0667079 0.0499854 26050 158493 -1 2198 23 1688 2397 202147 44724 3.11036 3.11036 -115.539 -3.11036 0 0 828058. 2865.25 1.03 0.15 0.32 -1 -1 1.03 0.0118027 0.0102965 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 24.13 vpr 64.14 MiB -1 -1 0.41 21432 1 0.11 -1 -1 33712 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 25.6 MiB 6.97 1202 11788 3122 7816 850 64.1 MiB 0.25 0.10 4.19329 -133.825 -4.19329 4.19329 2.49 0.000183749 0.000148657 0.0126274 0.010324 36 2908 34 6.89349e+06 338252 648988. 2245.63 6.10 0.179532 0.0537203 26050 158493 -1 2519 23 1772 2730 228071 48644 3.66955 3.66955 -130.973 -3.66955 0 0 828058. 2865.25 0.98 0.45 0.48 -1 -1 0.98 0.0136083 0.012064 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 21.47 vpr 64.14 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33708 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1324 15969 4574 9361 2034 64.1 MiB 0.44 0.00 4.16268 -137.652 -4.16268 4.16268 2.63 0.000185264 0.000149438 0.0173496 0.014153 34 3306 30 6.89349e+06 366440 618332. 2139.56 4.25 0.0703779 0.0585609 25762 151098 -1 2613 35 2421 3460 433837 152341 3.23786 3.23786 -127.791 -3.23786 0 0 787024. 2723.27 0.80 0.32 0.21 -1 -1 0.80 0.0174378 0.0151386 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 20.71 vpr 63.71 MiB -1 -1 0.42 21128 1 0.23 -1 -1 33856 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 25.2 MiB 5.93 1043 15337 4572 8852 1913 63.7 MiB 0.27 0.00 4.60527 -135.983 -4.60527 4.60527 2.38 0.000151061 0.000118608 0.00866557 0.00693249 34 2447 21 6.89349e+06 295971 618332. 2139.56 4.67 0.184195 0.175787 25762 151098 -1 2097 19 1155 1733 125369 28657 4.00016 4.00016 -131.526 -4.00016 0 0 787024. 2723.27 0.99 0.06 0.49 -1 -1 0.99 0.00991432 0.00858093 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 21.76 vpr 63.96 MiB -1 -1 0.74 21584 1 0.17 -1 -1 33968 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.2 MiB 5.06 999 13883 3878 7792 2213 64.0 MiB 0.30 0.00 4.84598 -138.728 -4.84598 4.84598 2.74 0.000152575 0.00012219 0.122713 0.120135 34 2662 35 6.89349e+06 310065 618332. 2139.56 5.00 0.206561 0.1953 25762 151098 -1 2249 18 1376 1994 140570 32119 3.8456 3.8456 -130.88 -3.8456 0 0 787024. 2723.27 1.03 0.11 0.43 -1 -1 1.03 0.00974207 0.00861996 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 20.99 vpr 64.38 MiB -1 -1 0.47 21584 1 0.02 -1 -1 33664 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 25.5 MiB 4.92 1200 9111 2304 5966 841 64.4 MiB 0.05 0.00 4.69282 -141.391 -4.69282 4.69282 2.41 0.000178572 0.000145133 0.00648746 0.00525394 34 3322 27 6.89349e+06 338252 618332. 2139.56 6.69 0.0559609 0.0465733 25762 151098 -1 2687 20 1784 2831 220165 49356 4.12199 4.12199 -138.153 -4.12199 0 0 787024. 2723.27 0.90 0.27 0.37 -1 -1 0.90 0.0119034 0.0105188 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 26.04 vpr 64.46 MiB -1 -1 0.48 21584 1 0.19 -1 -1 33508 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 25.7 MiB 8.53 1343 12167 3516 8024 627 64.5 MiB 0.31 0.04 4.50405 -138.501 -4.50405 4.50405 2.48 0.0390411 0.0390027 0.242501 0.239967 38 3202 26 6.89349e+06 352346 678818. 2348.85 5.83 0.293853 0.28163 26626 170182 -1 2797 19 1761 2600 192101 40142 3.86596 3.86596 -136.397 -3.86596 0 0 902133. 3121.57 0.87 0.04 0.37 -1 -1 0.87 0.00867032 0.00763446 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 19.98 vpr 63.59 MiB -1 -1 0.50 21128 1 0.12 -1 -1 33556 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 25.1 MiB 5.65 626 7008 1670 4854 484 63.6 MiB 0.04 0.00 3.61459 -104.917 -3.61459 3.61459 2.67 0.000127579 9.9978e-05 0.00710085 0.00559399 34 2255 39 6.89349e+06 211408 618332. 2139.56 5.01 0.0472596 0.0387255 25762 151098 -1 1534 21 1103 1639 109289 28405 2.72791 2.72791 -97.7045 -2.72791 0 0 787024. 2723.27 0.88 0.14 0.38 -1 -1 0.88 0.119369 0.118679 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 21.84 vpr 64.22 MiB -1 -1 0.29 21280 1 0.05 -1 -1 33924 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 25.5 MiB 4.38 1155 12345 3444 6961 1940 64.2 MiB 0.16 0.00 4.26535 -147.353 -4.26535 4.26535 2.87 0.000160263 0.000127956 0.0299192 0.0270681 34 3076 30 6.89349e+06 281877 618332. 2139.56 5.54 0.184282 0.173925 25762 151098 -1 2487 22 1956 2642 242136 49222 3.74935 3.74935 -148.334 -3.74935 0 0 787024. 2723.27 1.06 0.16 0.53 -1 -1 1.06 0.0134525 0.0116382 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 25.54 vpr 64.24 MiB -1 -1 0.28 21584 1 0.19 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 25.7 MiB 7.14 1356 17711 6423 8690 2598 64.2 MiB 0.29 0.00 5.51412 -162.32 -5.51412 5.51412 2.28 0.000243559 0.000202251 0.0641045 0.0604416 34 3734 45 6.89349e+06 352346 618332. 2139.56 7.59 0.481313 0.468255 25762 151098 -1 2852 21 1994 3095 235675 53439 4.68885 4.68885 -157.727 -4.68885 0 0 787024. 2723.27 0.94 0.30 0.35 -1 -1 0.94 0.125407 0.123868 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 24.40 vpr 64.20 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33936 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 25.5 MiB 6.80 1176 13694 3960 8110 1624 64.2 MiB 0.26 0.00 4.43296 -141.765 -4.43296 4.43296 2.85 7.9431e-05 6.1889e-05 0.0112061 0.00943761 36 2597 19 6.89349e+06 310065 648988. 2245.63 6.72 0.146085 0.0507587 26050 158493 -1 2335 18 1526 2255 185076 38993 3.01051 3.01051 -123.037 -3.01051 0 0 828058. 2865.25 0.69 0.16 0.28 -1 -1 0.69 0.126641 0.125282 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 20.00 vpr 63.73 MiB -1 -1 0.27 21280 1 0.09 -1 -1 33768 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65260 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 25.2 MiB 4.79 953 10979 2941 7323 715 63.7 MiB 0.21 0.00 4.13238 -125.523 -4.13238 4.13238 2.81 0.00015005 0.000118858 0.00707004 0.00557941 34 2254 24 6.89349e+06 380534 618332. 2139.56 4.82 0.0457448 0.0376598 25762 151098 -1 2013 22 1356 2162 198958 42605 3.39485 3.39485 -121.521 -3.39485 0 0 787024. 2723.27 1.02 0.15 0.36 -1 -1 1.02 0.0523629 0.00843968 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 34.47 vpr 64.69 MiB -1 -1 0.34 21736 1 0.17 -1 -1 33908 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.0 MiB 11.68 1587 13555 4266 6864 2425 64.7 MiB 0.44 0.00 6.66529 -189.759 -6.66529 6.66529 2.09 0.000191159 0.000153143 0.0559942 0.053203 36 3787 26 6.89349e+06 380534 648988. 2245.63 11.99 0.18235 0.133739 26050 158493 -1 3300 21 2337 3726 323115 67739 5.11714 5.11714 -175.516 -5.11714 0 0 828058. 2865.25 1.19 0.33 0.21 -1 -1 1.19 0.155697 0.153936 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 20.23 vpr 64.16 MiB -1 -1 0.69 21584 1 0.03 -1 -1 33960 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 25.4 MiB 4.71 1084 14035 4347 7601 2087 64.2 MiB 0.22 0.00 4.71732 -146.054 -4.71732 4.71732 3.00 0.000158516 0.000125927 0.014086 0.011392 34 2665 25 6.89349e+06 295971 618332. 2139.56 5.05 0.152688 0.143841 25762 151098 -1 2181 22 1699 2407 168402 38947 3.8375 3.8375 -138.918 -3.8375 0 0 787024. 2723.27 0.82 0.02 0.30 -1 -1 0.82 0.00659974 0.00590448 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 17.30 vpr 63.68 MiB -1 -1 0.48 20976 1 0.03 -1 -1 33484 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.1 MiB 2.05 733 14713 4574 7961 2178 63.7 MiB 0.39 0.00 3.6346 -103.696 -3.6346 3.6346 2.99 0.000133784 0.000104322 0.127527 0.00840601 34 1906 21 6.89349e+06 338252 618332. 2139.56 4.33 0.257882 0.133671 25762 151098 -1 1531 18 844 1462 108240 25496 2.80501 2.80501 -101.087 -2.80501 0 0 787024. 2723.27 0.88 0.14 0.35 -1 -1 0.88 0.00724094 0.00628905 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 21.96 vpr 64.11 MiB -1 -1 0.46 21280 1 0.21 -1 -1 33596 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 5.87 1286 14679 3997 8814 1868 64.1 MiB 0.28 0.00 5.36187 -142.911 -5.36187 5.36187 2.16 0.000175792 0.00014046 0.0148892 0.0120684 36 2850 21 6.89349e+06 324158 648988. 2245.63 6.61 0.122603 0.111944 26050 158493 -1 2566 22 1351 2504 229048 46874 4.49165 4.49165 -140.844 -4.49165 0 0 828058. 2865.25 0.96 0.29 0.37 -1 -1 0.96 0.116779 0.115266 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 15.99 vpr 63.72 MiB -1 -1 0.25 21128 1 0.23 -1 -1 33748 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.1 MiB 2.26 839 14303 4497 7906 1900 63.7 MiB 0.21 0.00 3.56945 -113.475 -3.56945 3.56945 2.32 0.000137515 0.000108184 0.011778 0.00932198 34 2028 26 6.89349e+06 267783 618332. 2139.56 3.74 0.159196 0.151276 25762 151098 -1 1724 20 1026 1876 147325 31715 2.81586 2.81586 -107.951 -2.81586 0 0 787024. 2723.27 0.97 0.08 0.30 -1 -1 0.97 0.00823069 0.00682716 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 20.40 vpr 63.73 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33900 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 25.2 MiB 4.82 765 9872 2693 6531 648 63.7 MiB 0.23 0.00 4.06868 -115.875 -4.06868 4.06868 2.47 0.000138523 0.000109592 0.103906 0.102106 36 2037 21 6.89349e+06 281877 648988. 2245.63 5.18 0.261776 0.25349 26050 158493 -1 1725 19 1151 1651 123279 28535 3.27511 3.27511 -112.954 -3.27511 0 0 828058. 2865.25 1.00 0.13 0.31 -1 -1 1.00 0.0078477 0.00685102 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 26.71 vpr 64.15 MiB -1 -1 0.32 21280 1 0.02 -1 -1 33952 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 11.40 1238 16215 4925 9204 2086 64.2 MiB 0.26 0.00 4.47797 -134.56 -4.47797 4.47797 2.34 0.000181848 0.000149429 0.119696 0.116428 34 3148 29 6.89349e+06 366440 618332. 2139.56 5.06 0.335322 0.154526 25762 151098 -1 2482 23 1798 2645 192061 44510 3.62725 3.62725 -129.121 -3.62725 0 0 787024. 2723.27 1.11 0.14 0.34 -1 -1 1.11 0.0124727 0.0109654 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 22.38 vpr 64.33 MiB -1 -1 0.62 21128 1 0.06 -1 -1 33576 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 25.5 MiB 5.93 1158 9158 2522 5945 691 64.3 MiB 0.32 0.00 5.08364 -155.965 -5.08364 5.08364 2.12 0.00021094 0.000172734 0.0105648 0.00865069 34 3265 45 6.89349e+06 310065 618332. 2139.56 5.59 0.176481 0.16554 25762 151098 -1 2677 20 1821 2669 195441 45785 4.26489 4.26489 -151.208 -4.26489 0 0 787024. 2723.27 1.01 0.06 0.25 -1 -1 1.01 0.0111339 0.00967436 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 21.35 vpr 64.05 MiB -1 -1 0.31 21280 1 0.21 -1 -1 33604 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 25.4 MiB 5.39 1179 9495 2108 6587 800 64.0 MiB 0.27 0.00 5.42099 -154.483 -5.42099 5.42099 2.69 0.000231471 0.000194874 0.0108126 0.00894246 36 3089 22 6.89349e+06 324158 648988. 2245.63 6.21 0.472744 0.13703 26050 158493 -1 2679 22 1863 2759 218703 47951 4.88775 4.88775 -161.286 -4.88775 0 0 828058. 2865.25 0.90 0.10 0.44 -1 -1 0.90 0.0131315 0.0115332 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 17.67 vpr 63.82 MiB -1 -1 0.41 21280 1 0.27 -1 -1 33524 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.2 MiB 5.01 809 7684 1992 5210 482 63.8 MiB 0.11 0.00 4.51797 -123.273 -4.51797 4.51797 2.40 0.000137539 0.000109505 0.00799187 0.00644564 30 2237 24 6.89349e+06 211408 556674. 1926.21 2.79 0.033585 0.0280054 25186 138497 -1 1774 18 900 1288 91307 20980 3.18905 3.18905 -113.358 -3.18905 0 0 706193. 2443.58 0.91 0.03 0.31 -1 -1 0.91 0.00875331 0.00772807 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 20.03 vpr 64.12 MiB -1 -1 0.46 21280 1 0.07 -1 -1 33632 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 25.4 MiB 5.82 1070 14483 4888 7061 2534 64.1 MiB 0.41 0.00 3.67535 -124.357 -3.67535 3.67535 2.74 0.000155012 0.000123106 0.0146842 0.0117282 36 2551 21 6.89349e+06 281877 648988. 2245.63 4.10 0.0533338 0.0440892 26050 158493 -1 2220 16 1362 1896 131066 29818 3.42295 3.42295 -124.954 -3.42295 0 0 828058. 2865.25 1.06 0.22 0.25 -1 -1 1.06 0.00921183 0.00807401 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 24.57 vpr 64.20 MiB -1 -1 0.45 21280 1 0.13 -1 -1 33880 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 25.5 MiB 7.78 978 15493 5829 7048 2616 64.2 MiB 0.18 0.00 3.74244 -106.797 -3.74244 3.74244 2.75 0.000158246 0.000126657 0.0150579 0.0121518 36 2729 30 6.89349e+06 366440 648988. 2245.63 6.40 0.173613 0.162962 26050 158493 -1 2255 25 1674 2511 187286 43762 3.33836 3.33836 -110.581 -3.33836 0 0 828058. 2865.25 1.18 0.09 0.33 -1 -1 1.18 0.0369334 0.0107638 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 19.91 vpr 63.88 MiB -1 -1 0.67 21128 1 0.16 -1 -1 33764 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 4.57 909 14123 3981 8851 1291 63.9 MiB 0.26 0.00 4.4511 -113.633 -4.4511 4.4511 2.39 0.000133776 0.000105272 0.180451 0.178298 34 2249 22 6.89349e+06 324158 618332. 2139.56 4.87 0.217041 0.208433 25762 151098 -1 1933 21 1113 1927 152728 34237 3.56526 3.56526 -111.597 -3.56526 0 0 787024. 2723.27 0.97 0.04 0.50 -1 -1 0.97 0.00940156 0.00821871 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 22.57 vpr 63.92 MiB -1 -1 0.59 21432 1 0.15 -1 -1 33852 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 25.4 MiB 8.14 1061 15203 4868 8207 2128 63.9 MiB 0.30 0.00 4.60916 -138.593 -4.60916 4.60916 2.62 0.000153547 0.000121529 0.0147817 0.0119665 34 2809 29 6.89349e+06 295971 618332. 2139.56 4.94 0.146731 0.136262 25762 151098 -1 2270 20 1711 2405 200868 43200 3.8459 3.8459 -136.425 -3.8459 0 0 787024. 2723.27 0.69 0.18 0.33 -1 -1 0.69 0.00728554 0.00641479 130 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 23.77 vpr 63.92 MiB -1 -1 0.40 21280 1 0.20 -1 -1 33724 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 25.4 MiB 7.03 1154 13443 3441 8088 1914 63.9 MiB 0.34 0.00 4.07374 -139.312 -4.07374 4.07374 2.27 0.00016575 0.00012968 0.218277 0.215377 36 2669 24 6.89349e+06 281877 648988. 2245.63 5.63 0.266215 0.255767 26050 158493 -1 2331 22 1487 1998 151487 33232 3.09105 3.09105 -125.673 -3.09105 0 0 828058. 2865.25 1.14 0.02 0.28 -1 -1 1.14 0.00550433 0.00469847 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 20.36 vpr 63.93 MiB -1 -1 0.27 21128 1 0.42 -1 -1 33604 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.4 MiB 2.24 955 9679 2173 6860 646 63.9 MiB 0.24 0.00 4.69362 -132.871 -4.69362 4.69362 2.35 0.000150226 0.000120644 0.0407615 0.00696356 30 2522 22 6.89349e+06 436909 556674. 1926.21 9.30 0.165277 0.123646 25186 138497 -1 1987 18 919 1672 119220 26827 3.39635 3.39635 -119.763 -3.39635 0 0 706193. 2443.58 0.89 0.05 0.34 -1 -1 0.89 0.00911603 0.00806411 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 25.41 vpr 64.28 MiB -1 -1 0.38 21432 1 0.23 -1 -1 33972 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.5 MiB 6.60 941 15063 4400 7415 3248 64.3 MiB 0.37 0.00 4.82162 -147.572 -4.82162 4.82162 2.15 0.000162229 0.000129513 0.0841057 0.0811864 36 2908 28 6.89349e+06 324158 648988. 2245.63 7.91 0.130746 0.120406 26050 158493 -1 2183 23 1824 2782 213354 50451 4.03946 4.03946 -138.68 -4.03946 0 0 828058. 2865.25 0.85 0.19 0.27 -1 -1 0.85 0.0881961 0.0864791 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 24.97 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33548 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 25.7 MiB 6.13 1350 12331 3666 6215 2450 64.4 MiB 0.28 0.00 5.44225 -166.483 -5.44225 5.44225 2.09 0.000204204 0.000167247 0.012945 0.0105622 34 3934 50 6.89349e+06 380534 618332. 2139.56 9.26 0.282495 0.269832 25762 151098 -1 2785 21 2139 3000 277051 60549 4.55095 4.55095 -162.881 -4.55095 0 0 787024. 2723.27 0.77 0.43 0.28 -1 -1 0.77 0.175876 0.174293 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 26.30 vpr 64.32 MiB -1 -1 0.62 21432 1 0.13 -1 -1 33596 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 25.5 MiB 6.74 1256 15366 4541 7767 3058 64.3 MiB 0.26 0.00 4.55797 -146.919 -4.55797 4.55797 2.46 0.000173389 0.000138913 0.0168525 0.0137073 36 3206 25 6.89349e+06 366440 648988. 2245.63 8.46 0.0670195 0.055905 26050 158493 -1 2691 20 1778 2589 202528 44258 3.77455 3.77455 -140.722 -3.77455 0 0 828058. 2865.25 0.95 0.23 0.31 -1 -1 0.95 0.0122185 0.0108175 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 20.54 vpr 63.87 MiB -1 -1 0.39 21128 1 0.02 -1 -1 33888 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 5.47 896 15383 5005 7997 2381 63.9 MiB 0.28 0.00 4.16933 -123.957 -4.16933 4.16933 2.83 0.000145567 0.000105814 0.0132442 0.0105646 34 2255 20 6.89349e+06 295971 618332. 2139.56 4.00 0.0482679 0.0398604 25762 151098 -1 1950 23 1239 1726 166521 34490 3.09671 3.09671 -112.07 -3.09671 0 0 787024. 2723.27 0.87 0.19 0.30 -1 -1 0.87 0.010198 0.00885843 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 25.43 vpr 64.20 MiB -1 -1 0.39 21432 1 0.17 -1 -1 34064 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 25.5 MiB 8.51 1198 5938 1274 4302 362 64.2 MiB 0.18 0.00 5.49187 -164.452 -5.49187 5.49187 2.04 0.000193889 0.000145403 0.0296397 0.0282922 34 3051 34 6.89349e+06 366440 618332. 2139.56 5.80 0.0770409 0.068139 25762 151098 -1 2580 20 1865 2528 220135 47612 4.59669 4.59669 -160.513 -4.59669 0 0 787024. 2723.27 1.21 0.25 0.47 -1 -1 1.21 0.0115218 0.0102854 162 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 20.64 vpr 64.15 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.4 MiB 5.30 1140 15255 5147 8101 2007 64.2 MiB 0.45 0.00 5.21835 -154.719 -5.21835 5.21835 2.00 0.000163035 0.000128621 0.0157478 0.0126687 34 2848 21 6.89349e+06 324158 618332. 2139.56 5.75 0.224547 0.0521443 25762 151098 -1 2452 21 1640 2738 249504 52720 4.0231 4.0231 -141.136 -4.0231 0 0 787024. 2723.27 1.07 0.16 0.25 -1 -1 1.07 0.00805975 0.00704008 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 23.77 vpr 64.03 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33776 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 25.5 MiB 6.83 1179 13505 4412 7143 1950 64.0 MiB 0.19 0.00 4.98904 -144.643 -4.98904 4.98904 2.90 0.000159733 0.000128128 0.0137356 0.0111582 38 2759 30 6.89349e+06 324158 678818. 2348.85 5.97 0.184194 0.173879 26626 170182 -1 2440 19 1314 2028 181681 37011 4.15485 4.15485 -140.802 -4.15485 0 0 902133. 3121.57 1.00 0.04 0.23 -1 -1 1.00 0.0102647 0.00907893 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 24.91 vpr 64.27 MiB -1 -1 0.49 21280 1 0.18 -1 -1 33832 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 25.7 MiB 7.78 1244 15103 4566 8211 2326 64.3 MiB 0.26 0.00 4.69488 -139.913 -4.69488 4.69488 2.40 0.000185554 0.00015161 0.0159818 0.0129162 36 2900 49 6.89349e+06 366440 648988. 2245.63 6.60 0.178138 0.166468 26050 158493 -1 2417 22 1825 2690 193242 42062 3.69799 3.69799 -131.492 -3.69799 0 0 828058. 2865.25 0.86 0.10 0.31 -1 -1 0.86 0.0090156 0.00780908 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 26.99 vpr 64.36 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33832 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 25.7 MiB 9.80 1232 16599 5975 8052 2572 64.4 MiB 0.48 0.00 5.50928 -158.621 -5.50928 5.50928 2.77 0.000170116 0.000135799 0.0172355 0.013889 34 3271 23 6.89349e+06 324158 618332. 2139.56 5.55 0.184658 0.173751 25762 151098 -1 2589 22 1900 2887 231938 49963 4.39435 4.39435 -155.2 -4.39435 0 0 787024. 2723.27 1.16 0.11 0.32 -1 -1 1.16 0.0122461 0.0106283 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 21.88 vpr 64.45 MiB -1 -1 0.35 21280 1 0.06 -1 -1 33804 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 25.8 MiB 5.97 1305 10699 2770 6940 989 64.4 MiB 0.29 0.00 4.6273 -137.721 -4.6273 4.6273 2.25 0.000190568 0.000153878 0.177611 0.00927994 36 2780 26 6.89349e+06 422815 648988. 2245.63 6.12 0.314205 0.138065 26050 158493 -1 2445 20 1548 2135 144509 33144 3.4748 3.4748 -124.133 -3.4748 0 0 828058. 2865.25 0.92 0.16 0.47 -1 -1 0.92 0.0123846 0.0109614 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 13.98 vpr 63.70 MiB -1 -1 0.43 20976 1 0.03 -1 -1 34100 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 1.68 779 13381 4026 7576 1779 63.7 MiB 0.13 0.00 4.15903 -123.364 -4.15903 4.15903 2.35 0.000129179 0.000101415 0.0116914 0.00939573 30 1811 19 6.89349e+06 239595 556674. 1926.21 2.60 0.0333979 0.0276437 25186 138497 -1 1542 20 745 1194 79326 18467 2.80671 2.80671 -105.542 -2.80671 0 0 706193. 2443.58 1.17 0.04 0.48 -1 -1 1.17 0.0170474 0.0160413 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 22.89 vpr 64.39 MiB -1 -1 0.28 21280 1 0.20 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 25.7 MiB 5.92 1363 14741 4757 7501 2483 64.4 MiB 0.11 0.00 5.7749 -170.63 -5.7749 5.7749 2.96 0.000165631 0.00013264 0.010877 0.00874846 38 2791 29 6.89349e+06 352346 678818. 2348.85 6.75 0.266175 0.252132 26626 170182 -1 2525 19 1500 2156 164571 35271 4.25068 4.25068 -147.335 -4.25068 0 0 902133. 3121.57 1.09 0.02 0.32 -1 -1 1.09 0.00660438 0.00591996 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 32.15 vpr 64.40 MiB -1 -1 0.30 21280 1 0.12 -1 -1 33512 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 25.7 MiB 11.10 1408 14543 4021 8480 2042 64.4 MiB 0.34 0.00 5.38563 -175.555 -5.38563 5.38563 2.57 0.000204368 0.00016567 0.212069 0.209123 34 3658 36 6.89349e+06 352346 618332. 2139.56 10.79 0.582621 0.565787 25762 151098 -1 2905 20 2190 3138 275923 60217 4.60928 4.60928 -169.451 -4.60928 0 0 787024. 2723.27 0.85 0.23 0.26 -1 -1 0.85 0.0124664 0.0110569 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 23.11 vpr 63.67 MiB -1 -1 0.33 21128 1 0.12 -1 -1 33724 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.1 MiB 8.98 833 8448 2039 5944 465 63.7 MiB 0.06 0.00 4.14342 -115.158 -4.14342 4.14342 2.51 0.000147778 0.000118352 0.00858533 0.00694423 34 2126 22 6.89349e+06 253689 618332. 2139.56 4.34 0.149866 0.142818 25762 151098 -1 1850 19 1229 1651 116347 27406 2.87616 2.87616 -103.554 -2.87616 0 0 787024. 2723.27 0.96 0.21 0.34 -1 -1 0.96 0.00842915 0.00737429 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 15.11 vpr 63.60 MiB -1 -1 0.57 21128 1 0.39 -1 -1 33792 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65128 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.9 MiB 2.01 851 11783 3652 6352 1779 63.6 MiB 0.09 0.00 4.15709 -122.39 -4.15709 4.15709 2.44 0.000131275 0.000103685 0.0101455 0.00816832 32 2162 37 6.89349e+06 281877 586450. 2029.24 3.02 0.142633 0.136407 25474 144626 -1 1820 20 1206 1988 166657 36264 2.86611 2.86611 -109.421 -2.86611 0 0 744469. 2576.02 1.22 0.25 0.58 -1 -1 1.22 0.0617261 0.0606918 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 21.74 vpr 64.25 MiB -1 -1 0.73 21280 1 0.13 -1 -1 34060 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 6.26 1128 5463 1080 3935 448 64.2 MiB 0.02 0.00 4.60732 -147.469 -4.60732 4.60732 2.85 8.3022e-05 6.5473e-05 0.00313374 0.0025469 34 2986 22 6.89349e+06 324158 618332. 2139.56 4.43 0.0510189 0.0427267 25762 151098 -1 2576 22 1848 2639 205468 44723 3.81745 3.81745 -144.162 -3.81745 0 0 787024. 2723.27 0.88 0.17 0.41 -1 -1 0.88 0.0542968 0.0527716 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 22.46 vpr 64.18 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33732 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 6.02 1149 15639 4916 8896 1827 64.2 MiB 0.20 0.00 4.95049 -142.516 -4.95049 4.95049 2.61 0.000177933 0.000144383 0.0157059 0.0127585 36 2484 31 6.89349e+06 324158 648988. 2245.63 6.14 0.193422 0.0559911 26050 158493 -1 2192 17 1390 1998 142878 33097 4.10595 4.10595 -134.504 -4.10595 0 0 828058. 2865.25 0.96 0.11 0.26 -1 -1 0.96 0.0108504 0.009661 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 16.53 vpr 64.28 MiB -1 -1 0.50 21584 1 0.11 -1 -1 33644 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 2.05 1164 18660 4771 12167 1722 64.3 MiB 0.25 0.00 5.17601 -145.908 -5.17601 5.17601 2.93 0.000177074 0.000140351 0.0171829 0.0137555 30 2907 20 6.89349e+06 507378 556674. 1926.21 3.68 0.051244 0.0432518 25186 138497 -1 2337 23 1541 2927 191095 44081 4.29189 4.29189 -141.668 -4.29189 0 0 706193. 2443.58 1.05 0.08 0.17 -1 -1 1.05 0.0127475 0.0111675 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 19.33 vpr 64.14 MiB -1 -1 0.49 21280 1 0.21 -1 -1 33732 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 25.4 MiB 5.02 1063 8727 2092 6073 562 64.1 MiB 0.19 0.00 3.88834 -114.425 -3.88834 3.88834 2.49 0.000157164 0.000124618 0.0088473 0.00720077 34 2680 27 6.89349e+06 352346 618332. 2139.56 4.40 0.163025 0.154217 25762 151098 -1 2246 24 2014 2925 210422 47024 3.00136 3.00136 -105.925 -3.00136 0 0 787024. 2723.27 1.04 0.10 0.35 -1 -1 1.04 0.0117087 0.010213 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 22.21 vpr 63.61 MiB -1 -1 0.42 21280 1 0.20 -1 -1 34212 -1 -1 20 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 24.9 MiB 4.97 671 12416 5199 6032 1185 63.6 MiB 0.21 0.00 4.37503 -112.665 -4.37503 4.37503 3.09 0.000129922 0.00010165 0.0114461 0.00910148 36 1798 46 6.89349e+06 281877 648988. 2245.63 5.88 0.293177 0.102297 26050 158493 -1 1495 16 1035 1508 126330 31089 4.20355 4.20355 -115.594 -4.20355 0 0 828058. 2865.25 0.85 0.20 0.57 -1 -1 0.85 0.168288 0.167406 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 32.30 vpr 64.62 MiB -1 -1 0.57 21584 1 0.19 -1 -1 33808 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 25.8 MiB 10.54 1548 10495 2998 6825 672 64.6 MiB 0.28 0.00 4.58631 -145.891 -4.58631 4.58631 3.18 0.000217986 0.00017784 0.081175 0.0789575 36 3695 31 6.89349e+06 380534 648988. 2245.63 10.29 0.152387 0.141344 26050 158493 -1 3222 19 2063 3223 245817 53698 4.34139 4.34139 -147.194 -4.34139 0 0 828058. 2865.25 0.92 0.03 0.17 -1 -1 0.92 0.00747472 0.00668442 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 23.01 vpr 64.51 MiB -1 -1 0.42 21584 1 0.02 -1 -1 33528 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 25.8 MiB 6.69 1076 15639 5741 7479 2419 64.5 MiB 0.43 0.00 5.4794 -158.779 -5.4794 5.4794 2.29 0.000174894 0.000140044 0.27292 0.269701 36 3098 30 6.89349e+06 338252 648988. 2245.63 6.39 0.557437 0.441769 26050 158493 -1 2267 23 2051 2967 192027 45783 4.52198 4.52198 -150.578 -4.52198 0 0 828058. 2865.25 0.87 0.08 0.32 -1 -1 0.87 0.0121644 0.0106245 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 21.60 vpr 64.20 MiB -1 -1 0.36 21584 1 0.06 -1 -1 33932 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 25.5 MiB 6.07 1166 15523 4854 8569 2100 64.2 MiB 0.36 0.00 4.30939 -141.47 -4.30939 4.30939 2.54 0.00016881 0.000131832 0.0698507 0.0666225 34 2899 42 6.89349e+06 295971 618332. 2139.56 4.71 0.204328 0.112313 25762 151098 -1 2437 26 1907 2549 229050 49696 3.5282 3.5282 -138.137 -3.5282 0 0 787024. 2723.27 0.90 0.05 0.48 -1 -1 0.90 0.0122093 0.0106321 137 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 22.33 vpr 64.13 MiB -1 -1 0.34 21584 1 0.16 -1 -1 33904 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 25.5 MiB 6.16 1094 11617 2997 7709 911 64.1 MiB 0.07 0.00 5.20986 -144.706 -5.20986 5.20986 2.49 0.00016337 0.000130837 0.0120427 0.00981594 34 2652 23 6.89349e+06 295971 618332. 2139.56 5.52 0.148601 0.139401 25762 151098 -1 2163 20 1231 1828 141013 31610 3.72616 3.72616 -128.964 -3.72616 0 0 787024. 2723.27 1.03 0.09 0.30 -1 -1 1.03 0.0592577 0.0579475 135 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 21.74 vpr 64.39 MiB -1 -1 0.46 21584 1 0.13 -1 -1 33808 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 25.7 MiB 7.05 1250 13751 4489 7484 1778 64.4 MiB 0.38 0.04 4.48785 -130.629 -4.48785 4.48785 2.88 0.0394262 0.000164113 0.0512839 0.00977326 34 3040 22 6.89349e+06 366440 618332. 2139.56 4.20 0.152598 0.103546 25762 151098 -1 2564 18 1728 2629 184543 42607 4.0604 4.0604 -128.889 -4.0604 0 0 787024. 2723.27 0.80 0.26 0.20 -1 -1 0.80 0.0113901 0.0100323 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 24.92 vpr 64.16 MiB -1 -1 0.67 21432 1 0.02 -1 -1 34064 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 25.4 MiB 7.27 1146 9158 2597 5794 767 64.2 MiB 0.32 0.00 4.26851 -119.64 -4.26851 4.26851 3.09 0.000157528 0.000127065 0.0589576 0.0571749 34 3101 28 6.89349e+06 338252 618332. 2139.56 6.53 0.667182 0.657828 25762 151098 -1 2575 18 1343 2150 176039 37969 3.456 3.456 -117.55 -3.456 0 0 787024. 2723.27 0.98 0.12 0.38 -1 -1 0.98 0.0101841 0.00899752 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 26.40 vpr 64.28 MiB -1 -1 0.35 21432 1 0.12 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.5 MiB 8.30 1212 14828 4814 7843 2171 64.3 MiB 0.16 0.00 4.88838 -154.361 -4.88838 4.88838 2.40 0.000186929 0.000139129 0.0168369 0.0137369 36 2984 22 6.89349e+06 310065 648988. 2245.63 7.18 0.0680473 0.0569205 26050 158493 -1 2636 20 1645 2634 228939 46913 3.99939 3.99939 -144.13 -3.99939 0 0 828058. 2865.25 0.89 0.26 0.35 -1 -1 0.89 0.0800076 0.0102794 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 24.87 vpr 64.45 MiB -1 -1 0.42 21584 1 0.20 -1 -1 33388 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 25.7 MiB 8.55 1282 15969 5653 7267 3049 64.4 MiB 0.30 0.00 4.10098 -137.106 -4.10098 4.10098 2.19 9.2791e-05 7.1517e-05 0.0798272 0.0765536 34 3469 29 6.89349e+06 366440 618332. 2139.56 6.08 0.31073 0.298644 25762 151098 -1 2577 22 2108 2976 221177 51691 3.61546 3.61546 -136.434 -3.61546 0 0 787024. 2723.27 0.91 0.25 0.30 -1 -1 0.91 0.154424 0.0115099 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 19.96 vpr 63.85 MiB -1 -1 0.29 21128 1 0.17 -1 -1 33804 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.1 MiB 4.49 640 9706 2308 6853 545 63.8 MiB 0.28 0.00 4.18793 -120.962 -4.18793 4.18793 2.42 0.000135154 0.000106849 0.00898731 0.00710241 34 1711 40 6.89349e+06 281877 618332. 2139.56 4.21 0.0452745 0.0372849 25762 151098 -1 1396 22 1306 1759 120180 30461 3.46451 3.46451 -114.15 -3.46451 0 0 787024. 2723.27 1.16 0.15 0.28 -1 -1 1.16 0.0102211 0.00900716 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 20.98 vpr 63.81 MiB -1 -1 0.38 21280 1 0.02 -1 -1 34044 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 25.2 MiB 3.74 1151 15456 4811 8697 1948 63.8 MiB 0.15 0.00 4.32729 -137.057 -4.32729 4.32729 2.39 6.9456e-05 5.3731e-05 0.00831482 0.00661248 36 2629 22 6.89349e+06 281877 648988. 2245.63 7.12 0.236735 0.21181 26050 158493 -1 2352 19 1523 2100 174325 37350 3.5651 3.5651 -130.487 -3.5651 0 0 828058. 2865.25 0.81 0.17 0.29 -1 -1 0.81 0.0100452 0.00876141 125 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 26.98 vpr 64.29 MiB -1 -1 0.61 21128 1 0.08 -1 -1 33996 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 4.47 1140 13477 4008 7256 2213 64.3 MiB 0.35 0.00 4.87863 -139.65 -4.87863 4.87863 2.54 0.000178144 0.000142033 0.0140783 0.0114068 34 2816 38 6.89349e+06 310065 618332. 2139.56 11.59 0.149882 0.135834 25762 151098 -1 2261 20 1585 2469 195102 43554 3.98916 3.98916 -133.793 -3.98916 0 0 787024. 2723.27 0.91 0.17 0.16 -1 -1 0.91 0.0107526 0.0094819 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 24.70 vpr 63.57 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33880 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65100 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 9.78 743 7992 1817 5819 356 63.6 MiB 0.21 0.00 4.21347 -111.925 -4.21347 4.21347 2.81 0.000139216 0.000110547 0.00766615 0.00618746 30 2121 33 6.89349e+06 267783 556674. 1926.21 3.58 0.0342471 0.0284364 25186 138497 -1 1734 19 961 1330 97844 23122 2.9715 2.9715 -103.215 -2.9715 0 0 706193. 2443.58 1.34 0.05 0.26 -1 -1 1.34 0.00857104 0.00759085 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 21.99 vpr 63.62 MiB -1 -1 0.31 21584 1 0.05 -1 -1 33516 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 25.1 MiB 6.04 963 11652 3141 7413 1098 63.6 MiB 0.33 0.00 4.14413 -129.495 -4.14413 4.14413 2.20 6.5384e-05 4.9992e-05 0.0911093 0.00831123 34 2440 49 6.89349e+06 253689 618332. 2139.56 6.05 0.233424 0.143217 25762 151098 -1 2081 21 1519 2129 189778 40165 3.15871 3.15871 -120.031 -3.15871 0 0 787024. 2723.27 0.97 0.05 0.21 -1 -1 0.97 0.0100594 0.00879218 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 21.71 vpr 64.23 MiB -1 -1 0.53 21432 1 0.16 -1 -1 33840 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 25.5 MiB 5.19 1148 8801 2055 6262 484 64.2 MiB 0.25 0.00 4.66911 -146.299 -4.66911 4.66911 2.42 0.000177482 0.000142542 0.00977455 0.00805415 34 3184 42 6.89349e+06 366440 618332. 2139.56 5.96 0.661935 0.548411 25762 151098 -1 2593 21 2070 2865 230832 52120 3.73625 3.73625 -139.661 -3.73625 0 0 787024. 2723.27 0.87 0.34 0.69 -1 -1 0.87 0.010731 0.00935867 160 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 20.99 vpr 63.68 MiB -1 -1 0.41 21280 1 0.23 -1 -1 33756 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 6.21 799 6960 1451 5242 267 63.7 MiB 0.15 0.00 3.55845 -110.116 -3.55845 3.55845 2.46 0.000130468 0.000103685 0.121818 0.120414 34 2362 25 6.89349e+06 239595 618332. 2139.56 4.88 0.154775 0.147745 25762 151098 -1 1961 18 1203 1687 149474 33371 2.87011 2.87011 -108.988 -2.87011 0 0 787024. 2723.27 0.84 0.07 0.30 -1 -1 0.84 0.00842668 0.00740156 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 22.78 vpr 64.29 MiB -1 -1 0.52 21280 1 0.07 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 25.5 MiB 5.95 1229 13883 4377 7381 2125 64.3 MiB 0.26 0.00 4.30445 -130.63 -4.30445 4.30445 3.21 0.00017229 0.00012905 0.0787474 0.0759874 34 3092 29 6.89349e+06 310065 618332. 2139.56 6.00 0.289372 0.278589 25762 151098 -1 2481 21 1411 2036 157419 35147 3.398 3.398 -125.222 -3.398 0 0 787024. 2723.27 0.77 0.17 0.19 -1 -1 0.77 0.0118959 0.0104286 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 26.14 vpr 64.38 MiB -1 -1 0.54 21736 1 0.03 -1 -1 33804 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 25.7 MiB 6.03 1410 16127 5422 8584 2121 64.4 MiB 0.28 0.00 4.86804 -156.439 -4.86804 4.86804 2.23 0.000178334 0.000143382 0.0171012 0.0139332 36 3574 24 6.89349e+06 366440 648988. 2245.63 8.64 0.223924 0.211835 26050 158493 -1 2991 22 2294 3249 274679 57779 4.43249 4.43249 -161.158 -4.43249 0 0 828058. 2865.25 1.05 0.09 0.42 -1 -1 1.05 0.0129085 0.0113396 167 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 24.21 vpr 63.61 MiB -1 -1 0.52 21128 1 0.08 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 25.1 MiB 9.84 1102 7914 1891 5147 876 63.6 MiB 0.09 0.00 3.8031 -118.938 -3.8031 3.8031 2.79 0.000174316 0.00014394 0.0518347 0.0502704 34 2636 25 6.89349e+06 253689 618332. 2139.56 4.65 0.104329 0.097019 25762 151098 -1 2252 20 1548 2123 174961 37783 2.90126 2.90126 -115.992 -2.90126 0 0 787024. 2723.27 0.92 0.19 0.24 -1 -1 0.92 0.0100668 0.00877884 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 19.34 vpr 63.92 MiB -1 -1 0.38 21280 1 0.02 -1 -1 33808 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.2 MiB 4.22 807 8448 2163 5780 505 63.9 MiB 0.16 0.00 4.17839 -126.972 -4.17839 4.17839 2.34 0.000151446 0.0001198 0.00937569 0.00768463 34 2328 25 6.89349e+06 253689 618332. 2139.56 4.59 0.0498073 0.0416968 25762 151098 -1 1966 17 1279 1909 140751 34111 3.24765 3.24765 -119.345 -3.24765 0 0 787024. 2723.27 1.21 0.09 0.38 -1 -1 1.21 0.00962645 0.00838545 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 20.55 vpr 63.96 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 25.2 MiB 5.84 1027 14828 4768 7813 2247 64.0 MiB 0.31 0.00 4.90028 -135.696 -4.90028 4.90028 2.64 0.000181285 0.000145784 0.0160408 0.0129457 34 2558 23 6.89349e+06 310065 618332. 2139.56 4.30 0.276127 0.265548 25762 151098 -1 2264 19 1350 1887 133010 30628 3.69936 3.69936 -130.261 -3.69936 0 0 787024. 2723.27 0.96 0.20 0.42 -1 -1 0.96 0.0100675 0.00882803 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 20.95 vpr 64.16 MiB -1 -1 0.32 21432 1 0.13 -1 -1 33764 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 6.87 1109 14639 4187 8652 1800 64.2 MiB 0.34 0.00 4.08804 -114.007 -4.08804 4.08804 2.65 0.000164732 0.000132755 0.0145936 0.0118895 30 2421 25 6.89349e+06 352346 556674. 1926.21 3.37 0.0420948 0.0349819 25186 138497 -1 2027 20 1092 1557 101389 22884 3.32475 3.32475 -110.151 -3.32475 0 0 706193. 2443.58 0.75 0.24 0.33 -1 -1 0.75 0.00763949 0.0067353 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 25.12 vpr 64.32 MiB -1 -1 0.37 21432 1 0.11 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 25.7 MiB 6.68 1260 16078 5801 8535 1742 64.3 MiB 0.26 0.00 5.65598 -180.247 -5.65598 5.65598 3.01 0.000205848 0.00016758 0.0663335 0.0629995 34 3621 37 6.89349e+06 338252 618332. 2139.56 7.89 0.126222 0.113304 25762 151098 -1 2914 23 2099 3261 294480 62314 4.80588 4.80588 -169.563 -4.80588 0 0 787024. 2723.27 1.00 0.16 0.28 -1 -1 1.00 0.0118916 0.0102498 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 18.17 vpr 63.65 MiB -1 -1 0.30 21128 1 0.03 -1 -1 33780 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.1 MiB 1.94 765 8164 2211 5437 516 63.6 MiB 0.08 0.00 3.49795 -107.657 -3.49795 3.49795 2.65 0.000147879 0.000119776 0.00792074 0.00635542 34 1845 19 6.89349e+06 239595 618332. 2139.56 4.82 0.221076 0.21405 25762 151098 -1 1589 19 725 1119 83681 18632 2.57636 2.57636 -97.7119 -2.57636 0 0 787024. 2723.27 1.05 0.12 0.29 -1 -1 1.05 0.103386 0.102359 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 22.88 vpr 64.55 MiB -1 -1 0.43 21736 1 0.03 -1 -1 33804 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 25.8 MiB 6.10 1449 14167 4014 7626 2527 64.5 MiB 0.23 0.00 5.78233 -180.669 -5.78233 5.78233 2.40 0.000215442 0.000175505 0.0276983 0.0247365 34 3752 47 6.89349e+06 380534 618332. 2139.56 7.01 0.0858023 0.0734008 25762 151098 -1 3040 19 2102 2772 224967 49169 5.38524 5.38524 -185.112 -5.38524 0 0 787024. 2723.27 1.08 0.11 0.35 -1 -1 1.08 0.0499225 0.0485076 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 22.25 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33712 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 25.5 MiB 7.19 1300 9495 2262 6592 641 64.4 MiB 0.18 0.00 4.81994 -164.712 -4.81994 4.81994 2.69 0.000210846 0.000162027 0.0103378 0.00842966 36 3397 34 6.89349e+06 324158 648988. 2245.63 5.49 0.0630784 0.052594 26050 158493 -1 2633 21 2418 2999 239568 51827 4.33539 4.33539 -159.505 -4.33539 0 0 828058. 2865.25 0.91 0.08 0.18 -1 -1 0.91 0.0556903 0.0548207 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 23.34 vpr 64.34 MiB -1 -1 0.26 21584 1 0.04 -1 -1 33812 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 25.5 MiB 6.30 1234 15017 4303 8531 2183 64.3 MiB 0.40 0.00 4.10098 -126.009 -4.10098 4.10098 2.77 0.00020311 0.000167695 0.0166606 0.0136713 34 2988 24 6.89349e+06 310065 618332. 2139.56 6.09 0.329835 0.319239 25762 151098 -1 2338 21 1700 2332 199279 43093 3.23576 3.23576 -119.971 -3.23576 0 0 787024. 2723.27 0.85 0.29 0.23 -1 -1 0.85 0.0124456 0.0109865 152 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 25.30 vpr 64.45 MiB -1 -1 0.43 21736 1 0.09 -1 -1 33532 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1279 16170 5076 8373 2721 64.4 MiB 0.41 0.00 5.8006 -172.976 -5.8006 5.8006 2.31 9.1537e-05 7.1825e-05 0.0174817 0.0143455 34 3567 22 6.89349e+06 366440 618332. 2139.56 6.93 0.0716582 0.0600033 25762 151098 -1 2699 21 2086 3337 323710 67797 4.54445 4.54445 -156.128 -4.54445 0 0 787024. 2723.27 0.87 0.07 0.18 -1 -1 0.87 0.012756 0.0112965 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 14.06 vpr 63.63 MiB -1 -1 0.41 21128 1 0.05 -1 -1 33724 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 2.63 775 6434 1498 4493 443 63.6 MiB 0.13 0.00 3.08622 -96.4372 -3.08622 3.08622 2.50 0.000143054 0.000116213 0.0059216 0.00471773 30 1655 23 6.89349e+06 211408 556674. 1926.21 2.33 0.0226946 0.018387 25186 138497 -1 1548 16 662 874 63994 14007 2.32501 2.32501 -94.7646 -2.32501 0 0 706193. 2443.58 0.75 0.17 0.19 -1 -1 0.75 0.00709399 0.0062645 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 18.36 vpr 63.91 MiB -1 -1 0.28 21128 1 0.03 -1 -1 33848 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65444 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 4.19 965 13610 5107 7005 1498 63.9 MiB 0.15 0.00 4.62117 -141.292 -4.62117 4.62117 2.66 0.000164657 0.000130325 0.00929135 0.00738936 34 2261 32 6.89349e+06 281877 618332. 2139.56 4.53 0.196293 0.154331 25762 151098 -1 1973 18 1265 1860 176101 36344 3.6743 3.6743 -133.516 -3.6743 0 0 787024. 2723.27 0.93 0.06 0.41 -1 -1 0.93 0.0329342 0.00771684 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 27.63 vpr 63.88 MiB -1 -1 0.36 21280 1 0.03 -1 -1 33684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 25.2 MiB 6.08 1149 10406 3059 5866 1481 63.9 MiB 0.12 0.00 4.19289 -140.143 -4.19289 4.19289 3.15 0.000149437 0.000117561 0.010765 0.00861864 36 2692 44 6.89349e+06 253689 648988. 2245.63 11.23 0.151484 0.136889 26050 158493 -1 2234 18 1335 2383 172957 38095 3.5312 3.5312 -138.222 -3.5312 0 0 828058. 2865.25 0.91 0.11 0.27 -1 -1 0.91 0.0643106 0.063138 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 20.30 vpr 63.45 MiB -1 -1 0.33 21128 1 0.07 -1 -1 34004 -1 -1 21 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 25.0 MiB 4.14 538 11200 3798 4353 3049 63.5 MiB 0.18 0.00 3.6656 -83.8355 -3.6656 3.6656 2.77 0.000119147 9.3182e-05 0.00925102 0.00735563 34 1768 43 6.89349e+06 295971 618332. 2139.56 6.26 0.0455755 0.0373787 25762 151098 -1 1290 19 793 1238 107114 27053 2.84936 2.84936 -80.5665 -2.84936 0 0 787024. 2723.27 0.86 0.13 0.28 -1 -1 0.86 0.110124 0.00441335 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 26.03 vpr 64.23 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 25.5 MiB 7.02 1224 10455 2606 6691 1158 64.2 MiB 0.42 0.00 4.36555 -131.719 -4.36555 4.36555 2.83 0.000207291 0.000166062 0.124815 0.122383 36 3235 24 6.89349e+06 324158 648988. 2245.63 8.62 0.446978 0.436299 26050 158493 -1 2709 22 2008 3044 219720 49398 3.76586 3.76586 -131.33 -3.76586 0 0 828058. 2865.25 0.94 0.16 0.31 -1 -1 0.94 0.0120957 0.0105961 161 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 23.80 vpr 64.59 MiB -1 -1 0.40 21584 1 0.06 -1 -1 33876 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 25.7 MiB 7.63 1242 10442 2632 6826 984 64.6 MiB 0.42 0.00 4.77028 -152.218 -4.77028 4.77028 2.47 0.000200944 0.000162858 0.0120702 0.0099316 34 3362 29 6.89349e+06 408721 618332. 2139.56 6.38 0.456192 0.324359 25762 151098 -1 2697 22 2278 3206 240107 54749 4.44149 4.44149 -153.801 -4.44149 0 0 787024. 2723.27 0.69 0.22 0.23 -1 -1 0.69 0.0137196 0.012184 179 90 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 7.14 vpr 62.72 MiB -1 -1 0.37 18464 14 0.25 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 277 309 1 207 91 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1302 6007 1134 4530 343 62.7 MiB 0.07 0.00 8.06507 -165.8 -8.06507 8.06507 0.66 0.00125285 0.00118605 0.0298742 0.0277331 38 3079 21 6.55708e+06 325485 638502. 2209.35 3.54 0.278387 0.238683 23326 155178 -1 2542 18 1049 3126 148192 34301 6.81156 6.81156 -153.807 -6.81156 0 0 851065. 2944.86 0.22 0.07 0.13 -1 -1 0.22 0.0331119 0.0290435 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.03 vpr 62.76 MiB -1 -1 0.36 18524 14 0.28 -1 -1 32792 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 272 304 1 211 92 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1258 10442 2540 7122 780 62.8 MiB 0.10 0.00 8.22247 -160.403 -8.22247 8.22247 0.66 0.000900411 0.000831524 0.0496397 0.045709 34 3281 19 6.55708e+06 361650 585099. 2024.56 3.37 0.293576 0.252736 22462 138074 -1 2855 18 1244 3629 199635 46848 7.04996 7.04996 -153.96 -7.04996 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0333648 0.0292402 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.41 vpr 62.80 MiB -1 -1 0.32 18040 11 0.22 -1 -1 32580 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 280 312 1 203 91 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1264 8863 2060 5892 911 62.8 MiB 0.09 0.00 7.11975 -140.004 -7.11975 7.11975 0.66 0.000859212 0.000790002 0.0427845 0.0396421 36 3173 19 6.55708e+06 325485 612192. 2118.31 2.02 0.217093 0.188203 22750 144809 -1 2760 15 1101 3755 203186 46560 6.31024 6.31024 -137.874 -6.31024 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0297723 0.0262537 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.15 vpr 62.88 MiB -1 -1 0.34 18216 12 0.35 -1 -1 32664 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 275 307 1 205 92 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1219 12719 3492 7061 2166 62.9 MiB 0.12 0.00 7.73186 -145.655 -7.73186 7.73186 0.69 0.000904693 0.00083497 0.0593236 0.054898 34 3645 27 6.55708e+06 373705 585099. 2024.56 2.39 0.243727 0.211662 22462 138074 -1 2819 18 1400 4397 251853 59239 6.56852 6.56852 -134.924 -6.56852 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0339786 0.0297771 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 12.99 vpr 63.03 MiB -1 -1 0.36 18536 13 0.27 -1 -1 32760 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 302 334 1 238 96 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1537 9294 2316 6044 934 63.0 MiB 0.10 0.00 7.74403 -165.695 -7.74403 7.74403 0.65 0.000976527 0.000903928 0.0456228 0.0422018 28 4772 43 6.55708e+06 385760 500653. 1732.36 9.38 0.30691 0.264752 21310 115450 -1 3677 17 1667 4671 277990 64212 6.9195 6.9195 -161.915 -6.9195 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0350853 0.0308436 211 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.02 vpr 62.72 MiB -1 -1 0.37 18656 13 0.24 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 292 324 1 216 94 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1429 10318 2408 6874 1036 62.7 MiB 0.10 0.00 7.55004 -148.529 -7.55004 7.55004 0.70 0.000938339 0.000868462 0.0490933 0.0454435 30 3702 21 6.55708e+06 361650 526063. 1820.29 1.42 0.163343 0.143339 21886 126133 -1 3032 18 1348 4431 211919 49585 6.6027 6.6027 -144.169 -6.6027 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0356151 0.0312959 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.45 vpr 62.16 MiB -1 -1 0.30 18108 12 0.19 -1 -1 32604 -1 -1 28 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 27 32 229 261 1 178 87 17 17 289 -1 unnamed_device 23.5 MiB 0.22 1042 7383 1841 5010 532 62.2 MiB 0.07 0.00 7.10318 -127.218 -7.10318 7.10318 0.66 0.000744709 0.000690449 0.0313116 0.0290229 28 2706 23 6.55708e+06 337540 500653. 1732.36 1.26 0.123241 0.107766 21310 115450 -1 2392 22 1205 3250 240801 75713 6.43104 6.43104 -126.122 -6.43104 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0322999 0.0282077 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.23 vpr 62.30 MiB -1 -1 0.32 18052 12 0.22 -1 -1 32688 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 229 261 1 185 86 17 17 289 -1 unnamed_device 23.4 MiB 0.25 1218 7457 1700 4721 1036 62.3 MiB 0.07 0.00 6.26429 -136.408 -6.26429 6.26429 0.68 0.000580322 0.000526755 0.0312198 0.0287395 36 3013 36 6.55708e+06 277265 612192. 2118.31 2.88 0.194984 0.168436 22750 144809 -1 2535 19 1046 3086 172167 39148 5.56972 5.56972 -130.236 -5.56972 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0286494 0.0251134 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.31 vpr 62.47 MiB -1 -1 0.32 18112 12 0.20 -1 -1 32596 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1147 11573 2830 6597 2146 62.5 MiB 0.10 0.00 6.46263 -134.738 -6.46263 6.46263 0.66 0.000745577 0.000690541 0.0465846 0.0431429 28 3212 35 6.55708e+06 313430 500653. 1732.36 1.98 0.161481 0.141896 21310 115450 -1 2789 20 1233 3134 288271 89181 5.93292 5.93292 -138.747 -5.93292 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0304253 0.0266367 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.57 vpr 62.44 MiB -1 -1 0.27 18052 13 0.21 -1 -1 32700 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1201 7613 1790 5065 758 62.4 MiB 0.07 0.00 7.6044 -163.149 -7.6044 7.6044 0.66 0.000809486 0.000751572 0.034173 0.031644 28 3358 45 6.55708e+06 301375 500653. 1732.36 1.33 0.16057 0.139581 21310 115450 -1 2771 16 1141 3137 179678 42083 6.54924 6.54924 -157.958 -6.54924 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0280525 0.0247342 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.80 vpr 61.96 MiB -1 -1 0.31 18072 12 0.20 -1 -1 32524 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 975 6890 1484 5091 315 62.0 MiB 0.06 0.00 7.2876 -142.231 -7.2876 7.2876 0.65 0.000700847 0.000649347 0.0281714 0.0261292 28 2669 16 6.55708e+06 289320 500653. 1732.36 1.49 0.108797 0.0951869 21310 115450 -1 2344 20 978 2637 155411 35551 6.35264 6.35264 -138.448 -6.35264 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0286087 0.0249574 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.92 vpr 62.04 MiB -1 -1 0.30 18136 12 0.15 -1 -1 32580 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.4 MiB 0.23 1124 10859 2500 7050 1309 62.0 MiB 0.09 0.00 6.80891 -152.833 -6.80891 6.80891 0.66 0.000733578 0.000678211 0.0447912 0.0414486 28 3221 50 6.55708e+06 265210 500653. 1732.36 1.84 0.167251 0.146031 21310 115450 -1 2684 17 1091 2924 168986 40534 6.36992 6.36992 -151.051 -6.36992 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0266778 0.023439 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.21 vpr 62.72 MiB -1 -1 0.35 18496 13 0.24 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 283 315 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1356 6603 1407 4412 784 62.7 MiB 0.07 0.00 8.08695 -168.334 -8.08695 8.08695 0.81 0.000940293 0.000872054 0.0326793 0.0303155 44 2909 15 6.55708e+06 349595 742403. 2568.87 3.52 0.279022 0.240476 24478 177802 -1 2461 15 1005 2960 138391 32617 7.32896 7.32896 -158.351 -7.32896 0 0 937218. 3242.97 0.25 0.07 0.16 -1 -1 0.25 0.0302965 0.0267535 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 8.41 vpr 62.75 MiB -1 -1 0.37 18472 14 0.31 -1 -1 32704 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 23.8 MiB 0.40 1549 7123 1334 5022 767 62.7 MiB 0.08 0.00 8.74533 -181.262 -8.74533 8.74533 0.65 0.000966653 0.000895006 0.0362306 0.0335558 36 3900 33 6.55708e+06 361650 612192. 2118.31 4.73 0.38933 0.333569 22750 144809 -1 3120 17 1318 3696 194391 45419 7.48896 7.48896 -166.817 -7.48896 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0355178 0.0312677 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.52 vpr 62.23 MiB -1 -1 0.29 17984 11 0.17 -1 -1 32512 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 935 9838 2446 5532 1860 62.2 MiB 0.08 0.00 6.43815 -124.278 -6.43815 6.43815 0.66 0.000722864 0.000669295 0.0393288 0.0364116 36 2455 49 6.55708e+06 325485 612192. 2118.31 4.23 0.272476 0.234464 22750 144809 -1 2074 16 1026 2882 145880 37165 5.56972 5.56972 -118.41 -5.56972 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.0250507 0.0220408 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 11.30 vpr 62.77 MiB -1 -1 0.33 18632 12 0.29 -1 -1 32716 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 23.8 MiB 0.45 1403 9865 2364 6534 967 62.8 MiB 0.10 0.00 7.61832 -157.97 -7.61832 7.61832 0.65 0.000979143 0.000907484 0.0472703 0.0437639 34 4162 40 6.55708e+06 397815 585099. 2024.56 7.53 0.374961 0.323097 22462 138074 -1 3561 16 1531 5053 312901 69003 7.03204 7.03204 -158.379 -7.03204 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0343731 0.0303327 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 6.74 vpr 62.64 MiB -1 -1 0.34 18288 14 0.24 -1 -1 32780 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1439 7653 1673 5509 471 62.6 MiB 0.08 0.00 7.67629 -159.38 -7.67629 7.67629 0.67 0.00106782 0.000975084 0.0377232 0.0348718 34 3661 29 6.55708e+06 349595 585099. 2024.56 3.30 0.297527 0.255432 22462 138074 -1 3227 16 1393 4155 254677 56826 6.78964 6.78964 -153.354 -6.78964 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.031243 0.0274272 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 8.23 vpr 61.99 MiB -1 -1 0.30 18332 12 0.17 -1 -1 32392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.4 MiB 0.32 1135 6807 1403 4768 636 62.0 MiB 0.08 0.00 7.47584 -167.104 -7.47584 7.47584 0.67 0.00074343 0.000689144 0.0376415 0.0350647 28 2836 44 6.55708e+06 277265 500653. 1732.36 4.89 0.23676 0.204764 21310 115450 -1 2503 18 941 2794 164839 37617 6.2395 6.2395 -153.848 -6.2395 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0282205 0.0248075 141 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.13 vpr 61.62 MiB -1 -1 0.27 17608 10 0.10 -1 -1 32384 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.0 MiB 0.16 826 8378 2614 4173 1591 61.6 MiB 0.07 0.00 5.4738 -124.829 -5.4738 5.4738 0.68 0.000562661 0.000522956 0.0308117 0.0286084 26 2202 45 6.55708e+06 192880 477104. 1650.88 1.23 0.113593 0.0991162 21022 109990 -1 1904 17 700 1663 136686 38924 4.68146 4.68146 -121.566 -4.68146 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0202265 0.0176632 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.83 vpr 62.35 MiB -1 -1 0.34 18004 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 231 263 1 186 87 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1089 7959 1662 5544 753 62.4 MiB 0.08 0.00 7.1116 -151.06 -7.1116 7.1116 0.78 0.000752731 0.000697107 0.0342957 0.031469 28 3001 25 6.55708e+06 289320 500653. 1732.36 4.33 0.225631 0.194806 21310 115450 -1 2590 18 1129 2937 165578 39108 6.72852 6.72852 -153.683 -6.72852 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.028428 0.0249674 149 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.74 vpr 62.84 MiB -1 -1 0.34 18536 13 0.27 -1 -1 32856 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1422 6791 1371 4904 516 62.8 MiB 0.08 0.00 8.24149 -161.982 -8.24149 8.24149 0.70 0.00117347 0.00104835 0.0342775 0.0316591 28 3890 47 6.55708e+06 373705 500653. 1732.36 2.07 0.193632 0.168283 21310 115450 -1 3314 25 1965 6443 496259 165088 7.09316 7.09316 -157.694 -7.09316 0 0 612192. 2118.31 0.18 0.17 0.10 -1 -1 0.18 0.0463705 0.0405172 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.61 vpr 62.76 MiB -1 -1 0.38 18616 13 0.27 -1 -1 32468 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1571 7639 1725 5480 434 62.8 MiB 0.09 0.00 7.9256 -167.417 -7.9256 7.9256 0.66 0.000929735 0.000860984 0.0394613 0.0364206 38 3822 44 6.55708e+06 325485 638502. 2209.35 2.90 0.215672 0.187505 23326 155178 -1 3247 15 1389 4538 246880 54439 6.98824 6.98824 -156.279 -6.98824 0 0 851065. 2944.86 0.22 0.09 0.14 -1 -1 0.22 0.0314134 0.0277449 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.78 vpr 61.54 MiB -1 -1 0.27 17756 9 0.10 -1 -1 32296 -1 -1 24 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63012 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.9 MiB 0.18 719 6668 1593 4477 598 61.5 MiB 0.05 0.00 4.68552 -94.026 -4.68552 4.68552 0.66 0.000512246 0.000476806 0.0207636 0.0193017 26 1778 19 6.55708e+06 289320 477104. 1650.88 0.86 0.0782395 0.0682055 21022 109990 -1 1584 15 597 1508 93970 21931 4.38194 4.38194 -95.8946 -4.38194 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0169054 0.0147885 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.35 vpr 62.55 MiB -1 -1 0.32 18308 13 0.32 -1 -1 32764 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1351 10979 3098 6336 1545 62.5 MiB 0.11 0.00 8.17761 -160.563 -8.17761 8.17761 0.66 0.000927092 0.0008591 0.0548858 0.0508008 30 3690 26 6.55708e+06 301375 526063. 1820.29 1.79 0.173987 0.152849 21886 126133 -1 2989 16 1337 4047 197784 46628 7.2847 7.2847 -155.953 -7.2847 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0314382 0.0277119 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.21 vpr 61.35 MiB -1 -1 0.23 17828 8 0.10 -1 -1 32136 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 32 32 154 186 1 120 79 17 17 289 -1 unnamed_device 22.8 MiB 0.14 651 6501 1478 4780 243 61.4 MiB 0.05 0.00 4.41277 -92.7441 -4.41277 4.41277 0.66 0.000512563 0.000476039 0.0211761 0.0196855 28 1783 21 6.55708e+06 180825 500653. 1732.36 2.43 0.165895 0.142143 21310 115450 -1 1603 14 636 1411 82033 20644 3.82214 3.82214 -95.8147 -3.82214 0 0 612192. 2118.31 0.18 0.04 0.11 -1 -1 0.18 0.0160313 0.0140854 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.65 vpr 62.54 MiB -1 -1 0.33 18016 15 0.23 -1 -1 32816 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 254 286 1 197 90 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1196 7728 1698 5709 321 62.5 MiB 0.08 0.00 8.17826 -163.063 -8.17826 8.17826 0.72 0.00083906 0.000778188 0.0353938 0.0328128 34 3092 21 6.55708e+06 313430 585099. 2024.56 1.76 0.18835 0.163666 22462 138074 -1 2774 63 2684 8832 1170555 624055 7.22924 7.22924 -156.603 -7.22924 0 0 742403. 2568.87 0.20 0.40 0.12 -1 -1 0.20 0.0875183 0.0749334 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 4.93 vpr 62.57 MiB -1 -1 0.33 18308 13 0.22 -1 -1 32704 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1290 7929 1849 5090 990 62.6 MiB 0.08 0.00 7.1956 -157.385 -7.1956 7.1956 0.70 0.000847327 0.000784902 0.0367788 0.0340624 36 3101 19 6.55708e+06 313430 612192. 2118.31 1.50 0.158159 0.137804 22750 144809 -1 2628 17 1134 3256 168918 39645 6.21818 6.21818 -146.425 -6.21818 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0308984 0.0270994 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.42 vpr 62.67 MiB -1 -1 0.37 18308 13 0.31 -1 -1 32804 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1302 9753 2433 6184 1136 62.7 MiB 0.10 0.00 7.90993 -159.862 -7.90993 7.90993 0.65 0.000907788 0.000841861 0.0458031 0.0424216 28 3838 36 6.55708e+06 349595 500653. 1732.36 1.96 0.177894 0.155505 21310 115450 -1 2999 21 1654 5200 269562 63388 7.1619 7.1619 -160.267 -7.1619 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0382226 0.0333751 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.58 vpr 62.10 MiB -1 -1 0.31 18044 12 0.15 -1 -1 32616 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 238 270 1 189 85 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1221 7525 1804 5243 478 62.1 MiB 0.07 0.00 6.81858 -149.06 -6.81858 6.81858 0.70 0.000749943 0.000694529 0.0332414 0.0307542 34 3283 26 6.55708e+06 253155 585099. 2024.56 2.27 0.190272 0.164815 22462 138074 -1 2749 15 1023 2989 181961 41293 5.93798 5.93798 -142.769 -5.93798 0 0 742403. 2568.87 0.20 0.07 0.12 -1 -1 0.20 0.0250934 0.0221183 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.50 vpr 62.09 MiB -1 -1 0.31 18000 11 0.14 -1 -1 32736 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.16 989 9199 2086 6295 818 62.1 MiB 0.08 0.00 6.43069 -134.961 -6.43069 6.43069 0.66 0.000682079 0.000632132 0.036255 0.0335813 28 2534 18 6.55708e+06 277265 500653. 1732.36 2.51 0.188561 0.163137 21310 115450 -1 2287 14 909 2396 149590 35281 5.62118 5.62118 -131.641 -5.62118 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0218422 0.0192199 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 8.09 vpr 62.00 MiB -1 -1 0.32 18008 11 0.17 -1 -1 32596 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.3 MiB 0.48 932 12958 3701 6997 2260 62.0 MiB 0.10 0.00 6.5982 -125.759 -6.5982 6.5982 0.65 0.000724869 0.000669739 0.0507902 0.046931 32 2645 24 6.55708e+06 337540 554710. 1919.41 4.57 0.272498 0.235207 22174 131602 -1 2361 28 1350 3514 258755 74180 5.86158 5.86158 -127.686 -5.86158 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0384366 0.0333465 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.63 vpr 62.64 MiB -1 -1 0.28 18072 12 0.20 -1 -1 32668 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.5 MiB 0.23 1332 7326 1532 5228 566 62.6 MiB 0.08 0.00 7.49746 -163.819 -7.49746 7.49746 0.66 0.00109942 0.00100378 0.0349461 0.0323703 28 3385 27 6.55708e+06 313430 500653. 1732.36 1.41 0.146613 0.127899 21310 115450 -1 2821 17 1262 3325 180704 42519 6.38924 6.38924 -157.17 -6.38924 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0313577 0.0275515 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.78 vpr 62.15 MiB -1 -1 0.29 17924 12 0.20 -1 -1 32672 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 237 269 1 178 86 17 17 289 -1 unnamed_device 23.4 MiB 0.46 1141 5378 1025 3934 419 62.1 MiB 0.06 0.00 7.2858 -149.294 -7.2858 7.2858 0.66 0.000746783 0.000692429 0.0242349 0.0224794 28 3003 49 6.55708e+06 277265 500653. 1732.36 1.40 0.15186 0.131654 21310 115450 -1 2599 17 1054 2881 159276 37291 6.47024 6.47024 -145.428 -6.47024 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0270309 0.0237523 148 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.33 vpr 62.01 MiB -1 -1 0.33 18092 10 0.15 -1 -1 32772 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1038 7643 2004 4942 697 62.0 MiB 0.08 0.00 5.84872 -123.373 -5.84872 5.84872 0.66 0.000842151 0.000775416 0.0367277 0.0338952 34 2652 32 6.55708e+06 265210 585099. 2024.56 3.15 0.246643 0.212336 22462 138074 -1 2218 14 806 2409 137837 32114 5.08326 5.08326 -116.542 -5.08326 0 0 742403. 2568.87 0.20 0.06 0.12 -1 -1 0.20 0.0230347 0.0203239 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.01 vpr 62.99 MiB -1 -1 0.36 18896 13 0.29 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1471 6791 1284 4967 540 63.0 MiB 0.08 0.00 7.9206 -163.84 -7.9206 7.9206 0.66 0.00100614 0.000930907 0.0353648 0.0326917 30 3900 46 6.55708e+06 373705 526063. 1820.29 1.53 0.193641 0.167934 21886 126133 -1 2938 15 1341 4212 195757 47245 7.0789 7.0789 -157.591 -7.0789 0 0 666494. 2306.21 0.21 0.09 0.10 -1 -1 0.21 0.0339491 0.0299756 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.07 vpr 62.65 MiB -1 -1 0.34 18808 14 0.31 -1 -1 33196 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1376 6509 1418 4515 576 62.6 MiB 0.07 0.00 7.46584 -163.527 -7.46584 7.46584 0.66 0.000952289 0.000883953 0.0328295 0.0304267 34 3649 24 6.55708e+06 337540 585099. 2024.56 2.25 0.183778 0.159673 22462 138074 -1 3209 19 1483 4380 252993 58147 6.61598 6.61598 -157.876 -6.61598 0 0 742403. 2568.87 0.20 0.10 0.13 -1 -1 0.20 0.0364302 0.0319458 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.69 vpr 62.01 MiB -1 -1 0.32 17972 12 0.15 -1 -1 32300 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.3 MiB 0.21 1191 6716 1464 4657 595 62.0 MiB 0.06 0.00 7.49501 -150.663 -7.49501 7.49501 0.66 0.000736827 0.000681384 0.0268149 0.024762 36 2739 49 6.55708e+06 349595 612192. 2118.31 3.49 0.273543 0.235052 22750 144809 -1 2451 14 945 2568 146257 34226 6.3617 6.3617 -139.003 -6.3617 0 0 782063. 2706.10 0.25 0.07 0.13 -1 -1 0.25 0.0236466 0.0208673 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 12.92 vpr 62.89 MiB -1 -1 0.38 18540 12 0.35 -1 -1 32956 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 307 339 1 232 97 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1434 7201 1575 4780 846 62.9 MiB 0.08 0.00 7.50893 -153.023 -7.50893 7.50893 0.66 0.000986119 0.000910966 0.0356064 0.0329237 28 4518 48 6.55708e+06 409870 500653. 1732.36 9.15 0.302981 0.261615 21310 115450 -1 3635 17 1650 4826 282573 65690 6.59244 6.59244 -148.359 -6.59244 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0355824 0.0312584 219 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 9.88 vpr 62.70 MiB -1 -1 0.39 18920 14 0.33 -1 -1 32828 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1374 5474 1049 3945 480 62.7 MiB 0.06 0.00 8.16861 -161.211 -8.16861 8.16861 0.66 0.000959668 0.000889993 0.0285683 0.0264621 28 3932 23 6.55708e+06 349595 500653. 1732.36 6.37 0.260501 0.225089 21310 115450 -1 3284 18 1452 4273 253909 60691 7.1997 7.1997 -157.552 -7.1997 0 0 612192. 2118.31 0.18 0.11 0.11 -1 -1 0.18 0.0397622 0.0350197 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.75 vpr 62.69 MiB -1 -1 0.24 18808 13 0.33 -1 -1 32904 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1387 6619 1451 4703 465 62.7 MiB 0.07 0.00 8.01146 -159.733 -8.01146 8.01146 0.69 0.000900467 0.000835027 0.0326339 0.0302312 36 3546 21 6.55708e+06 337540 612192. 2118.31 2.26 0.21103 0.182397 22750 144809 -1 3161 21 1696 5215 289539 65706 7.10844 7.10844 -156.911 -7.10844 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0352024 0.0310745 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 5.03 vpr 62.50 MiB -1 -1 0.39 18092 13 0.25 -1 -1 32992 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1346 5039 929 3735 375 62.5 MiB 0.06 0.00 7.0422 -139.101 -7.0422 7.0422 0.66 0.0010101 0.000906695 0.0266767 0.0246674 30 3601 27 6.55708e+06 313430 526063. 1820.29 1.37 0.14102 0.122427 21886 126133 -1 2974 27 1332 4238 413128 180626 6.07044 6.07044 -135.521 -6.07044 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0449313 0.0390153 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 8.03 vpr 62.61 MiB -1 -1 0.30 18044 12 0.24 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1210 7108 1610 4933 565 62.6 MiB 0.07 0.00 6.87954 -141.685 -6.87954 6.87954 0.69 0.000828434 0.000768398 0.033236 0.0307738 28 3162 31 6.55708e+06 289320 500653. 1732.36 4.76 0.24687 0.21245 21310 115450 -1 2792 16 1149 3239 194030 44473 6.09232 6.09232 -140.235 -6.09232 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0290264 0.0255237 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.11 vpr 63.00 MiB -1 -1 0.43 19264 14 0.39 -1 -1 32900 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1621 7439 1507 5629 303 63.0 MiB 0.09 0.00 8.33767 -177.625 -8.33767 8.33767 0.66 0.00105043 0.000965834 0.0402778 0.0372068 36 4483 50 6.55708e+06 373705 612192. 2118.31 5.22 0.304171 0.262982 22750 144809 -1 3592 17 1560 5035 287104 64510 7.16756 7.16756 -166.325 -7.16756 0 0 782063. 2706.10 0.25 0.10 0.12 -1 -1 0.25 0.0389671 0.0345651 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 10.81 vpr 62.55 MiB -1 -1 0.24 17956 11 0.24 -1 -1 32340 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1199 8009 1837 5098 1074 62.5 MiB 0.08 0.00 6.67634 -139.796 -6.67634 6.67634 0.66 0.000816255 0.000757902 0.0360718 0.0334154 28 3632 25 6.55708e+06 313430 500653. 1732.36 7.52 0.228523 0.19753 21310 115450 -1 3034 17 1219 3512 237683 52838 6.02098 6.02098 -144.744 -6.02098 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0294573 0.0258892 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.14 vpr 62.75 MiB -1 -1 0.38 18564 13 0.26 -1 -1 33112 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 23.8 MiB 0.37 1233 10087 2475 7168 444 62.8 MiB 0.10 0.00 8.06207 -155.797 -8.06207 8.06207 0.70 0.000909603 0.000841237 0.0485382 0.0448437 30 3293 46 6.55708e+06 337540 526063. 1820.29 1.51 0.193034 0.168017 21886 126133 -1 2675 26 1106 3751 251091 79270 6.93376 6.93376 -147.802 -6.93376 0 0 666494. 2306.21 0.19 0.11 0.10 -1 -1 0.19 0.0454805 0.0395261 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 10.45 vpr 62.97 MiB -1 -1 0.35 18216 12 0.25 -1 -1 32952 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 303 335 1 222 95 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1436 6359 1286 4580 493 63.0 MiB 0.07 0.00 6.95103 -151.174 -6.95103 6.95103 0.67 0.000969674 0.000893551 0.0326121 0.0301622 30 3712 38 6.55708e+06 373705 526063. 1820.29 6.84 0.37167 0.319236 21886 126133 -1 3281 19 1479 5216 261732 58859 5.82238 5.82238 -142.785 -5.82238 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.03795 0.0332257 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.23 vpr 62.73 MiB -1 -1 0.31 18208 13 0.24 -1 -1 32700 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1308 6183 1201 4740 242 62.7 MiB 0.07 0.00 7.54518 -157.312 -7.54518 7.54518 0.65 0.00075163 0.000679449 0.0301758 0.0278528 30 3205 18 6.55708e+06 349595 526063. 1820.29 2.98 0.249847 0.214846 21886 126133 -1 2732 14 1073 3168 149774 35292 6.66944 6.66944 -149.906 -6.66944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0290196 0.0256323 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.55 vpr 62.92 MiB -1 -1 0.38 18092 13 0.21 -1 -1 33252 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1388 8532 2067 5744 721 62.9 MiB 0.09 0.00 7.16941 -159.486 -7.16941 7.16941 0.72 0.000868861 0.000805197 0.0401885 0.0372054 30 3289 17 6.55708e+06 313430 526063. 1820.29 2.10 0.142413 0.124849 21886 126133 -1 2807 26 1192 3527 316815 132051 6.22018 6.22018 -150.463 -6.22018 0 0 666494. 2306.21 0.19 0.13 0.09 -1 -1 0.19 0.0430137 0.0373816 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.96 vpr 62.69 MiB -1 -1 0.37 18568 12 0.24 -1 -1 32956 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 23.7 MiB 0.41 1391 9892 2367 6162 1363 62.7 MiB 0.10 0.00 7.40971 -158.505 -7.40971 7.40971 0.67 0.000937672 0.000858506 0.0471117 0.0435041 38 3339 27 6.55708e+06 361650 638502. 2209.35 4.40 0.346153 0.297764 23326 155178 -1 2841 15 1219 4211 197600 45318 6.53898 6.53898 -147.821 -6.53898 0 0 851065. 2944.86 0.21 0.05 0.09 -1 -1 0.21 0.0186167 0.0168474 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.72 vpr 62.86 MiB -1 -1 0.22 18752 13 0.31 -1 -1 33244 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1496 6791 1324 4848 619 62.9 MiB 0.08 0.00 7.58188 -163.597 -7.58188 7.58188 0.66 0.000988434 0.000915037 0.033829 0.0312087 36 3856 17 6.55708e+06 373705 612192. 2118.31 3.20 0.232079 0.201055 22750 144809 -1 3244 19 1411 4282 222301 51731 6.62764 6.62764 -150.995 -6.62764 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0397662 0.0350184 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.89 vpr 62.64 MiB -1 -1 0.32 18052 14 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 262 294 1 193 89 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1153 11969 3180 6354 2435 62.6 MiB 0.11 0.00 8.31223 -163.645 -8.31223 8.31223 0.66 0.000855781 0.000792068 0.0548979 0.0508524 34 3446 43 6.55708e+06 301375 585099. 2024.56 2.36 0.2269 0.198158 22462 138074 -1 2795 19 1302 4041 241474 58208 7.7191 7.7191 -164.117 -7.7191 0 0 742403. 2568.87 0.21 0.10 0.13 -1 -1 0.21 0.0340522 0.02985 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 4.93 vpr 62.91 MiB -1 -1 0.32 18188 13 0.28 -1 -1 32728 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 291 323 1 224 95 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1425 8519 1811 6143 565 62.9 MiB 0.09 0.00 8.29301 -163.281 -8.29301 8.29301 0.66 0.000935825 0.000864693 0.040325 0.037299 30 3639 21 6.55708e+06 373705 526063. 1820.29 1.44 0.152679 0.13372 21886 126133 -1 3048 15 1297 3920 193839 45269 7.32896 7.32896 -156.234 -7.32896 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0309719 0.0273613 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 7.57 vpr 63.17 MiB -1 -1 0.39 18536 13 0.28 -1 -1 32816 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1386 9679 2058 7206 415 63.2 MiB 0.10 0.00 7.87649 -159.745 -7.87649 7.87649 0.66 0.000961697 0.000891505 0.0474816 0.043927 38 3311 30 6.55708e+06 373705 638502. 2209.35 3.91 0.35158 0.302819 23326 155178 -1 2716 16 1393 4118 186063 45893 6.6811 6.6811 -148.326 -6.6811 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0335478 0.0295485 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.64 vpr 63.07 MiB -1 -1 0.38 18564 12 0.30 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 308 340 1 237 97 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1456 8755 1875 6172 708 63.1 MiB 0.09 0.00 7.82047 -162.193 -7.82047 7.82047 0.65 0.000966957 0.000891491 0.0418651 0.038709 30 3744 18 6.55708e+06 397815 526063. 1820.29 1.09 0.153003 0.134045 21886 126133 -1 3061 15 1373 3745 174001 41817 7.0025 7.0025 -157.196 -7.0025 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0322148 0.0284523 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.31 vpr 61.89 MiB -1 -1 0.28 18112 11 0.15 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 216 248 1 160 83 17 17 289 -1 unnamed_device 23.4 MiB 0.21 1004 9263 2865 4455 1943 61.9 MiB 0.08 0.00 6.22709 -128.104 -6.22709 6.22709 0.63 0.000682427 0.000631937 0.0377787 0.0348305 30 2463 15 6.55708e+06 229045 526063. 1820.29 3.19 0.240543 0.207023 21886 126133 -1 2091 18 889 2380 117579 28327 5.24832 5.24832 -126.347 -5.24832 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.025766 0.0225977 126 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 10.05 vpr 62.64 MiB -1 -1 0.25 18300 13 0.21 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 254 286 1 195 88 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1233 5938 1147 4519 272 62.6 MiB 0.07 0.00 7.61227 -159.82 -7.61227 7.61227 0.67 0.000835936 0.00077314 0.0285183 0.0264614 26 3709 42 6.55708e+06 289320 477104. 1650.88 6.69 0.293921 0.252629 21022 109990 -1 3051 20 1257 3519 238150 53555 6.82624 6.82624 -156.727 -6.82624 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0339574 0.0297006 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 12.75 vpr 63.02 MiB -1 -1 0.37 19092 14 0.42 -1 -1 33016 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 338 370 1 251 98 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1522 6848 1188 5384 276 63.0 MiB 0.09 0.00 8.62537 -170.671 -8.62537 8.62537 0.67 0.00109536 0.00100593 0.0376128 0.0348002 28 4874 46 6.55708e+06 409870 500653. 1732.36 8.72 0.350957 0.302723 21310 115450 -1 4049 29 2764 9243 620816 154672 7.72935 7.72935 -170.936 -7.72935 0 0 612192. 2118.31 0.20 0.20 0.11 -1 -1 0.20 0.0595931 0.0519308 244 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.33 vpr 62.86 MiB -1 -1 0.36 18108 13 0.28 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1384 6823 1472 4881 470 62.9 MiB 0.08 0.00 7.83243 -170.302 -7.83243 7.83243 0.67 0.000899248 0.000834477 0.0339556 0.0314677 44 3050 17 6.55708e+06 325485 742403. 2568.87 3.51 0.278298 0.23934 24478 177802 -1 2643 14 1012 3046 157672 35722 6.7601 6.7601 -155.805 -6.7601 0 0 937218. 3242.97 0.26 0.07 0.16 -1 -1 0.26 0.0287496 0.0254365 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.34 vpr 61.97 MiB -1 -1 0.31 18024 11 0.17 -1 -1 32676 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.4 MiB 0.16 1068 5665 1228 3746 691 62.0 MiB 0.07 0.00 6.82549 -140.791 -6.82549 6.82549 0.90 0.00218 0.0020686 0.0265418 0.0245217 28 2758 48 6.55708e+06 277265 500653. 1732.36 4.04 0.234345 0.201356 21310 115450 -1 2223 15 863 2453 136374 32055 6.02098 6.02098 -137.567 -6.02098 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0190735 0.0169359 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 6.35 vpr 62.85 MiB -1 -1 0.36 19224 15 0.50 -1 -1 32812 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1739 8198 1861 5696 641 62.9 MiB 0.10 0.00 9.48099 -183.773 -9.48099 9.48099 0.66 0.00111774 0.00103299 0.0453296 0.0418345 30 4766 43 6.55708e+06 409870 526063. 1820.29 2.53 0.223095 0.194443 21886 126133 -1 3758 20 2315 7493 367102 83035 8.17861 8.17861 -174.69 -8.17861 0 0 666494. 2306.21 0.19 0.13 0.11 -1 -1 0.19 0.0464022 0.0406802 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 5.49 vpr 62.80 MiB -1 -1 0.32 18440 13 0.32 -1 -1 32764 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 297 329 1 216 91 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1402 8047 1818 5614 615 62.8 MiB 0.09 0.00 8.34252 -168.918 -8.34252 8.34252 0.67 0.000957082 0.000886521 0.0419248 0.0388136 28 3745 33 6.55708e+06 325485 500653. 1732.36 1.95 0.179527 0.15713 21310 115450 -1 3305 32 1424 4263 490479 193477 7.13236 7.13236 -164.015 -7.13236 0 0 612192. 2118.31 0.18 0.18 0.11 -1 -1 0.18 0.0562012 0.0487657 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.55 vpr 62.09 MiB -1 -1 0.27 17764 11 0.13 -1 -1 32676 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1123 7079 1610 4999 470 62.1 MiB 0.07 0.00 6.21723 -134.883 -6.21723 6.21723 0.66 0.000732626 0.000673226 0.029886 0.0275582 28 3226 47 6.55708e+06 265210 500653. 1732.36 2.38 0.157597 0.137671 21310 115450 -1 2683 25 1169 3414 305780 96470 5.40772 5.40772 -133.925 -5.40772 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0347721 0.0302852 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.06 vpr 62.95 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1442 7336 1475 5411 450 62.9 MiB 0.08 0.00 7.74548 -154.851 -7.74548 7.74548 0.70 0.000724799 0.000653202 0.0324624 0.0297609 30 3768 28 6.55708e+06 361650 526063. 1820.29 1.44 0.128669 0.113276 21886 126133 -1 2990 17 1354 4447 206420 49162 6.6811 6.6811 -148.12 -6.6811 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0354458 0.0311621 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.91 vpr 62.32 MiB -1 -1 0.29 18044 12 0.19 -1 -1 32728 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.3 MiB 0.40 1234 7728 1773 5535 420 62.3 MiB 0.08 0.00 7.26258 -154.513 -7.26258 7.26258 0.67 0.000791369 0.00072307 0.0338127 0.0312146 30 3076 20 6.55708e+06 313430 526063. 1820.29 3.50 0.29432 0.254066 21886 126133 -1 2578 16 1075 2998 146869 34828 6.50944 6.50944 -149.849 -6.50944 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0275223 0.0242078 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.13 vpr 62.23 MiB -1 -1 0.31 18144 12 0.18 -1 -1 32644 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.4 MiB 0.18 964 11603 3147 6112 2344 62.2 MiB 0.10 0.00 6.97512 -139.748 -6.97512 6.97512 0.67 0.000743787 0.000688194 0.0505932 0.0468064 30 2394 29 6.55708e+06 253155 526063. 1820.29 2.94 0.276316 0.238859 21886 126133 -1 1946 17 802 2468 113048 27165 6.11164 6.11164 -132.147 -6.11164 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.027002 0.0237163 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 4.88 vpr 62.71 MiB -1 -1 0.39 18592 12 0.29 -1 -1 33380 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1335 8579 2026 5633 920 62.7 MiB 0.09 0.00 6.72746 -129.302 -6.72746 6.72746 0.66 0.000908034 0.000839337 0.0408001 0.0377242 30 3317 43 6.55708e+06 373705 526063. 1820.29 1.42 0.180945 0.157472 21886 126133 -1 2826 18 1244 4120 188907 44459 6.10198 6.10198 -127.139 -6.10198 0 0 666494. 2306.21 0.20 0.08 0.12 -1 -1 0.20 0.0344755 0.0302573 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.63 vpr 63.21 MiB -1 -1 0.37 18564 13 0.35 -1 -1 32712 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1542 6535 1180 4663 692 63.2 MiB 0.08 0.00 8.33266 -174.188 -8.33266 8.33266 0.69 0.00103233 0.000955937 0.0344458 0.0319218 30 4033 40 6.55708e+06 397815 526063. 1820.29 1.72 0.188799 0.164979 21886 126133 -1 3267 24 1656 4611 309598 104826 7.16956 7.16956 -164.247 -7.16956 0 0 666494. 2306.21 0.19 0.13 0.15 -1 -1 0.19 0.0459871 0.0403786 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.56 vpr 62.68 MiB -1 -1 0.38 18564 12 0.24 -1 -1 32920 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 290 322 1 219 93 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1337 14373 3637 8257 2479 62.7 MiB 0.14 0.00 7.56736 -150.416 -7.56736 7.56736 0.66 0.000935771 0.00086679 0.0680709 0.0630665 36 3622 43 6.55708e+06 349595 612192. 2118.31 3.76 0.288068 0.250703 22750 144809 -1 3031 29 1892 6473 553405 193941 6.55324 6.55324 -142.68 -6.55324 0 0 782063. 2706.10 0.21 0.19 0.13 -1 -1 0.21 0.0518562 0.0450923 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.28 vpr 61.91 MiB -1 -1 0.26 17924 12 0.15 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.3 MiB 0.48 1128 7404 1881 4703 820 61.9 MiB 0.07 0.00 6.63325 -140.069 -6.63325 6.63325 0.66 0.000691438 0.00063989 0.0303447 0.0280724 30 2675 25 6.55708e+06 241100 526063. 1820.29 2.93 0.220977 0.190241 21886 126133 -1 2183 16 874 2494 118684 28424 5.84792 5.84792 -135.25 -5.84792 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244 0.0214827 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 7.40 vpr 62.49 MiB -1 -1 0.29 18292 12 0.21 -1 -1 32428 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 31 32 244 276 1 182 88 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1170 7498 1759 4547 1192 62.5 MiB 0.07 0.00 7.01252 -142.578 -7.01252 7.01252 0.66 0.000808783 0.000740576 0.0332928 0.0307404 36 2969 23 6.55708e+06 301375 612192. 2118.31 4.11 0.308689 0.264552 22750 144809 -1 2577 16 1162 3661 196645 45570 5.97978 5.97978 -135.917 -5.97978 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0275096 0.0241508 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.88 vpr 62.68 MiB -1 -1 0.35 18296 11 0.18 -1 -1 32740 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1298 4853 867 3420 566 62.7 MiB 0.06 0.00 6.85992 -133.534 -6.85992 6.85992 0.66 0.000882159 0.000807658 0.0246436 0.0228051 38 3068 19 6.55708e+06 361650 638502. 2209.35 3.67 0.268064 0.229169 23326 155178 -1 2722 17 1166 3960 199201 45763 5.98178 5.98178 -129.207 -5.98178 0 0 851065. 2944.86 0.22 0.08 0.14 -1 -1 0.22 0.0322791 0.0283257 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.17 vpr 62.55 MiB -1 -1 0.33 17804 11 0.20 -1 -1 32832 -1 -1 27 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1170 7767 1783 5428 556 62.6 MiB 0.08 0.00 6.49677 -121.518 -6.49677 6.49677 0.66 0.00082224 0.000763471 0.0362767 0.0336815 28 3308 46 6.55708e+06 325485 500653. 1732.36 1.93 0.168629 0.146605 21310 115450 -1 2742 16 1154 3672 238825 52497 5.69192 5.69192 -121.797 -5.69192 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0285252 0.0250106 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 9.16 vpr 62.68 MiB -1 -1 0.33 18108 13 0.21 -1 -1 32640 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 30 32 235 267 1 176 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1097 11593 3515 6131 1947 62.7 MiB 0.10 0.00 7.49937 -144.316 -7.49937 7.49937 0.66 0.000761158 0.000705534 0.048174 0.0446331 28 3200 50 6.55708e+06 313430 500653. 1732.36 5.81 0.265668 0.231189 21310 115450 -1 2553 20 1158 3375 193107 45194 6.78764 6.78764 -141.625 -6.78764 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0310005 0.0271482 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.84 vpr 62.61 MiB -1 -1 0.35 18308 12 0.20 -1 -1 32396 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1348 8993 2218 6004 771 62.6 MiB 0.09 0.00 7.3262 -158.713 -7.3262 7.3262 0.66 0.000854954 0.000792122 0.0405551 0.037575 28 3637 33 6.55708e+06 337540 500653. 1732.36 2.49 0.160188 0.139864 21310 115450 -1 3055 22 1532 4483 326671 87119 6.71264 6.71264 -157.26 -6.71264 0 0 612192. 2118.31 0.18 0.12 0.08 -1 -1 0.18 0.0374486 0.0326911 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 8.24 vpr 62.73 MiB -1 -1 0.25 18316 13 0.28 -1 -1 32752 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1215 5718 1125 4239 354 62.7 MiB 0.06 0.00 8.06933 -153.277 -8.06933 8.06933 0.66 0.000906357 0.000840753 0.0289939 0.0268333 26 3789 32 6.55708e+06 325485 477104. 1650.88 4.92 0.263373 0.227354 21022 109990 -1 3184 22 1707 5165 324877 74151 7.0025 7.0025 -157.365 -7.0025 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.039164 0.0341592 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.73 vpr 62.96 MiB -1 -1 0.38 18672 14 0.26 -1 -1 32956 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1301 9407 2176 6085 1146 63.0 MiB 0.10 0.00 8.35433 -163.826 -8.35433 8.35433 0.66 0.000931923 0.000862795 0.0466193 0.0431242 28 3805 35 6.55708e+06 337540 500653. 1732.36 2.27 0.178966 0.156723 21310 115450 -1 3098 17 1364 3824 225167 51687 7.18182 7.18182 -157.405 -7.18182 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0336074 0.029524 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.45 vpr 62.54 MiB -1 -1 0.41 18824 14 0.24 -1 -1 32936 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1247 10385 2379 5942 2064 62.5 MiB 0.10 0.00 7.58177 -145.01 -7.58177 7.58177 0.70 0.000872343 0.000807836 0.0491473 0.0455188 34 3317 49 6.55708e+06 301375 585099. 2024.56 3.94 0.34154 0.293385 22462 138074 -1 2731 17 1199 3748 206549 48044 6.70864 6.70864 -142.763 -6.70864 0 0 742403. 2568.87 0.21 0.09 0.13 -1 -1 0.21 0.0317779 0.0278821 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.14 vpr 62.70 MiB -1 -1 0.40 18868 13 0.39 -1 -1 33316 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 296 328 1 222 93 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1403 8073 1958 5278 837 62.7 MiB 0.09 0.00 7.90532 -157.651 -7.90532 7.90532 0.67 0.000960123 0.000881897 0.0404373 0.0373798 28 3887 23 6.55708e+06 349595 500653. 1732.36 5.43 0.269568 0.232472 21310 115450 -1 3499 21 1898 5430 340594 75352 6.85016 6.85016 -153.21 -6.85016 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0405848 0.03544 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.77 vpr 62.39 MiB -1 -1 0.28 18088 13 0.19 -1 -1 32628 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 234 266 1 185 86 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1086 8024 1919 5617 488 62.4 MiB 0.08 0.00 7.66268 -153.181 -7.66268 7.66268 0.66 0.000758013 0.000703175 0.0347466 0.0321409 26 3172 28 6.55708e+06 289320 477104. 1650.88 4.62 0.286194 0.246376 21022 109990 -1 2671 15 1123 2693 171006 39961 6.94644 6.94644 -155.213 -6.94644 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.024912 0.0219606 146 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 9.62 vpr 62.68 MiB -1 -1 0.34 18708 13 0.46 -1 -1 32852 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1416 7336 1414 5551 371 62.7 MiB 0.08 0.00 8.07413 -161.91 -8.07413 8.07413 0.66 0.000971793 0.000900927 0.0371909 0.034467 30 3702 28 6.55708e+06 385760 526063. 1820.29 5.92 0.356444 0.307207 21886 126133 -1 3102 18 1510 4211 202277 48691 6.9195 6.9195 -154.528 -6.9195 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0367633 0.0320945 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 9.43 vpr 62.66 MiB -1 -1 0.37 18428 14 0.34 -1 -1 32952 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 274 306 1 211 89 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1220 7217 1622 4486 1109 62.7 MiB 0.08 0.00 8.04044 -163.742 -8.04044 8.04044 0.65 0.00089603 0.00082912 0.036277 0.0335721 34 4022 46 6.55708e+06 301375 585099. 2024.56 5.72 0.333223 0.285978 22462 138074 -1 3088 25 1449 4479 326046 95793 7.01016 7.01016 -159.344 -7.01016 0 0 742403. 2568.87 0.21 0.13 0.12 -1 -1 0.21 0.0437553 0.0381034 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.74 vpr 62.65 MiB -1 -1 0.37 18172 13 0.21 -1 -1 32728 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 266 298 1 204 90 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1270 6321 1361 4444 516 62.6 MiB 0.07 0.00 7.62087 -154.066 -7.62087 7.62087 0.66 0.000877306 0.000812839 0.0306336 0.0283896 44 2993 19 6.55708e+06 325485 742403. 2568.87 3.26 0.265849 0.225781 24478 177802 -1 2523 16 1046 3148 159499 36425 6.70864 6.70864 -145.074 -6.70864 0 0 937218. 3242.97 0.25 0.08 0.16 -1 -1 0.25 0.0306991 0.0271118 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.47 vpr 62.52 MiB -1 -1 0.38 18440 13 0.24 -1 -1 32772 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 266 298 1 204 91 17 17 289 -1 unnamed_device 23.7 MiB 0.55 1241 13555 3513 7863 2179 62.5 MiB 0.12 0.00 7.54758 -141.687 -7.54758 7.54758 0.72 0.000854286 0.000791126 0.0596992 0.0551582 32 3611 29 6.55708e+06 349595 554710. 1919.41 3.37 0.347737 0.299512 22174 131602 -1 3200 47 1491 4937 948393 518556 6.4805 6.4805 -139.181 -6.4805 0 0 701300. 2426.64 0.19 0.32 0.12 -1 -1 0.19 0.0693327 0.0596512 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 5.12 vpr 63.22 MiB -1 -1 0.37 18616 14 0.34 -1 -1 32732 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1428 8326 1796 5639 891 63.2 MiB 0.09 0.00 8.11569 -168.134 -8.11569 8.11569 0.72 0.00100585 0.000931814 0.0394478 0.0364968 30 3796 30 6.55708e+06 446035 526063. 1820.29 1.34 0.175471 0.153354 21886 126133 -1 3091 17 1489 4196 196271 48070 7.14564 7.14564 -161.227 -7.14564 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0366495 0.0323323 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.13 vpr 62.80 MiB -1 -1 0.39 18556 11 0.31 -1 -1 32644 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.0 MiB 0.44 1190 5115 1015 3819 281 62.8 MiB 0.06 0.00 6.99314 -135.121 -6.99314 6.99314 0.66 0.000885323 0.000812505 0.0268328 0.0248973 34 3343 34 6.55708e+06 349595 585099. 2024.56 3.43 0.280346 0.240857 22462 138074 -1 2706 15 1147 3360 184930 43602 6.17838 6.17838 -131.048 -6.17838 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0294289 0.025932 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.48 vpr 62.05 MiB -1 -1 0.29 18028 13 0.16 -1 -1 32684 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1158 7108 1605 4699 804 62.1 MiB 0.07 0.00 6.94929 -157.648 -6.94929 6.94929 0.66 0.000728662 0.000675554 0.0287712 0.0266419 26 3238 27 6.55708e+06 289320 477104. 1650.88 2.35 0.123272 0.107975 21022 109990 -1 2815 19 1171 2928 203752 48160 6.41938 6.41938 -159.247 -6.41938 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281922 0.0247382 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.46 vpr 62.59 MiB -1 -1 0.36 18584 14 0.23 -1 -1 32932 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1272 7751 1792 5305 654 62.6 MiB 0.08 0.00 8.06558 -167.325 -8.06558 8.06558 0.70 0.000778896 0.00071298 0.0346449 0.0319002 46 2774 14 6.55708e+06 337540 782063. 2706.10 3.81 0.310567 0.267218 24766 183262 -1 2551 15 1009 3223 153758 35156 6.9985 6.9985 -156.059 -6.9985 0 0 958460. 3316.47 0.26 0.07 0.16 -1 -1 0.26 0.0289931 0.0255939 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 13.62 vpr 63.35 MiB -1 -1 0.29 19004 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 334 366 1 261 98 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1649 12023 2996 7449 1578 63.4 MiB 0.13 0.00 8.8435 -186.31 -8.8435 8.8435 0.66 0.00107035 0.000990631 0.0624142 0.0577286 30 4536 26 6.55708e+06 409870 526063. 1820.29 9.86 0.379183 0.329099 21886 126133 -1 3566 20 1759 4992 238655 56450 7.96775 7.96775 -180.251 -7.96775 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.043953 0.0386303 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.41 vpr 61.92 MiB -1 -1 0.31 18036 11 0.21 -1 -1 32576 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 220 252 1 156 85 17 17 289 -1 unnamed_device 23.4 MiB 0.42 923 12361 3928 6475 1958 61.9 MiB 0.10 0.00 6.38603 -130.972 -6.38603 6.38603 0.65 0.000700842 0.000648839 0.0493874 0.0456532 34 2491 32 6.55708e+06 253155 585099. 2024.56 2.97 0.264463 0.228195 22462 138074 -1 2110 19 911 2752 144443 35106 5.66238 5.66238 -124.419 -5.66238 0 0 742403. 2568.87 0.21 0.07 0.10 -1 -1 0.21 0.0274291 0.0239401 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.83 vpr 62.45 MiB -1 -1 0.31 18068 12 0.23 -1 -1 33052 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 193 90 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1230 7326 1593 5044 689 62.4 MiB 0.07 0.00 6.98403 -147.666 -6.98403 6.98403 0.65 0.000782368 0.000720796 0.0313805 0.0290323 28 3516 50 6.55708e+06 325485 500653. 1732.36 4.53 0.301204 0.258329 21310 115450 -1 2955 19 1303 3623 214874 49641 6.20332 6.20332 -147.361 -6.20332 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.031144 0.0273487 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.49 vpr 62.75 MiB -1 -1 0.38 18440 12 0.29 -1 -1 32812 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1497 8199 1839 5577 783 62.7 MiB 0.09 0.00 7.33061 -158.742 -7.33061 7.33061 0.66 0.000983283 0.000901277 0.041433 0.0382761 30 4080 31 6.55708e+06 385760 526063. 1820.29 1.92 0.172874 0.150926 21886 126133 -1 3305 18 1524 4393 219896 50717 6.2807 6.2807 -150.986 -6.2807 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0375501 0.0330093 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.02 vpr 62.75 MiB -1 -1 0.38 18208 12 0.26 -1 -1 32720 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1401 7125 1520 5090 515 62.7 MiB 0.08 0.00 7.67704 -159.687 -7.67704 7.67704 0.72 0.000884856 0.000820011 0.0347355 0.0321419 44 3198 17 6.55708e+06 313430 742403. 2568.87 3.35 0.265474 0.228382 24478 177802 -1 2838 17 1094 3648 189143 43057 6.8013 6.8013 -153.15 -6.8013 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.0318735 0.0280087 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.05 vpr 63.17 MiB -1 -1 0.37 18952 14 0.44 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1702 7655 1606 5611 438 63.2 MiB 0.09 0.00 8.96309 -178.872 -8.96309 8.96309 0.65 0.00106517 0.000984944 0.0430028 0.0397569 36 4446 40 6.55708e+06 373705 612192. 2118.31 4.94 0.291894 0.252915 22750 144809 -1 3774 26 1687 5548 348015 84215 7.85922 7.85922 -171.104 -7.85922 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0533766 0.0466138 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.87 vpr 62.62 MiB -1 -1 0.34 18208 12 0.21 -1 -1 32692 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.6 MiB 0.58 1287 7575 1714 5483 378 62.6 MiB 0.08 0.00 7.47384 -141.76 -7.47384 7.47384 0.66 0.000827543 0.000768358 0.0358672 0.0332641 28 4066 44 6.55708e+06 301375 500653. 1732.36 3.29 0.170988 0.148932 21310 115450 -1 3020 16 1151 3483 224807 49833 6.70864 6.70864 -142.016 -6.70864 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0287627 0.0252936 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.43 vpr 62.00 MiB -1 -1 0.27 18112 11 0.22 -1 -1 32572 -1 -1 26 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.4 MiB 0.26 931 11989 3061 7291 1637 62.0 MiB 0.12 0.00 6.80335 -123.262 -6.80335 6.80335 0.70 0.000708249 0.000656497 0.0600735 0.0555404 26 2783 41 6.55708e+06 313430 477104. 1650.88 3.16 0.256794 0.22231 21022 109990 -1 2384 18 1199 3380 194509 48070 6.03064 6.03064 -121.748 -6.03064 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0271521 0.0237525 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 7.04 vpr 63.42 MiB -1 -1 0.42 19108 13 0.47 -1 -1 32796 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.4 MiB 0.44 1770 11816 2824 7429 1563 63.4 MiB 0.13 0.00 8.12254 -164.758 -8.12254 8.12254 0.62 0.00118232 0.00109323 0.0623435 0.0576257 38 4857 49 6.55708e+06 482200 638502. 2209.35 2.99 0.296442 0.258007 23326 155178 -1 3570 18 1882 6131 281111 68584 7.03004 7.03004 -154.314 -7.03004 0 0 851065. 2944.86 0.23 0.12 0.14 -1 -1 0.23 0.0445101 0.0391997 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.58 vpr 62.68 MiB -1 -1 0.33 18568 14 0.29 -1 -1 32708 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1247 12127 2952 7653 1522 62.7 MiB 0.12 0.00 7.99624 -158.799 -7.99624 7.99624 0.67 0.000925415 0.00085846 0.0571622 0.05274 30 3329 38 6.55708e+06 337540 526063. 1820.29 3.21 0.334589 0.287897 21886 126133 -1 2813 22 1397 3985 195094 45869 7.1207 7.1207 -152.799 -7.1207 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.039408 0.0344392 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.79 vpr 62.22 MiB -1 -1 0.34 18284 12 0.21 -1 -1 32572 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 229 261 1 178 89 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1071 7217 1608 4614 995 62.2 MiB 0.07 0.00 7.1692 -152.502 -7.1692 7.1692 0.66 0.000748751 0.000693263 0.0302144 0.0278995 28 3141 42 6.55708e+06 301375 500653. 1732.36 1.63 0.148608 0.129689 21310 115450 -1 2655 16 1109 3044 186864 43877 6.1631 6.1631 -148.829 -6.1631 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0265625 0.0234285 144 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 10.59 vpr 62.77 MiB -1 -1 0.37 18324 13 0.33 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1267 8934 2136 5911 887 62.8 MiB 0.09 0.00 7.70312 -157.904 -7.70312 7.70312 0.65 0.000686091 0.000628286 0.0406228 0.0375307 28 3687 38 6.55708e+06 313430 500653. 1732.36 7.02 0.27317 0.23603 21310 115450 -1 2943 16 1173 3501 210890 47929 6.8039 6.8039 -153.425 -6.8039 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0337138 0.0299089 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.38 vpr 63.05 MiB -1 -1 0.38 18844 13 0.31 -1 -1 32764 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1613 9323 2087 6739 497 63.0 MiB 0.11 0.00 7.89411 -162.823 -7.89411 7.89411 0.70 0.0010246 0.000948758 0.0497355 0.0460582 36 4188 19 6.55708e+06 421925 612192. 2118.31 1.67 0.206678 0.180853 22750 144809 -1 3509 18 1533 4694 254821 58773 6.6399 6.6399 -151.086 -6.6399 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0392454 0.0345598 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.97 vpr 62.77 MiB -1 -1 0.34 18192 11 0.24 -1 -1 32712 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 287 319 1 210 95 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1259 9167 2054 6526 587 62.8 MiB 0.09 0.00 6.6803 -129.394 -6.6803 6.6803 0.66 0.000922619 0.000851464 0.0424787 0.0392027 36 3457 44 6.55708e+06 397815 612192. 2118.31 3.42 0.27283 0.235916 22750 144809 -1 3054 30 1292 4283 378107 142282 5.99344 5.99344 -128.062 -5.99344 0 0 782063. 2706.10 0.29 0.09 0.15 -1 -1 0.29 0.0275602 0.0243962 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 12.46 vpr 62.81 MiB -1 -1 0.38 18564 15 0.36 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 296 328 1 224 93 17 17 289 -1 unnamed_device 23.9 MiB 0.49 1412 8073 1941 5451 681 62.8 MiB 0.09 0.00 9.02973 -184.383 -9.02973 9.02973 0.66 0.000849193 0.000784271 0.0400935 0.0370074 28 3953 42 6.55708e+06 349595 500653. 1732.36 8.63 0.303043 0.261713 21310 115450 -1 3335 16 1632 4925 286354 65603 7.68815 7.68815 -174.435 -7.68815 0 0 612192. 2118.31 0.21 0.10 0.11 -1 -1 0.21 0.0341541 0.0300966 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.70 vpr 62.79 MiB -1 -1 0.39 18756 13 0.31 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 285 317 1 225 94 17 17 289 -1 unnamed_device 23.8 MiB 0.39 1398 9040 2290 6006 744 62.8 MiB 0.09 0.00 7.98903 -170.903 -7.98903 7.98903 0.67 0.000941271 0.00086744 0.0430056 0.0396919 44 3093 48 6.55708e+06 361650 742403. 2568.87 3.97 0.367577 0.31575 24478 177802 -1 2671 16 1128 3601 171553 39937 6.9195 6.9195 -158.404 -6.9195 0 0 937218. 3242.97 0.26 0.08 0.16 -1 -1 0.26 0.032829 0.0289263 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 4.81 vpr 62.38 MiB -1 -1 0.32 17964 12 0.20 -1 -1 32688 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.4 MiB 0.41 1189 8934 2259 5724 951 62.4 MiB 0.08 0.00 7.37281 -150.82 -7.37281 7.37281 0.66 0.000768189 0.000711615 0.0377237 0.0349173 28 3038 34 6.55708e+06 349595 500653. 1732.36 1.45 0.14532 0.126933 21310 115450 -1 2732 17 1165 3200 178344 41874 6.8405 6.8405 -151.077 -6.8405 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0277787 0.0244203 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.23 vpr 61.96 MiB -1 -1 0.31 18268 11 0.16 -1 -1 32768 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.4 MiB 0.17 1123 11059 2941 6474 1644 62.0 MiB 0.09 0.00 6.88435 -140.697 -6.88435 6.88435 0.66 0.000572992 0.000520893 0.0455112 0.0419847 34 2634 29 6.55708e+06 253155 585099. 2024.56 3.02 0.304333 0.262006 22462 138074 -1 2360 21 1072 2750 161134 37226 6.10198 6.10198 -137.057 -6.10198 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0309328 0.0270248 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.64 vpr 62.84 MiB -1 -1 0.28 18304 13 0.31 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 294 326 1 225 92 17 17 289 -1 unnamed_device 23.9 MiB 0.53 1353 8165 1745 5313 1107 62.8 MiB 0.09 0.00 7.95223 -162.187 -7.95223 7.95223 0.65 0.000937816 0.000867724 0.0408044 0.0376858 30 3774 24 6.55708e+06 349595 526063. 1820.29 1.90 0.162766 0.142984 21886 126133 -1 3129 20 1574 5108 253820 58875 7.0397 7.0397 -155.244 -7.0397 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0388954 0.0340386 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 4.47 vpr 61.95 MiB -1 -1 0.28 18060 10 0.17 -1 -1 33040 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 29 32 219 251 1 165 88 17 17 289 -1 unnamed_device 23.4 MiB 0.20 979 6133 1235 4409 489 61.9 MiB 0.03 0.00 5.98168 -119.896 -5.98168 5.98168 0.71 0.000315526 0.000290093 0.011954 0.0109918 28 2713 32 6.55708e+06 325485 500653. 1732.36 1.40 0.109155 0.0940363 21310 115450 -1 2298 16 958 2674 168299 39337 5.32872 5.32872 -123.036 -5.32872 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246193 0.0216549 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.02 vpr 62.59 MiB -1 -1 0.30 17944 14 0.19 -1 -1 32720 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1013 10618 2901 6668 1049 62.6 MiB 0.10 0.00 8.01252 -164.615 -8.01252 8.01252 0.73 0.000757717 0.000700508 0.0443625 0.0410077 36 2974 27 6.55708e+06 289320 612192. 2118.31 3.44 0.253741 0.219328 22750 144809 -1 2347 16 1050 3010 159154 38815 7.10243 7.10243 -155.609 -7.10243 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0267851 0.0236156 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 12.02 vpr 62.75 MiB -1 -1 0.38 18484 13 0.26 -1 -1 32744 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1277 12063 3078 7002 1983 62.8 MiB 0.11 0.00 7.55489 -160.613 -7.55489 7.55489 0.66 0.000867666 0.000801714 0.0531847 0.0491316 28 4163 46 6.55708e+06 361650 500653. 1732.36 8.32 0.295695 0.25537 21310 115450 -1 3209 50 1508 4283 633378 328376 6.86804 6.86804 -161.481 -6.86804 0 0 612192. 2118.31 0.18 0.25 0.10 -1 -1 0.18 0.0735444 0.0632444 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.24 vpr 62.29 MiB -1 -1 0.32 18024 12 0.15 -1 -1 32760 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 31 32 225 257 1 175 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 972 13543 3543 8079 1921 62.3 MiB 0.11 0.00 6.46809 -135.985 -6.46809 6.46809 0.67 0.000559729 0.000513691 0.0527708 0.0488419 30 2556 39 6.55708e+06 301375 526063. 1820.29 2.93 0.279406 0.241426 21886 126133 -1 2210 15 953 2651 129918 31131 5.72972 5.72972 -132.873 -5.72972 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244034 0.0215692 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.95 vpr 62.70 MiB -1 -1 0.37 18324 12 0.22 -1 -1 32840 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1357 6321 1305 4694 322 62.7 MiB 0.07 0.00 7.2805 -151.118 -7.2805 7.2805 0.66 0.000899021 0.000830646 0.0318539 0.0294227 36 3232 20 6.55708e+06 313430 612192. 2118.31 2.48 0.211936 0.182893 22750 144809 -1 2786 16 1222 3844 228616 50983 6.23184 6.23184 -141.588 -6.23184 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0319245 0.0280905 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.94 vpr 62.77 MiB -1 -1 0.40 18556 13 0.28 -1 -1 32760 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1315 14996 4191 8694 2111 62.8 MiB 0.14 0.00 7.68235 -156.61 -7.68235 7.68235 0.70 0.000927361 0.000858221 0.0711775 0.0658618 36 3681 47 6.55708e+06 349595 612192. 2118.31 4.17 0.361675 0.313621 22750 144809 -1 2885 15 1272 3943 212141 48883 6.8385 6.8385 -148.214 -6.8385 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0318766 0.0282643 191 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 7.84 vpr 62.09 MiB -1 -1 0.27 18028 11 0.17 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.4 MiB 0.34 1156 7217 1433 5081 703 62.1 MiB 0.07 0.00 6.44106 -147.701 -6.44106 6.44106 0.66 0.000743994 0.000689181 0.0300113 0.0277912 26 3273 36 6.55708e+06 301375 477104. 1650.88 4.60 0.228366 0.197307 21022 109990 -1 2733 15 1095 3130 197849 44014 5.64872 5.64872 -140.63 -5.64872 0 0 585099. 2024.56 0.21 0.08 0.10 -1 -1 0.21 0.0248261 0.0219023 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.21 vpr 62.55 MiB -1 -1 0.32 17840 13 0.21 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1221 12568 3500 6849 2219 62.6 MiB 0.12 0.00 7.53241 -157.665 -7.53241 7.53241 0.66 0.000829131 0.000768705 0.0565446 0.052343 34 3711 44 6.55708e+06 289320 585099. 2024.56 4.70 0.354705 0.306046 22462 138074 -1 2854 19 1197 3376 208775 48579 6.7229 6.7229 -154.751 -6.7229 0 0 742403. 2568.87 0.21 0.09 0.12 -1 -1 0.21 0.0325633 0.0284969 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.39 vpr 62.65 MiB -1 -1 0.23 18208 13 0.25 -1 -1 32856 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 23.8 MiB 0.76 1325 8372 1977 5648 747 62.6 MiB 0.09 0.00 7.93261 -169.937 -7.93261 7.93261 0.68 0.000914252 0.000847558 0.0403202 0.0373149 36 3145 18 6.55708e+06 337540 612192. 2118.31 1.57 0.213282 0.184954 22750 144809 -1 2792 16 1137 3209 161819 38585 7.1573 7.1573 -160.833 -7.1573 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0321905 0.0283911 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.00 vpr 62.43 MiB -1 -1 0.36 18212 11 0.19 -1 -1 33160 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 29 32 243 275 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1095 12183 2952 7495 1736 62.4 MiB 0.11 0.00 6.38849 -124.147 -6.38849 6.38849 0.65 0.000789332 0.000728953 0.0535202 0.0494659 34 2951 30 6.55708e+06 313430 585099. 2024.56 3.61 0.315499 0.271314 22462 138074 -1 2461 18 1091 3235 228081 66634 5.42198 5.42198 -116.493 -5.42198 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.030334 0.0265352 159 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.18 vpr 63.21 MiB -1 -1 0.30 18796 14 0.35 -1 -1 33208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 318 350 1 250 98 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1560 8198 1613 5991 594 63.2 MiB 0.09 0.00 8.39904 -183.874 -8.39904 8.39904 0.67 0.00102517 0.000948562 0.0412368 0.0381517 30 4322 32 6.55708e+06 409870 526063. 1820.29 1.56 0.18587 0.162496 21886 126133 -1 3416 19 1679 5045 238655 56671 7.24856 7.24856 -174.08 -7.24856 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.040797 0.0358846 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.40 vpr 61.93 MiB -1 -1 0.29 17788 12 0.15 -1 -1 32556 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 31 32 222 254 1 184 89 17 17 289 -1 unnamed_device 23.3 MiB 0.26 937 6029 1160 4001 868 61.9 MiB 0.06 0.00 6.96386 -146.099 -6.96386 6.96386 0.66 0.000704468 0.000652268 0.024131 0.0223101 30 2769 31 6.55708e+06 313430 526063. 1820.29 3.19 0.241845 0.207768 21886 126133 -1 2184 19 979 2530 133098 32980 6.13718 6.13718 -138.917 -6.13718 0 0 666494. 2306.21 0.19 0.07 0.13 -1 -1 0.19 0.0281374 0.0246526 139 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 13.16 vpr 62.83 MiB -1 -1 0.38 19048 13 0.29 -1 -1 32840 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 282 314 1 219 93 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1427 9543 2297 6228 1018 62.8 MiB 0.10 0.00 7.70698 -157.067 -7.70698 7.70698 0.66 0.00091609 0.000848359 0.0453239 0.0419393 28 4355 33 6.55708e+06 349595 500653. 1732.36 9.52 0.324219 0.280793 21310 115450 -1 3400 18 1733 5425 348740 79446 6.70864 6.70864 -153.768 -6.70864 0 0 612192. 2118.31 0.22 0.11 0.10 -1 -1 0.22 0.034608 0.0303541 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.69 vpr 62.48 MiB -1 -1 0.35 18280 13 0.20 -1 -1 32528 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1175 6723 1451 4940 332 62.5 MiB 0.07 0.00 7.59104 -161.75 -7.59104 7.59104 0.71 0.000750229 0.000695437 0.0280166 0.0259325 40 2354 17 6.55708e+06 313430 666494. 2306.21 3.22 0.286223 0.245759 23614 160646 -1 2309 19 977 2546 136667 31608 6.4381 6.4381 -149.953 -6.4381 0 0 872365. 3018.56 0.23 0.07 0.15 -1 -1 0.23 0.0294618 0.0258433 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.40 vpr 62.55 MiB -1 -1 0.37 18456 12 0.23 -1 -1 32764 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 269 301 1 198 90 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1330 9135 2220 6292 623 62.6 MiB 0.10 0.00 6.98077 -149.377 -6.98077 6.98077 0.68 0.00104939 0.000966485 0.0467986 0.0430993 30 3422 46 6.55708e+06 313430 526063. 1820.29 1.84 0.191402 0.166808 21886 126133 -1 2714 29 1134 3876 337265 140345 6.43304 6.43304 -147.012 -6.43304 0 0 666494. 2306.21 0.20 0.14 0.11 -1 -1 0.20 0.0483723 0.0419495 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.90 vpr 62.87 MiB -1 -1 0.43 19028 15 0.51 -1 -1 33140 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 350 382 1 271 100 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1801 9380 2328 6382 670 62.9 MiB 0.11 0.00 8.42612 -171.773 -8.42612 8.42612 0.63 0.00113796 0.00105151 0.0508282 0.0469256 30 4852 37 6.55708e+06 433980 526063. 1820.29 17.05 0.505037 0.434971 21886 126133 -1 4091 21 2438 8231 462298 101679 7.41256 7.41256 -169.461 -7.41256 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0495155 0.0434374 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.71 vpr 61.72 MiB -1 -1 0.28 17564 10 0.11 -1 -1 32548 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63200 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 23.1 MiB 0.11 895 9024 2291 5391 1342 61.7 MiB 0.07 0.00 5.25257 -121.184 -5.25257 5.25257 0.66 0.000530729 0.000489658 0.031241 0.0289814 28 2316 41 6.55708e+06 216990 500653. 1732.36 2.81 0.175344 0.151112 21310 115450 -1 2035 18 726 1829 113845 26006 4.8312 4.8312 -121.576 -4.8312 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0211631 0.0184902 92 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.44 vpr 61.95 MiB -1 -1 0.32 17980 13 0.21 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.3 MiB 0.18 1032 8919 2164 5388 1367 62.0 MiB 0.08 0.00 7.46729 -149.631 -7.46729 7.46729 0.66 0.000749839 0.000695075 0.03715 0.0344222 28 2742 21 6.55708e+06 301375 500653. 1732.36 1.25 0.120146 0.106054 21310 115450 -1 2581 16 1072 2952 169628 39515 6.88592 6.88592 -148.958 -6.88592 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0258277 0.0227163 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.83 vpr 62.50 MiB -1 -1 0.33 17932 12 0.19 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 264 296 1 203 90 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1234 5115 926 4061 128 62.5 MiB 0.06 0.00 7.54227 -156.123 -7.54227 7.54227 0.76 0.000847988 0.000787404 0.0247639 0.0229842 36 2946 20 6.55708e+06 313430 612192. 2118.31 3.36 0.262689 0.224635 22750 144809 -1 2609 20 1325 3857 197427 46812 6.31084 6.31084 -146.339 -6.31084 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034274 0.029909 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.40 vpr 61.66 MiB -1 -1 0.29 17756 9 0.13 -1 -1 32456 -1 -1 24 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 25 32 183 215 1 140 81 17 17 289 -1 unnamed_device 23.0 MiB 0.18 725 12156 3385 6978 1793 61.7 MiB 0.09 0.00 5.27745 -95.2043 -5.27745 5.27745 0.71 0.000610813 0.000564715 0.0444208 0.0411181 26 2187 24 6.55708e+06 289320 477104. 1650.88 3.32 0.209521 0.180702 21022 109990 -1 1846 19 919 2656 157364 37938 4.9534 4.9534 -96.7502 -4.9534 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0238207 0.0207714 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.41 vpr 62.86 MiB -1 -1 0.33 18524 12 0.31 -1 -1 32928 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1424 11419 2633 7905 881 62.9 MiB 0.11 0.00 7.34317 -159.962 -7.34317 7.34317 0.67 0.000960725 0.000890306 0.0528701 0.0488353 36 3763 23 6.55708e+06 397815 612192. 2118.31 2.82 0.245813 0.21378 22750 144809 -1 3168 17 1492 4298 232708 54498 6.31284 6.31284 -150.037 -6.31284 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034894 0.0307185 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.30 vpr 62.79 MiB -1 -1 0.36 19020 13 0.30 -1 -1 32720 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 290 322 1 228 94 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1528 10531 2641 6672 1218 62.8 MiB 0.11 0.00 8.32074 -170.063 -8.32074 8.32074 0.66 0.000952663 0.000882267 0.0508579 0.0470144 48 3177 16 6.55708e+06 373705 816265. 2824.45 3.59 0.305023 0.263482 25054 189045 -1 2972 15 1138 3521 197311 44613 7.1991 7.1991 -157.572 -7.1991 0 0 986792. 3414.50 0.27 0.08 0.17 -1 -1 0.27 0.0319127 0.0281657 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.38 vpr 62.99 MiB -1 -1 0.23 18212 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1021 13017 3203 8186 1628 63.0 MiB 0.13 0.00 5.56529 -159.911 -5.56529 5.56529 0.67 0.000564656 0.000519284 0.0423247 0.0388847 32 2485 24 6.64007e+06 401856 554710. 1919.41 0.92 0.12894 0.11321 22834 132086 -1 2178 21 1579 2366 153039 36543 4.64968 4.64968 -151.131 -4.64968 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.028886 0.0252108 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.18 vpr 62.96 MiB -1 -1 0.26 18316 1 0.03 -1 -1 30364 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1071 13527 3636 8473 1418 63.0 MiB 0.13 0.00 4.97921 -144.408 -4.97921 4.97921 0.68 0.000708503 0.000658238 0.0527121 0.0489759 32 2399 23 6.64007e+06 313950 554710. 1919.41 0.86 0.137732 0.121714 22834 132086 -1 2149 20 1658 2519 162674 39380 4.22689 4.22689 -145.337 -4.22689 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290445 0.0254102 141 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.99 vpr 62.54 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1084 15639 4927 8621 2091 62.5 MiB 0.14 0.00 4.35433 -126.133 -4.35433 4.35433 0.66 0.000627518 0.00058291 0.053444 0.0496888 32 2438 19 6.64007e+06 288834 554710. 1919.41 0.81 0.125882 0.11157 22834 132086 -1 2059 19 1091 1550 105201 24017 3.66183 3.66183 -123.368 -3.66183 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0241716 0.0211508 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.88 vpr 62.33 MiB -1 -1 0.23 18268 1 0.03 -1 -1 30316 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 931 15103 4868 7954 2281 62.3 MiB 0.11 0.00 4.52953 -121.776 -4.52953 4.52953 0.72 0.000637359 0.00059246 0.040172 0.0372385 32 2287 23 6.64007e+06 339066 554710. 1919.41 0.86 0.119615 0.105439 22834 132086 -1 1914 23 1465 2740 192952 43744 3.67063 3.67063 -116.076 -3.67063 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.027925 0.024214 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.04 vpr 62.68 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30412 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1007 10071 2662 6608 801 62.7 MiB 0.10 0.00 4.57112 -132.997 -4.57112 4.57112 0.66 0.00068063 0.000632753 0.0380719 0.0353738 32 2498 20 6.64007e+06 288834 554710. 1919.41 0.86 0.117295 0.103279 22834 132086 -1 2122 21 1503 2874 185659 42276 3.64943 3.64943 -130.19 -3.64943 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0280166 0.0244165 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.34 vpr 62.89 MiB -1 -1 0.20 18276 1 0.04 -1 -1 30300 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1017 13373 3190 9207 976 62.9 MiB 0.13 0.00 3.5011 -120.17 -3.5011 3.5011 0.66 0.000716077 0.000664217 0.0456092 0.0423994 28 2759 36 6.64007e+06 426972 500653. 1732.36 1.10 0.148399 0.130385 21970 115934 -1 2279 18 1387 2237 156657 37609 2.89817 2.89817 -120.057 -2.89817 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260007 0.0227426 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.94 vpr 62.30 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30636 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 699 11034 3536 5995 1503 62.3 MiB 0.09 0.00 3.75638 -102.609 -3.75638 3.75638 0.70 0.00055762 0.000518044 0.0388487 0.0361634 32 1595 18 6.64007e+06 238602 554710. 1919.41 0.78 0.101862 0.0899001 22834 132086 -1 1412 20 879 1541 105739 24721 3.09756 3.09756 -96.0776 -3.09756 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0221045 0.0191943 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.19 vpr 62.35 MiB -1 -1 0.23 17680 1 0.03 -1 -1 30088 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.12 827 11383 2423 8400 560 62.4 MiB 0.10 0.00 3.48559 -101.391 -3.48559 3.48559 0.69 0.000598102 0.000556408 0.0344567 0.032064 28 2163 36 6.64007e+06 389298 500653. 1732.36 1.03 0.118329 0.103569 21970 115934 -1 1858 21 1080 1973 129274 30214 2.87017 2.87017 -99.5446 -2.87017 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0246199 0.0214006 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.05 vpr 62.66 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 23.7 MiB 0.26 888 14123 4595 7521 2007 62.7 MiB 0.12 0.00 3.62422 -120.034 -3.62422 3.62422 0.77 0.000635386 0.000590538 0.0527369 0.0490371 32 1992 19 6.64007e+06 251160 554710. 1919.41 0.81 0.125321 0.111017 22834 132086 -1 1743 19 1121 1661 106825 24557 2.99817 2.99817 -113.252 -2.99817 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0243709 0.0212505 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.80 vpr 62.29 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 0.19 874 11631 3631 6742 1258 62.3 MiB 0.11 0.00 3.92955 -127.77 -3.92955 3.92955 0.67 0.000622228 0.000579104 0.0434931 0.0404691 32 1957 19 6.64007e+06 213486 554710. 1919.41 0.83 0.115154 0.101749 22834 132086 -1 1753 19 1044 1681 109300 25609 2.90177 2.90177 -115.584 -2.90177 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0236075 0.0205692 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.77 vpr 62.62 MiB -1 -1 0.26 18204 1 0.03 -1 -1 30560 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.8 MiB 0.12 728 11571 3255 7389 927 62.6 MiB 0.11 0.00 4.13115 -112.218 -4.13115 4.13115 0.68 0.00061513 0.000571842 0.0448576 0.0417215 28 1735 19 6.64007e+06 213486 500653. 1732.36 0.88 0.118777 0.104872 21970 115934 -1 1482 19 805 1293 87516 20285 2.86597 2.86597 -102.428 -2.86597 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0234705 0.0204195 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.93 vpr 62.39 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30256 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.27 793 12008 4621 6063 1324 62.4 MiB 0.11 0.00 3.82041 -120.517 -3.82041 3.82041 0.66 0.000601737 0.000555183 0.0421086 0.0391832 32 2253 40 6.64007e+06 226044 554710. 1919.41 0.91 0.13766 0.120576 22834 132086 -1 1803 21 1195 1619 115534 26931 3.04337 3.04337 -115.258 -3.04337 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0246278 0.0214503 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.19 vpr 62.84 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1104 18028 6323 9464 2241 62.8 MiB 0.17 0.00 4.4826 -145.148 -4.4826 4.4826 0.78 0.000527484 0.000484485 0.0545363 0.050086 32 2419 20 6.64007e+06 301392 554710. 1919.41 0.89 0.13583 0.119822 22834 132086 -1 2198 21 1658 2485 165389 37416 3.29783 3.29783 -129.319 -3.29783 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286386 0.0250538 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.94 vpr 62.88 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30332 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.18 965 15215 3853 10047 1315 62.9 MiB 0.15 0.00 4.76344 -140.281 -4.76344 4.76344 0.67 0.000715299 0.000664368 0.0525343 0.048786 28 2304 23 6.64007e+06 389298 500653. 1732.36 0.95 0.137811 0.121794 21970 115934 -1 2045 22 1662 2823 167404 40668 3.88183 3.88183 -136.686 -3.88183 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0299715 0.0260779 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.57 vpr 62.00 MiB -1 -1 0.22 17848 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.14 748 11118 2695 7379 1044 62.0 MiB 0.09 0.00 3.28519 -93.7186 -3.28519 3.28519 0.66 0.000536038 0.000497763 0.0353719 0.0328691 28 1645 23 6.64007e+06 263718 500653. 1732.36 0.76 0.0948634 0.0835772 21970 115934 -1 1486 16 782 1301 86789 20385 2.71577 2.71577 -91.5176 -2.71577 0 0 612192. 2118.31 0.18 0.05 0.12 -1 -1 0.18 0.017134 0.0150786 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.96 vpr 62.88 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 23.8 MiB 0.20 1002 9914 2245 7192 477 62.9 MiB 0.10 0.00 4.06227 -126.501 -4.06227 4.06227 0.66 0.00072018 0.000669071 0.0403336 0.0374945 32 2466 22 6.64007e+06 276276 554710. 1919.41 0.90 0.126341 0.111155 22834 132086 -1 2152 20 1479 2608 179323 41071 3.09436 3.09436 -120.061 -3.09436 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0285243 0.0248891 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.72 vpr 62.80 MiB -1 -1 0.17 18288 1 0.03 -1 -1 30076 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1138 14679 4370 8457 1852 62.8 MiB 0.14 0.00 4.43584 -143.418 -4.43584 4.43584 0.67 0.00068932 0.000641062 0.054757 0.0508591 30 2626 19 6.64007e+06 288834 526063. 1820.29 2.64 0.214941 0.187495 22546 126617 -1 2242 21 1375 2016 134012 29343 3.26883 3.26883 -128.611 -3.26883 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0282101 0.0246252 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.63 vpr 62.70 MiB -1 -1 0.22 18196 1 0.03 -1 -1 30304 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.14 793 7443 1484 5603 356 62.7 MiB 0.07 0.00 2.85064 -101.719 -2.85064 2.85064 0.67 0.000649204 0.000602918 0.0250789 0.0233031 30 1881 18 6.64007e+06 364182 526063. 1820.29 0.80 0.0962491 0.0843251 22546 126617 -1 1524 20 1018 1637 84819 20502 2.06951 2.06951 -94.0823 -2.06951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0260411 0.0226219 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.39 vpr 62.02 MiB -1 -1 0.17 17960 1 0.03 -1 -1 30052 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.5 MiB 0.07 601 7249 1675 5111 463 62.0 MiB 0.06 0.00 2.38033 -78.5571 -2.38033 2.38033 0.66 0.000502008 0.000467856 0.0236251 0.0220059 28 1432 21 6.64007e+06 188370 500653. 1732.36 0.74 0.081619 0.0713844 21970 115934 -1 1285 21 703 1012 85737 19690 2.04611 2.04611 -83.9383 -2.04611 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0201613 0.0174403 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.78 vpr 62.51 MiB -1 -1 0.18 18104 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 0.27 927 14123 4588 7430 2105 62.5 MiB 0.13 0.00 4.95484 -148.86 -4.95484 4.95484 0.66 0.000608806 0.000566243 0.049797 0.0463098 30 2054 21 6.64007e+06 251160 526063. 1820.29 0.80 0.121527 0.107609 22546 126617 -1 1848 20 956 1399 83300 19321 3.50023 3.50023 -130.959 -3.50023 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0294136 0.0257677 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.68 vpr 62.67 MiB -1 -1 0.23 18252 1 0.04 -1 -1 30396 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 927 7007 1409 5318 280 62.7 MiB 0.07 0.00 4.20815 -131.502 -4.20815 4.20815 0.66 0.000697873 0.000648775 0.0249723 0.0231817 30 2145 21 6.64007e+06 389298 526063. 1820.29 0.83 0.106763 0.0933829 22546 126617 -1 1871 22 1181 1998 116468 26613 3.49343 3.49343 -124.596 -3.49343 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0292163 0.0254292 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 63.10 MiB -1 -1 0.26 18124 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1165 13949 4134 8420 1395 63.1 MiB 0.14 0.00 4.61182 -142.746 -4.61182 4.61182 0.67 0.000725301 0.000674225 0.0535353 0.0496776 32 2716 19 6.64007e+06 313950 554710. 1919.41 0.87 0.134757 0.119306 22834 132086 -1 2294 18 1476 2310 151067 35062 3.86002 3.86002 -132.307 -3.86002 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261197 0.0233185 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.40 vpr 61.68 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30592 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63164 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.16 372 9836 3040 4897 1899 61.7 MiB 0.06 0.00 2.3975 -64.4977 -2.3975 2.3975 0.67 0.000425582 0.000395587 0.0278256 0.0258935 34 906 24 6.64007e+06 226044 585099. 2024.56 2.53 0.139639 0.120599 23122 138558 -1 765 15 510 696 40243 12227 1.85511 1.85511 -61.8909 -1.85511 0 0 742403. 2568.87 0.21 0.04 0.13 -1 -1 0.21 0.0139958 0.0122676 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.44 vpr 62.41 MiB -1 -1 0.23 17720 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.12 995 9571 2665 6351 555 62.4 MiB 0.09 0.00 4.78226 -126.055 -4.78226 4.78226 0.66 0.000613588 0.000569871 0.0339607 0.031584 28 2148 21 6.64007e+06 263718 500653. 1732.36 2.47 0.188996 0.163661 21970 115934 -1 1974 21 1150 2159 136149 31256 3.72363 3.72363 -120.986 -3.72363 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0164745 0.0146862 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.64 vpr 61.72 MiB -1 -1 0.15 17412 1 0.03 -1 -1 30168 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.0 MiB 0.09 542 9374 3354 4039 1981 61.7 MiB 0.06 0.00 2.60773 -75.9678 -2.60773 2.60773 0.66 0.000423044 0.000392845 0.0249885 0.0232056 26 1286 38 6.64007e+06 175812 477104. 1650.88 2.01 0.131561 0.113766 21682 110474 -1 1078 13 466 537 40953 9922 2.06131 2.06131 -73.6644 -2.06131 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0125309 0.0110413 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.16 vpr 62.37 MiB -1 -1 0.22 17900 1 0.03 -1 -1 29952 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 888 9892 2278 7158 456 62.4 MiB 0.09 0.00 4.63801 -125.739 -4.63801 4.63801 0.66 0.000630477 0.000586679 0.0314642 0.0292551 26 2284 26 6.64007e+06 376740 477104. 1650.88 2.33 0.181768 0.157291 21682 110474 -1 1858 22 1109 1983 144744 33533 3.81383 3.81383 -119.339 -3.81383 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0269325 0.0234466 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.52 vpr 62.44 MiB -1 -1 0.19 17752 1 0.03 -1 -1 30380 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1023 7871 1717 5540 614 62.4 MiB 0.08 0.00 3.86807 -111.494 -3.86807 3.86807 0.69 0.00063496 0.000590658 0.0252786 0.0235107 30 2195 22 6.64007e+06 389298 526063. 1820.29 1.70 0.171786 0.148222 22546 126617 -1 1865 18 997 1812 96454 22629 2.80997 2.80997 -103.812 -2.80997 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0233619 0.0204568 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.98 vpr 62.82 MiB -1 -1 0.23 18256 1 0.02 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1020 17431 5202 10159 2070 62.8 MiB 0.16 0.00 4.78258 -136.405 -4.78258 4.78258 0.64 0.000674347 0.00062632 0.0597799 0.0554699 32 2211 20 6.64007e+06 339066 554710. 1919.41 0.82 0.138352 0.122806 22834 132086 -1 1999 22 1307 2307 139998 33525 3.95603 3.95603 -130.892 -3.95603 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0293105 0.0255876 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.73 vpr 62.32 MiB -1 -1 0.22 18048 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.10 785 11260 3393 5970 1897 62.3 MiB 0.10 0.00 3.03896 -100.907 -3.03896 3.03896 0.69 0.000601335 0.000560027 0.0412289 0.0383589 32 1803 19 6.64007e+06 200928 554710. 1919.41 0.82 0.110011 0.0970381 22834 132086 -1 1509 18 768 1281 82415 19190 2.69497 2.69497 -101.097 -2.69497 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.02201 0.0192229 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.72 vpr 62.09 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.10 760 10873 2730 7151 992 62.1 MiB 0.09 0.00 3.24119 -98.8846 -3.24119 3.24119 0.73 0.000421575 0.000381747 0.0318522 0.0294355 32 1618 23 6.64007e+06 288834 554710. 1919.41 0.82 0.108035 0.0945051 22834 132086 -1 1566 17 817 1243 85514 19258 2.68277 2.68277 -96.8564 -2.68277 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0197182 0.0172203 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.53 vpr 62.36 MiB -1 -1 0.24 18064 1 0.03 -1 -1 30056 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.07 598 14123 3741 8412 1970 62.4 MiB 0.12 0.00 3.43604 -92.6832 -3.43604 3.43604 0.66 0.000555858 0.000517602 0.0427299 0.039542 28 1721 21 6.64007e+06 288834 500653. 1732.36 0.79 0.109002 0.0960483 21970 115934 -1 1490 19 897 1577 103958 25003 2.68077 2.68077 -91.3985 -2.68077 0 0 612192. 2118.31 0.19 0.06 0.12 -1 -1 0.19 0.0226226 0.0197983 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.18 vpr 62.11 MiB -1 -1 0.22 17684 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.3 MiB 0.10 743 5843 1254 4169 420 62.1 MiB 0.06 0.00 3.98815 -115.073 -3.98815 3.98815 0.66 0.000566335 0.000527466 0.0202277 0.0188328 30 1789 19 6.64007e+06 238602 526063. 1820.29 2.42 0.159717 0.137194 22546 126617 -1 1545 19 905 1489 79062 19142 2.74897 2.74897 -104.355 -2.74897 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0216871 0.0188936 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.56 vpr 62.27 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30264 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.7 MiB 0.06 870 7728 1633 5460 635 62.3 MiB 0.07 0.00 3.60767 -107.985 -3.60767 3.60767 0.66 0.00058234 0.000542239 0.0243253 0.0226518 30 1852 20 6.64007e+06 339066 526063. 1820.29 0.78 0.0915017 0.0799551 22546 126617 -1 1604 20 683 1201 64521 14942 2.70157 2.70157 -101.758 -2.70157 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0215768 0.0188933 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.82 vpr 62.31 MiB -1 -1 0.23 17864 1 0.03 -1 -1 30404 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.7 MiB 0.18 695 8727 2118 5729 880 62.3 MiB 0.08 0.00 3.3589 -102.835 -3.3589 3.3589 0.74 0.000599258 0.000558063 0.0293364 0.0272972 28 1809 23 6.64007e+06 326508 500653. 1732.36 0.80 0.0996642 0.0871878 21970 115934 -1 1598 20 885 1313 76615 19126 2.49117 2.49117 -97.9731 -2.49117 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0243927 0.0212588 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.77 vpr 63.06 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30572 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1108 10812 2420 7290 1102 63.1 MiB 0.11 0.00 4.35696 -124.357 -4.35696 4.35696 0.66 0.000738257 0.000685187 0.0357526 0.0332294 26 3426 39 6.64007e+06 477204 477104. 1650.88 1.92 0.144415 0.126533 21682 110474 -1 2530 19 1336 2472 192577 43808 3.82982 3.82982 -127.968 -3.82982 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0284709 0.0249443 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.95 vpr 63.05 MiB -1 -1 0.22 18224 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.2 MiB 0.18 971 9971 2311 7104 556 63.0 MiB 0.11 0.00 3.87558 -129.13 -3.87558 3.87558 0.66 0.000761998 0.000708277 0.0349548 0.0324563 26 2669 33 6.64007e+06 464646 477104. 1650.88 1.00 0.136595 0.119479 21682 110474 -1 2141 19 1539 2437 158729 37370 3.54497 3.54497 -129.363 -3.54497 0 0 585099. 2024.56 0.18 0.08 0.10 -1 -1 0.18 0.0289801 0.0253467 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.85 vpr 62.30 MiB -1 -1 0.21 18388 1 0.03 -1 -1 30152 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.7 MiB 0.33 962 12186 3847 6704 1635 62.3 MiB 0.11 0.00 4.35701 -128.587 -4.35701 4.35701 0.64 0.000595113 0.000553704 0.0428465 0.039845 32 2058 21 6.64007e+06 238602 554710. 1919.41 0.82 0.109154 0.0964222 22834 132086 -1 1817 18 977 1401 95494 21988 3.12563 3.12563 -115.954 -3.12563 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0226556 0.0198426 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.73 vpr 63.05 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30400 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1023 13933 4615 7223 2095 63.1 MiB 0.13 0.00 4.04757 -131.412 -4.04757 4.04757 0.66 0.000716938 0.00066506 0.0538306 0.049992 32 2494 18 6.64007e+06 313950 554710. 1919.41 2.66 0.2211 0.1923 22834 132086 -1 2105 20 1612 2777 194031 44279 3.15237 3.15237 -115.474 -3.15237 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0285599 0.0249028 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.75 vpr 62.60 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30440 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.0 MiB 0.52 1128 17687 5057 9627 3003 62.6 MiB 0.20 0.00 5.89333 -173.14 -5.89333 5.89333 0.66 0.00073074 0.000678316 0.0709825 0.0657142 32 3236 33 6.64007e+06 364182 554710. 1919.41 1.15 0.170247 0.150589 22834 132086 -1 2469 21 2342 3476 223308 54942 4.78815 4.78815 -164.404 -4.78815 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302024 0.0263682 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.16 vpr 63.09 MiB -1 -1 0.26 18204 1 0.02 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.2 MiB 0.42 1191 15768 5423 8594 1751 63.1 MiB 0.16 0.00 5.08361 -153.384 -5.08361 5.08361 0.66 0.000745469 0.000692213 0.061586 0.0572246 32 2716 22 6.64007e+06 339066 554710. 1919.41 0.88 0.149979 0.133048 22834 132086 -1 2377 22 1795 2845 225337 48102 4.51948 4.51948 -148.412 -4.51948 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.03181 0.0277881 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.96 vpr 63.13 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30488 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1006 12661 3249 8412 1000 63.1 MiB 0.14 0.00 4.68524 -135.636 -4.68524 4.68524 0.67 0.000690648 0.000640877 0.0470083 0.043492 32 2355 20 6.64007e+06 389298 554710. 1919.41 0.83 0.127706 0.112566 22834 132086 -1 2083 21 944 1573 101119 23699 3.58023 3.58023 -126.148 -3.58023 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0287873 0.0251414 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.35 vpr 62.39 MiB -1 -1 0.22 17860 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1073 14679 4707 8091 1881 62.4 MiB 0.14 0.00 4.36796 -119.855 -4.36796 4.36796 0.69 0.000619261 0.000575432 0.0493257 0.0458664 26 2749 26 6.64007e+06 288834 477104. 1650.88 2.24 0.190623 0.166082 21682 110474 -1 2275 22 1385 2049 156725 35071 3.92503 3.92503 -125.203 -3.92503 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0315533 0.02744 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.05 vpr 63.03 MiB -1 -1 0.25 18512 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1249 19868 5433 11877 2558 63.0 MiB 0.19 0.00 5.1415 -166.814 -5.1415 5.1415 0.69 0.00086197 0.000801405 0.0735676 0.0683622 32 2828 25 6.64007e+06 502320 554710. 1919.41 0.90 0.179365 0.158798 22834 132086 -1 2459 19 1579 2444 152376 34828 3.91929 3.91929 -146.959 -3.91929 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0331301 0.0289357 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.60 vpr 62.26 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30156 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.6 MiB 0.12 803 5025 1005 3649 371 62.3 MiB 0.05 0.00 3.83987 -104.278 -3.83987 3.83987 0.69 0.000562594 0.000523459 0.0174175 0.0162101 30 1786 19 6.64007e+06 263718 526063. 1820.29 0.81 0.0823617 0.0716063 22546 126617 -1 1640 18 794 1429 83385 18942 2.83677 2.83677 -98.8728 -2.83677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0205533 0.0179074 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.66 vpr 62.79 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30224 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1162 10228 2647 6642 939 62.8 MiB 0.13 0.00 5.14752 -155.108 -5.14752 5.14752 0.75 0.000686913 0.00063913 0.0382271 0.0354898 26 2969 31 6.64007e+06 313950 477104. 1650.88 1.52 0.131748 0.115687 21682 110474 -1 2516 19 1413 2079 155667 35015 4.39628 4.39628 -150.288 -4.39628 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0264779 0.023167 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.56 vpr 62.79 MiB -1 -1 0.22 18356 1 0.03 -1 -1 30360 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.7 MiB 0.19 884 8755 1783 6202 770 62.8 MiB 0.09 0.00 3.97129 -116.286 -3.97129 3.97129 0.67 0.000695023 0.000644999 0.0298557 0.0277429 30 2199 23 6.64007e+06 414414 526063. 1820.29 2.66 0.197784 0.170743 22546 126617 -1 1729 19 894 1557 79184 20282 3.00716 3.00716 -105.065 -3.00716 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0264503 0.0231635 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.75 vpr 62.49 MiB -1 -1 0.22 17768 1 0.03 -1 -1 30108 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.8 MiB 0.11 912 5938 1237 4353 348 62.5 MiB 0.07 0.00 4.13756 -120.743 -4.13756 4.13756 0.66 0.00062453 0.00058063 0.0212191 0.0197314 32 2242 21 6.64007e+06 301392 554710. 1919.41 0.86 0.0977065 0.0853562 22834 132086 -1 1917 19 1172 2160 138053 31963 3.58142 3.58142 -118.401 -3.58142 0 0 701300. 2426.64 0.26 0.08 0.10 -1 -1 0.26 0.0304189 0.0265365 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.96 vpr 62.93 MiB -1 -1 0.23 18276 1 0.03 -1 -1 30248 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1010 13933 3725 7818 2390 62.9 MiB 0.14 0.00 4.75998 -138.258 -4.75998 4.75998 0.66 0.000699845 0.000648416 0.0528734 0.048907 32 2399 17 6.64007e+06 301392 554710. 1919.41 0.86 0.132816 0.117603 22834 132086 -1 2066 21 1220 1691 122509 28327 3.22937 3.22937 -122.017 -3.22937 0 0 701300. 2426.64 0.20 0.07 0.09 -1 -1 0.20 0.028709 0.025031 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.73 vpr 62.95 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1025 10827 2395 7683 749 63.0 MiB 0.11 0.00 3.7957 -125.338 -3.7957 3.7957 0.66 0.00071358 0.00066305 0.0376309 0.034973 26 2743 22 6.64007e+06 401856 477104. 1650.88 2.73 0.192326 0.166996 21682 110474 -1 2294 21 1421 2427 174311 39299 3.11037 3.11037 -123.615 -3.11037 0 0 585099. 2024.56 0.21 0.08 0.12 -1 -1 0.21 0.0292806 0.0255171 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.90 vpr 63.01 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1100 11381 2833 7714 834 63.0 MiB 0.12 0.00 4.776 -146.002 -4.776 4.776 0.66 0.000694827 0.00063395 0.0344077 0.0317627 30 2323 18 6.64007e+06 464646 526063. 1820.29 0.82 0.120354 0.104855 22546 126617 -1 2024 20 953 1446 75237 18047 3.35083 3.35083 -126.151 -3.35083 0 0 666494. 2306.21 0.20 0.06 0.14 -1 -1 0.20 0.0293384 0.0256248 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.66 vpr 62.48 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30288 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 831 7023 1481 5311 231 62.5 MiB 0.08 0.00 4.19967 -120.534 -4.19967 4.19967 0.66 0.000639319 0.000594248 0.0236421 0.0219592 30 2034 22 6.64007e+06 364182 526063. 1820.29 0.85 0.0998906 0.087179 22546 126617 -1 1614 21 1040 1872 100357 23807 3.57043 3.57043 -112.869 -3.57043 0 0 666494. 2306.21 0.19 0.04 0.09 -1 -1 0.19 0.0146551 0.0129876 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.96 vpr 62.97 MiB -1 -1 0.18 18324 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1052 7888 1681 5591 616 63.0 MiB 0.08 0.00 5.2222 -143.082 -5.2222 5.2222 0.66 0.000662635 0.000614811 0.0289617 0.0269512 28 2639 22 6.64007e+06 301392 500653. 1732.36 0.87 0.10784 0.0945078 21970 115934 -1 2239 17 1340 1967 134731 31386 3.71362 3.71362 -131.242 -3.71362 0 0 612192. 2118.31 0.18 0.07 0.14 -1 -1 0.18 0.0234716 0.0206182 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.09 vpr 63.25 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30360 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1063 10423 2679 6644 1100 63.3 MiB 0.11 0.00 5.14867 -149.83 -5.14867 5.14867 0.67 0.000723032 0.000671982 0.0410949 0.03818 32 2686 22 6.64007e+06 313950 554710. 1919.41 0.92 0.126934 0.111727 22834 132086 -1 2409 19 1510 2389 160710 37915 4.00948 4.00948 -139.798 -4.00948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0278762 0.0243911 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.93 vpr 62.92 MiB -1 -1 0.21 18324 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.1 MiB 0.21 998 9347 2521 6007 819 62.9 MiB 0.10 0.00 4.34527 -132.181 -4.34527 4.34527 0.66 0.000734365 0.000681395 0.0388488 0.0360642 32 2644 20 6.64007e+06 276276 554710. 1919.41 0.89 0.125171 0.110079 22834 132086 -1 2163 18 1402 2519 159715 37276 3.50943 3.50943 -128.166 -3.50943 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.027237 0.0238154 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.60 vpr 62.29 MiB -1 -1 0.22 17980 1 0.04 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.6 MiB 0.08 707 15103 5445 7308 2350 62.3 MiB 0.11 0.00 3.43127 -100.64 -3.43127 3.43127 0.66 0.000562111 0.000522871 0.0452226 0.0420691 30 1669 21 6.64007e+06 301392 526063. 1820.29 0.79 0.110679 0.0979217 22546 126617 -1 1410 19 742 1197 79773 17941 2.56677 2.56677 -90.9898 -2.56677 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0212664 0.0184866 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.98 vpr 62.69 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30148 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.9 MiB 0.27 879 16907 6072 8286 2549 62.7 MiB 0.15 0.00 4.05536 -136.666 -4.05536 4.05536 0.66 0.000671798 0.000624148 0.0621932 0.0577474 30 2363 22 6.64007e+06 276276 526063. 1820.29 0.88 0.14203 0.126064 22546 126617 -1 1963 18 1339 1924 128164 29238 3.32757 3.32757 -129.337 -3.32757 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0261352 0.0228659 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.31 vpr 62.74 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1389 17943 5716 10178 2049 62.7 MiB 0.20 0.00 5.4603 -164.178 -5.4603 5.4603 0.66 0.000765956 0.00071175 0.0684909 0.0636148 28 3504 25 6.64007e+06 364182 500653. 1732.36 2.85 0.267385 0.233414 21970 115934 -1 2796 23 2045 3229 234229 51765 4.64188 4.64188 -157.599 -4.64188 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0341994 0.029828 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.83 vpr 62.83 MiB -1 -1 0.24 18188 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1016 14331 3274 9718 1339 62.8 MiB 0.13 0.00 4.34509 -136.539 -4.34509 4.34509 0.66 0.00068164 0.000632641 0.0471614 0.0438066 30 2229 19 6.64007e+06 401856 526063. 1820.29 0.81 0.126374 0.111662 22546 126617 -1 1863 19 994 1580 102791 22250 3.10256 3.10256 -116.251 -3.10256 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0261887 0.0228993 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.62 vpr 62.20 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.6 MiB 0.10 644 6718 1441 4611 666 62.2 MiB 0.07 0.00 3.45804 -101.577 -3.45804 3.45804 0.66 0.000591147 0.000550332 0.0222804 0.0207156 32 1698 21 6.64007e+06 326508 554710. 1919.41 0.80 0.0915729 0.0797555 22834 132086 -1 1490 19 949 1542 94421 23457 2.70277 2.70277 -98.9378 -2.70277 0 0 701300. 2426.64 0.20 0.06 0.14 -1 -1 0.20 0.0223852 0.0194941 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.45 vpr 62.96 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30396 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1258 17023 5454 8906 2663 63.0 MiB 0.18 0.00 6.52766 -186.909 -6.52766 6.52766 0.74 0.000826025 0.000768345 0.071678 0.0665482 32 3239 24 6.64007e+06 339066 554710. 1919.41 1.01 0.173323 0.153699 22834 132086 -1 2640 21 2024 2853 204494 46202 5.44434 5.44434 -176.026 -5.44434 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.0342184 0.0298577 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.14 vpr 62.69 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30408 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 23.7 MiB 0.16 911 6091 1101 4753 237 62.7 MiB 0.07 0.00 4.60401 -138.195 -4.60401 4.60401 0.76 0.000688111 0.000639576 0.0214453 0.0199632 26 2408 24 6.64007e+06 414414 477104. 1650.88 1.15 0.109255 0.095516 21682 110474 -1 2032 21 1490 2333 156428 36434 3.77103 3.77103 -130.469 -3.77103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0279861 0.0244001 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.72 vpr 62.05 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.09 820 12375 3515 6889 1971 62.0 MiB 0.10 0.00 3.58247 -102.606 -3.58247 3.58247 0.66 0.000538951 0.000502413 0.036165 0.033666 26 1980 30 6.64007e+06 288834 477104. 1650.88 0.98 0.107956 0.0949562 21682 110474 -1 1821 19 887 1524 111639 25164 2.89497 2.89497 -103.885 -2.89497 0 0 585099. 2024.56 0.17 0.06 0.11 -1 -1 0.17 0.0205325 0.0178306 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.73 vpr 62.78 MiB -1 -1 0.24 18400 1 0.03 -1 -1 30144 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1051 10223 2392 7301 530 62.8 MiB 0.11 0.00 5.62381 -137.312 -5.62381 5.62381 0.66 0.000711596 0.000660572 0.0345979 0.0321748 32 2518 24 6.64007e+06 426972 554710. 1919.41 2.74 0.24064 0.207992 22834 132086 -1 2171 22 1308 2453 164918 36700 4.71868 4.71868 -136.031 -4.71868 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0302745 0.0264126 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.66 vpr 62.00 MiB -1 -1 0.21 17748 1 0.03 -1 -1 30124 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 692 7404 1537 5210 657 62.0 MiB 0.07 0.00 3.45624 -104.082 -3.45624 3.45624 0.66 0.000557963 0.000519551 0.0250325 0.0232554 28 2049 24 6.64007e+06 251160 500653. 1732.36 0.91 0.0934178 0.0816114 21970 115934 -1 1646 19 1091 1918 121122 30138 2.91397 2.91397 -107.034 -2.91397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0212983 0.0185523 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.92 vpr 62.29 MiB -1 -1 0.22 17832 1 0.03 -1 -1 30084 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.12 661 13271 3491 8020 1760 62.3 MiB 0.11 0.00 4.08278 -107.388 -4.08278 4.08278 0.66 0.000602039 0.000560424 0.038555 0.0358183 26 2062 20 6.64007e+06 414414 477104. 1650.88 1.02 0.107451 0.0946273 21682 110474 -1 1617 21 1029 1765 107385 26371 3.22137 3.22137 -105.887 -3.22137 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0240242 0.0208417 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.17 vpr 63.08 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30320 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1040 14871 4665 7654 2552 63.1 MiB 0.14 0.00 4.65946 -136.342 -4.65946 4.65946 0.68 0.000691589 0.000642139 0.0558961 0.0518991 32 2493 25 6.64007e+06 326508 554710. 1919.41 0.90 0.146578 0.129535 22834 132086 -1 2225 21 1545 2329 154866 35209 3.58443 3.58443 -123.394 -3.58443 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0253495 0.0223877 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.26 vpr 62.91 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.9 MiB 0.19 791 5938 1168 4585 185 62.9 MiB 0.07 0.00 4.46745 -132.755 -4.46745 4.46745 0.65 0.000705607 0.000655368 0.0238855 0.0222189 30 1971 24 6.64007e+06 301392 526063. 1820.29 2.33 0.198582 0.170955 22546 126617 -1 1686 19 1164 1845 114531 26463 3.69283 3.69283 -126.907 -3.69283 0 0 666494. 2306.21 0.19 0.06 0.13 -1 -1 0.19 0.0270652 0.0236983 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.90 vpr 62.78 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30400 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 24.0 MiB 0.17 1028 16652 5035 9308 2309 62.8 MiB 0.15 0.00 4.7434 -142.045 -4.7434 4.7434 0.66 0.000844091 0.000779548 0.0585396 0.0543053 32 2433 20 6.64007e+06 351624 554710. 1919.41 0.87 0.140118 0.124251 22834 132086 -1 2181 18 1038 1785 133597 29133 3.69062 3.69062 -131.911 -3.69062 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0258939 0.0227132 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.36 vpr 62.30 MiB -1 -1 0.20 17912 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 745 12681 3505 7128 2048 62.3 MiB 0.11 0.00 4.79432 -130.688 -4.79432 4.79432 0.65 0.000591846 0.000550934 0.0449444 0.0418056 26 2345 22 6.64007e+06 213486 477104. 1650.88 1.29 0.117403 0.103691 21682 110474 -1 1909 21 1162 1601 123415 29052 3.57743 3.57743 -122.857 -3.57743 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0256995 0.0225582 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.97 vpr 62.60 MiB -1 -1 0.26 18184 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.29 900 13966 4576 7232 2158 62.6 MiB 0.12 0.00 3.96736 -127.124 -3.96736 3.96736 0.66 0.0006359 0.000590055 0.0519454 0.0482348 32 2026 17 6.64007e+06 238602 554710. 1919.41 0.80 0.123033 0.109007 22834 132086 -1 1807 19 1202 1749 124457 27558 3.21857 3.21857 -118.219 -3.21857 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.024784 0.0216391 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.75 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.7 MiB 0.15 869 11759 2827 8114 818 62.8 MiB 0.11 0.00 3.56047 -98.9603 -3.56047 3.56047 0.66 0.00065496 0.000607705 0.037808 0.0350952 26 2387 27 6.64007e+06 414414 477104. 1650.88 1.27 0.122292 0.107321 21682 110474 -1 1918 19 1142 2056 143001 34435 2.91597 2.91597 -101.585 -2.91597 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0284274 0.0250012 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.88 vpr 62.39 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30420 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.8 MiB 0.15 923 12623 3556 7108 1959 62.4 MiB 0.10 0.00 4.42192 -107.107 -4.42192 4.42192 0.72 0.00058451 0.000543065 0.0361688 0.0336292 26 2229 19 6.64007e+06 439530 477104. 1650.88 0.96 0.10392 0.0912833 21682 110474 -1 1849 19 1008 1743 122228 27424 3.61562 3.61562 -105.168 -3.61562 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225607 0.0196592 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.10 vpr 62.65 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30512 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 23.8 MiB 0.13 685 9712 2247 6957 508 62.7 MiB 0.10 0.00 3.90078 -114.184 -3.90078 3.90078 0.66 0.000634986 0.000590593 0.0378811 0.0352412 28 1963 19 6.64007e+06 226044 500653. 1732.36 3.18 0.185803 0.160912 21970 115934 -1 1789 22 1400 2435 194018 45480 2.98097 2.98097 -109.97 -2.98097 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0267273 0.0231706 109 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.30 vpr 62.71 MiB -1 -1 0.24 18304 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 23.7 MiB 0.27 936 13105 4260 6168 2677 62.7 MiB 0.12 0.00 3.98936 -131.555 -3.98936 3.98936 0.72 0.000663646 0.000616741 0.0491437 0.0456681 32 2239 20 6.64007e+06 263718 554710. 1919.41 0.98 0.122171 0.108255 22834 132086 -1 1962 19 1286 1879 129465 29535 3.32603 3.32603 -126.53 -3.32603 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0272902 0.0239574 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.85 vpr 62.30 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30528 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1072 16295 4636 9641 2018 62.3 MiB 0.15 0.00 4.60183 -132.105 -4.60183 4.60183 0.67 0.000639704 0.000595221 0.0502198 0.0467371 32 2390 21 6.64007e+06 401856 554710. 1919.41 0.84 0.124386 0.110256 22834 132086 -1 1993 19 1289 2315 142374 33933 3.74683 3.74683 -120.579 -3.74683 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0240165 0.020963 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.03 vpr 62.99 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30344 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1141 10618 2698 7154 766 63.0 MiB 0.12 0.00 5.38066 -169.108 -5.38066 5.38066 0.66 0.000706847 0.000657067 0.0412218 0.03834 32 2845 21 6.64007e+06 301392 554710. 1919.41 0.85 0.124138 0.109472 22834 132086 -1 2481 20 1517 2218 154934 35578 4.34488 4.34488 -156.254 -4.34488 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282044 0.0246684 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.97 vpr 62.88 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30380 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1093 17423 4766 10394 2263 62.9 MiB 0.16 0.00 5.20872 -147.682 -5.20872 5.20872 0.67 0.000741131 0.000688459 0.0602164 0.0559043 32 2500 30 6.64007e+06 426972 554710. 1919.41 0.93 0.158716 0.140483 22834 132086 -1 2186 21 1268 2336 152601 35655 4.01948 4.01948 -136.855 -4.01948 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0305205 0.0266086 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.16 vpr 63.02 MiB -1 -1 0.24 18164 1 0.03 -1 -1 30364 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1020 5976 1067 4592 317 63.0 MiB 0.07 0.00 4.48481 -139.253 -4.48481 4.48481 0.67 0.000745944 0.00069345 0.0218361 0.0202815 26 3164 36 6.64007e+06 464646 477104. 1650.88 2.13 0.130625 0.113635 21682 110474 -1 2547 19 1531 2648 211155 48182 3.93303 3.93303 -141.066 -3.93303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0290155 0.0254848 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.78 vpr 62.15 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30236 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.4 MiB 0.14 720 9706 2873 5961 872 62.1 MiB 0.09 0.00 3.87875 -113.748 -3.87875 3.87875 0.66 0.000583812 0.000544012 0.0342048 0.0318579 26 1992 21 6.64007e+06 238602 477104. 1650.88 0.91 0.102828 0.0903855 21682 110474 -1 1698 18 953 1613 112771 26555 2.90297 2.90297 -105.777 -2.90297 0 0 585099. 2024.56 0.20 0.06 0.10 -1 -1 0.20 0.0214233 0.0186758 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.89 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30508 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 23.8 MiB 0.20 943 11431 3023 6401 2007 62.8 MiB 0.12 0.00 4.78844 -139.402 -4.78844 4.78844 0.67 0.000733091 0.000681237 0.0471346 0.0438366 32 2212 20 6.64007e+06 288834 554710. 1919.41 0.88 0.127915 0.113042 22834 132086 -1 1966 20 1597 2426 179462 40072 3.71863 3.71863 -132.49 -3.71863 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0290045 0.0253484 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.92 vpr 62.98 MiB -1 -1 0.15 18220 1 0.02 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1173 16170 4393 9836 1941 63.0 MiB 0.16 0.00 5.44166 -158.46 -5.44166 5.44166 0.66 0.000690061 0.000641379 0.0578456 0.0537506 26 2974 49 6.64007e+06 326508 477104. 1650.88 1.91 0.174192 0.153401 21682 110474 -1 2414 21 1521 2276 183268 40328 4.33689 4.33689 -148.154 -4.33689 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0283893 0.0248086 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.07 vpr 62.92 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30068 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1216 15003 5067 8222 1714 62.9 MiB 0.14 0.00 5.37715 -156.166 -5.37715 5.37715 0.66 0.000677542 0.000629471 0.050768 0.0471658 30 2440 19 6.64007e+06 376740 526063. 1820.29 0.86 0.125684 0.11154 22546 126617 -1 2046 18 972 1556 95320 21315 4.16988 4.16988 -141.14 -4.16988 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.026626 0.0234799 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.94 vpr 62.93 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 895 9815 2159 6479 1177 62.9 MiB 0.10 0.00 4.45681 -130.071 -4.45681 4.45681 0.66 0.00072306 0.000672249 0.0354602 0.0329888 32 2077 19 6.64007e+06 414414 554710. 1919.41 0.82 0.11936 0.104715 22834 132086 -1 1875 20 1234 2049 117187 28580 3.30083 3.30083 -119.653 -3.30083 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.028278 0.0246557 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.00 vpr 62.81 MiB -1 -1 0.24 18276 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 23.8 MiB 0.17 1069 14407 4171 8795 1441 62.8 MiB 0.14 0.00 4.99084 -144.739 -4.99084 4.99084 0.66 0.000713006 0.000662371 0.0577071 0.0536132 32 2668 20 6.64007e+06 263718 554710. 1919.41 0.88 0.140428 0.124472 22834 132086 -1 2353 19 1391 2494 178708 39579 3.75062 3.75062 -139.109 -3.75062 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0277684 0.0242314 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.99 MiB -1 -1 0.21 18380 1 0.03 -1 -1 30304 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 991 14168 3722 8736 1710 63.0 MiB 0.13 0.00 4.90164 -138.394 -4.90164 4.90164 0.66 0.000718379 0.000666763 0.051316 0.0476551 26 2358 19 6.64007e+06 389298 477104. 1650.88 0.78 0.134896 0.119141 21682 110474 -1 2059 21 1193 1929 132387 29914 3.62843 3.62843 -127.623 -3.62843 0 0 585099. 2024.56 0.19 0.07 0.10 -1 -1 0.19 0.0293232 0.0255165 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.60 vpr 62.02 MiB -1 -1 0.18 17768 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.4 MiB 0.09 698 12416 3955 6725 1736 62.0 MiB 0.10 0.00 3.88758 -112.734 -3.88758 3.88758 0.66 0.000559906 0.000521817 0.0426391 0.0397201 28 1776 22 6.64007e+06 188370 500653. 1732.36 0.84 0.108808 0.096227 21970 115934 -1 1610 16 827 1253 97467 22192 3.16737 3.16737 -109.621 -3.16737 0 0 612192. 2118.31 0.21 0.05 0.11 -1 -1 0.21 0.018766 0.0164389 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.11 vpr 62.92 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30284 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 964 13455 3168 8058 2229 62.9 MiB 0.13 0.00 4.65236 -138.008 -4.65236 4.65236 0.66 0.000722488 0.00067114 0.0467347 0.0434262 32 2266 21 6.64007e+06 401856 554710. 1919.41 0.87 0.131461 0.115992 22834 132086 -1 1834 21 1297 2159 133098 31359 3.72183 3.72183 -126.441 -3.72183 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0295291 0.0257377 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.97 vpr 62.83 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1060 10103 2308 6560 1235 62.8 MiB 0.11 0.00 4.84241 -152.382 -4.84241 4.84241 0.66 0.000759112 0.00070501 0.0434728 0.040385 32 2649 24 6.64007e+06 276276 554710. 1919.41 0.93 0.136489 0.120134 22834 132086 -1 2387 22 1966 3185 227280 52170 4.04423 4.04423 -149.366 -4.04423 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.032635 0.0284672 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.32 vpr 62.44 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30376 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.8 MiB 0.31 933 13992 4098 8142 1752 62.4 MiB 0.12 0.00 4.31784 -124.298 -4.31784 4.31784 0.66 0.000581952 0.000541512 0.0461518 0.0429377 26 2333 27 6.64007e+06 251160 477104. 1650.88 2.30 0.175823 0.153222 21682 110474 -1 2014 20 1088 1443 117053 25629 3.30403 3.30403 -118.207 -3.30403 0 0 585099. 2024.56 0.18 0.06 0.12 -1 -1 0.18 0.0230189 0.0200404 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.57 vpr 62.16 MiB -1 -1 0.18 17612 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.10 781 9417 2297 6451 669 62.2 MiB 0.08 0.00 3.81035 -109.522 -3.81035 3.81035 0.66 0.000551855 0.000513156 0.0302212 0.028084 32 1805 21 6.64007e+06 263718 554710. 1919.41 0.80 0.0954543 0.0837192 22834 132086 -1 1623 22 1006 1686 116113 26730 2.91397 2.91397 -103.946 -2.91397 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0236493 0.0204754 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.85 vpr 62.98 MiB -1 -1 0.23 18408 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 894 10542 2833 7069 640 63.0 MiB 0.11 0.00 5.11544 -156.533 -5.11544 5.11544 0.66 0.000549115 0.000503293 0.0338353 0.0311981 28 2905 29 6.64007e+06 326508 500653. 1732.36 2.69 0.222686 0.191903 21970 115934 -1 2270 21 1717 2234 150681 36479 4.29109 4.29109 -151.66 -4.29109 0 0 612192. 2118.31 0.18 0.08 0.12 -1 -1 0.18 0.0288812 0.0252269 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.05 vpr 63.05 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30260 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1216 13953 3630 8615 1708 63.1 MiB 0.13 0.00 5.10413 -156.46 -5.10413 5.10413 0.72 0.000701539 0.000651523 0.0495363 0.0457296 26 3309 49 6.64007e+06 364182 477104. 1650.88 1.90 0.163914 0.143451 21682 110474 -1 2648 21 1678 2630 217673 46245 4.63868 4.63868 -154.565 -4.63868 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0286545 0.0250081 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.59 vpr 62.91 MiB -1 -1 0.20 18056 1 0.03 -1 -1 30192 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1246 17036 4529 10969 1538 62.9 MiB 0.16 0.00 5.4761 -148.295 -5.4761 5.4761 0.66 0.000716131 0.000666066 0.05521 0.0513367 26 3134 35 6.64007e+06 452088 477104. 1650.88 1.52 0.15784 0.139458 21682 110474 -1 2607 21 1733 3199 243499 53638 4.55949 4.55949 -150.976 -4.55949 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0297583 0.0260027 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.76 vpr 62.76 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30408 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 874 9892 2506 6506 880 62.8 MiB 0.09 0.00 3.51924 -103.944 -3.51924 3.51924 0.72 0.000639098 0.000593211 0.031776 0.0295097 30 1855 19 6.64007e+06 401856 526063. 1820.29 0.80 0.105493 0.0925736 22546 126617 -1 1645 19 1016 1803 85739 21372 2.80477 2.80477 -98.9098 -2.80477 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024114 0.0209844 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.63 vpr 62.04 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30340 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.10 565 12120 3265 7503 1352 62.0 MiB 0.10 0.00 3.49724 -93.0073 -3.49724 3.49724 0.71 0.00055043 0.000512631 0.0414477 0.0385677 28 1552 21 6.64007e+06 263718 500653. 1732.36 0.78 0.104893 0.0926252 21970 115934 -1 1349 20 1009 1487 99406 23958 2.83997 2.83997 -92.1671 -2.83997 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0215616 0.0186939 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.04 vpr 62.86 MiB -1 -1 0.24 18576 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1324 16572 5072 8808 2692 62.9 MiB 0.17 0.00 4.42635 -141.521 -4.42635 4.42635 0.68 0.000803326 0.000746269 0.0696354 0.0647307 32 3259 35 6.64007e+06 326508 554710. 1919.41 2.76 0.283774 0.246993 22834 132086 -1 2737 20 1821 3112 227397 48414 4.03623 4.03623 -137.329 -4.03623 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0321186 0.0280535 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.18 vpr 62.89 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30340 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1050 12371 3182 7852 1337 62.9 MiB 0.12 0.00 5.43386 -156.366 -5.43386 5.43386 0.71 0.000711657 0.000661541 0.0492338 0.0457626 32 2467 20 6.64007e+06 288834 554710. 1919.41 0.88 0.132164 0.116916 22834 132086 -1 2222 23 1450 2394 179772 39496 4.42648 4.42648 -147.66 -4.42648 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0317037 0.0275939 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.04 vpr 62.84 MiB -1 -1 0.22 18140 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 331 280 1 174 84 17 17 289 -1 unnamed_device 23.9 MiB 0.35 941 14175 4029 8632 1514 62.8 MiB 0.13 0.00 4.2933 -133.018 -4.2933 4.2933 0.70 0.000662045 0.000615556 0.0546323 0.0507716 32 2137 21 6.64007e+06 251160 554710. 1919.41 0.82 0.131338 0.116337 22834 132086 -1 2004 23 1337 1980 158485 34343 3.51963 3.51963 -132.516 -3.51963 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.028897 0.0250789 130 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.65 vpr 62.62 MiB -1 -1 0.21 18244 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1025 10744 3084 7154 506 62.6 MiB 0.06 0.00 5.21217 -134.409 -5.21217 5.21217 0.68 0.000301918 0.000278377 0.0169059 0.0155644 30 2184 21 6.64007e+06 376740 526063. 1820.29 0.77 0.0956742 0.0830899 22546 126617 -1 1937 18 867 1471 89050 19926 3.73062 3.73062 -118.693 -3.73062 0 0 666494. 2306.21 0.21 0.06 0.14 -1 -1 0.21 0.0243458 0.0213013 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.82 vpr 62.88 MiB -1 -1 0.18 18184 1 0.03 -1 -1 30520 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1033 6757 1363 4872 522 62.9 MiB 0.08 0.00 5.06104 -138.99 -5.06104 5.06104 0.69 0.000663433 0.000620281 0.0242365 0.0225225 26 2574 21 6.64007e+06 426972 477104. 1650.88 0.90 0.109814 0.0956979 21682 110474 -1 2282 20 1591 2581 146564 35944 3.83083 3.83083 -132.863 -3.83083 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0288165 0.0251296 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.79 vpr 62.89 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30192 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1000 10173 2480 6565 1128 62.9 MiB 0.09 0.00 3.68089 -112.079 -3.68089 3.68089 0.67 0.000664771 0.000618977 0.0341121 0.0317509 32 2189 21 6.64007e+06 389298 554710. 1919.41 0.82 0.110655 0.0972447 22834 132086 -1 1934 21 992 1861 125297 27515 2.93217 2.93217 -104.52 -2.93217 0 0 701300. 2426.64 0.21 0.07 0.12 -1 -1 0.21 0.0268693 0.0233808 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.19 vpr 63.21 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1181 8207 1889 5862 456 63.2 MiB 0.10 0.00 5.21333 -162.921 -5.21333 5.21333 0.67 0.000704456 0.000654821 0.0316332 0.0294416 32 2916 22 6.64007e+06 313950 554710. 1919.41 0.95 0.108166 0.0951228 22834 132086 -1 2540 21 1769 2749 219470 47322 4.11269 4.11269 -146.472 -4.11269 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0302754 0.0265312 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.47 vpr 63.14 MiB -1 -1 0.22 18192 1 0.03 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1091 17268 5141 9536 2591 63.1 MiB 0.16 0.00 4.75546 -148.32 -4.75546 4.75546 0.66 0.000565954 0.000519561 0.0543727 0.0502843 26 2685 30 6.64007e+06 452088 477104. 1650.88 1.39 0.156298 0.137798 21682 110474 -1 2255 18 1257 1979 128650 29661 3.48203 3.48203 -130.715 -3.48203 0 0 585099. 2024.56 0.22 0.07 0.13 -1 -1 0.22 0.0274558 0.0240298 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.55 vpr 62.29 MiB -1 -1 0.19 18060 1 0.03 -1 -1 30372 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.6 MiB 0.09 588 12030 3358 7039 1633 62.3 MiB 0.10 0.00 3.76255 -108.245 -3.76255 3.76255 0.66 0.000566384 0.000526631 0.0433966 0.040388 30 1348 20 6.64007e+06 213486 526063. 1820.29 0.80 0.110538 0.0977513 22546 126617 -1 1205 18 807 1162 78445 17743 2.56837 2.56837 -95.382 -2.56837 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0209901 0.018296 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.74 vpr 62.75 MiB -1 -1 0.18 18328 1 0.03 -1 -1 30528 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 310 266 1 176 85 17 17 289 -1 unnamed_device 23.8 MiB 0.23 778 6037 1272 4427 338 62.7 MiB 0.07 0.00 4.48879 -126.842 -4.48879 4.48879 0.66 0.000627478 0.000582269 0.0225285 0.0209372 32 2251 23 6.64007e+06 263718 554710. 1919.41 0.84 0.0979023 0.0852257 22834 132086 -1 1743 18 964 1268 93490 22694 3.24503 3.24503 -119.32 -3.24503 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.023208 0.0203368 118 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.98 vpr 62.77 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30436 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1008 6132 1183 4581 368 62.8 MiB 0.07 0.00 4.78944 -127.311 -4.78944 4.78944 0.66 0.000668195 0.000620284 0.0197348 0.0183524 26 2494 22 6.64007e+06 464646 477104. 1650.88 1.02 0.099024 0.0861208 21682 110474 -1 2169 20 1399 2498 165534 38412 3.93603 3.93603 -128.563 -3.93603 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0263111 0.0229567 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.76 vpr 62.39 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30288 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.8 MiB 0.29 764 14303 4579 7529 2195 62.4 MiB 0.12 0.00 4.38281 -116.371 -4.38281 4.38281 0.68 0.000560152 0.000520712 0.0462667 0.0429999 28 2083 19 6.64007e+06 276276 500653. 1732.36 2.69 0.19321 0.167323 21970 115934 -1 1681 20 1101 1443 96185 22508 3.23483 3.23483 -107.841 -3.23483 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0224875 0.0195556 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.64 vpr 62.31 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 868 10406 2691 6847 868 62.3 MiB 0.09 0.00 3.9428 -121.707 -3.9428 3.9428 0.66 0.000493559 0.000454789 0.0364261 0.0338871 32 1810 20 6.64007e+06 213486 554710. 1919.41 0.81 0.104566 0.0922346 22834 132086 -1 1706 20 1156 2003 136026 30795 2.79857 2.79857 -109.128 -2.79857 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0232486 0.020219 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.88 vpr 63.01 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30232 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 23.9 MiB 0.17 875 8079 1601 6137 341 63.0 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 0.66 0.000729704 0.000672506 0.0282794 0.0262532 28 2410 36 6.64007e+06 452088 500653. 1732.36 1.01 0.122877 0.107199 21970 115934 -1 1875 21 1356 2240 134886 34729 3.20157 3.20157 -114.587 -3.20157 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.02967 0.0258598 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.85 vpr 62.41 MiB -1 -1 0.22 17880 1 0.02 -1 -1 30380 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.24 883 11423 3367 6862 1194 62.4 MiB 0.10 0.00 4.01573 -121.888 -4.01573 4.01573 0.70 0.00042661 0.0003914 0.0304115 0.0279707 26 2117 20 6.64007e+06 251160 477104. 1650.88 0.81 0.0987452 0.0864634 21682 110474 -1 1747 20 1087 1540 101106 24211 3.08363 3.08363 -115.072 -3.08363 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0225978 0.0196492 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.00 vpr 62.84 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30036 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.8 MiB 0.17 851 8418 1678 5980 760 62.8 MiB 0.08 0.00 3.82753 -117.666 -3.82753 3.82753 0.69 0.000697985 0.000648356 0.0291472 0.0270844 28 2478 22 6.64007e+06 401856 500653. 1732.36 1.00 0.111733 0.0976573 21970 115934 -1 1955 23 1317 2265 161744 43770 2.98117 2.98117 -112.322 -2.98117 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0301765 0.0262185 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.76 vpr 62.88 MiB -1 -1 0.24 18228 1 0.03 -1 -1 30272 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 23.8 MiB 0.28 974 12839 3425 8126 1288 62.9 MiB 0.12 0.00 4.34696 -135.951 -4.34696 4.34696 0.83 0.0005777 0.000530686 0.0376217 0.0346385 32 2188 19 6.64007e+06 401856 554710. 1919.41 2.46 0.208883 0.180363 22834 132086 -1 1958 21 1309 1812 123981 28855 3.33103 3.33103 -127.587 -3.33103 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0306673 0.0267297 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.44 vpr 62.48 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.7 MiB 0.20 712 8656 2009 6156 491 62.5 MiB 0.08 0.00 3.3851 -102.924 -3.3851 3.3851 0.72 0.000473262 0.000433696 0.0263381 0.0242121 28 2051 39 6.64007e+06 213486 500653. 1732.36 2.50 0.186324 0.160165 21970 115934 -1 1784 17 1002 1552 122933 29414 2.93417 2.93417 -107.966 -2.93417 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0217209 0.0189489 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.57 vpr 62.62 MiB -1 -1 0.16 17964 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.9 MiB 0.25 948 9385 2467 6027 891 62.6 MiB 0.10 0.00 4.44818 -138.832 -4.44818 4.44818 0.68 0.000613477 0.000570458 0.0329626 0.0306849 32 2287 21 6.64007e+06 263718 554710. 1919.41 2.61 0.183405 0.158545 22834 132086 -1 2029 21 1119 1638 128993 28031 3.39203 3.39203 -129.192 -3.39203 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0251574 0.0218989 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.61 vpr 62.86 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1058 7767 1828 5291 648 62.9 MiB 0.08 0.00 4.73583 -140.794 -4.73583 4.73583 0.67 0.000657951 0.000611721 0.0289628 0.0269376 32 2491 22 6.64007e+06 288834 554710. 1919.41 2.53 0.21957 0.189553 22834 132086 -1 2097 21 1513 2026 141902 33771 3.92523 3.92523 -134.778 -3.92523 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0271269 0.0236507 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.80 vpr 62.81 MiB -1 -1 0.25 18436 1 0.04 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.20 961 12753 3692 7785 1276 62.8 MiB 0.13 0.00 4.75755 -125.045 -4.75755 4.75755 0.61 0.000648149 0.000603068 0.0476574 0.0441108 32 1971 18 6.64007e+06 364182 554710. 1919.41 0.80 0.117254 0.103935 22834 132086 -1 1845 19 807 1354 87570 20360 3.28883 3.28883 -110.424 -3.28883 0 0 701300. 2426.64 0.22 0.06 0.12 -1 -1 0.22 0.0247627 0.021639 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.03 vpr 63.07 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 0.36 846 9643 2135 6651 857 63.1 MiB 0.10 0.00 5.52409 -167.953 -5.52409 5.52409 0.66 0.000753962 0.000699852 0.0400097 0.0371486 34 2787 38 6.64007e+06 301392 585099. 2024.56 1.88 0.207551 0.18 23122 138558 -1 1936 24 1573 2308 150807 38792 4.46809 4.46809 -156.232 -4.46809 0 0 742403. 2568.87 0.20 0.08 0.13 -1 -1 0.20 0.0343765 0.0299336 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.58 vpr 62.14 MiB -1 -1 0.21 17756 1 0.03 -1 -1 30052 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.09 599 7956 1801 5879 276 62.1 MiB 0.07 0.00 3.65226 -97.6941 -3.65226 3.65226 0.66 0.000548811 0.000512525 0.026813 0.0250556 32 1638 19 6.64007e+06 226044 554710. 1919.41 0.77 0.0896653 0.0786509 22834 132086 -1 1460 18 787 1272 92647 21532 2.73697 2.73697 -94.3223 -2.73697 0 0 701300. 2426.64 0.23 0.04 0.15 -1 -1 0.23 0.0188905 0.0167161 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.01 vpr 62.94 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.19 954 8873 1826 6622 425 62.9 MiB 0.09 0.00 4.24713 -140.193 -4.24713 4.24713 0.66 0.000784555 0.00072985 0.0336355 0.0312506 28 2572 31 6.64007e+06 426972 500653. 1732.36 1.03 0.1379 0.120538 21970 115934 -1 2175 22 1537 2339 173372 39376 3.93503 3.93503 -141.075 -3.93503 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0324904 0.0283075 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.12 vpr 62.74 MiB -1 -1 0.25 18308 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 874 12856 4533 6666 1657 62.7 MiB 0.12 0.00 3.54047 -123.335 -3.54047 3.54047 0.68 0.000711835 0.000660521 0.0548089 0.0509226 32 1825 21 6.64007e+06 213486 554710. 1919.41 0.85 0.13402 0.118757 22834 132086 -1 1655 20 1321 1938 116061 28088 3.01617 3.01617 -121.412 -3.01617 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0261777 0.0229321 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.86 vpr 62.78 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1033 11265 2868 7471 926 62.8 MiB 0.11 0.00 4.43584 -135.56 -4.43584 4.43584 0.73 0.000712874 0.00066145 0.0390949 0.0363371 28 2229 14 6.64007e+06 401856 500653. 1732.36 0.82 0.114652 0.10114 21970 115934 -1 2115 16 925 1438 98496 22347 3.21363 3.21363 -121.41 -3.21363 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0215583 0.0192611 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.57 vpr 62.88 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1323 13963 4525 7204 2234 62.9 MiB 0.16 0.00 6.49387 -193.63 -6.49387 6.49387 0.66 0.000782723 0.000727718 0.0560906 0.0521202 30 3412 26 6.64007e+06 339066 526063. 1820.29 1.28 0.157553 0.139444 22546 126617 -1 2684 24 1644 2427 183612 38569 5.12274 5.12274 -170.078 -5.12274 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0357708 0.031241 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 5.06 vpr 62.04 MiB -1 -1 0.14 17948 1 0.02 -1 -1 30128 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.4 MiB 0.21 724 10744 2740 6987 1017 62.0 MiB 0.08 0.00 3.31307 -103.05 -3.31307 3.31307 0.66 0.000497945 0.000463198 0.0328291 0.03055 32 1572 19 6.64007e+06 226044 554710. 1919.41 2.21 0.164603 0.142215 22834 132086 -1 1483 13 658 840 62111 14307 2.32491 2.32491 -94.088 -2.32491 0 0 701300. 2426.64 0.27 0.04 0.14 -1 -1 0.27 0.0145103 0.0127651 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.84 vpr 62.14 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30452 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 653 10370 2942 6125 1303 62.1 MiB 0.09 0.00 4.12598 -117.274 -4.12598 4.12598 0.67 0.000607521 0.0005661 0.0394949 0.0367593 26 1686 20 6.64007e+06 200928 477104. 1650.88 1.98 0.187954 0.162731 21682 110474 -1 1476 18 837 1320 110296 24299 2.92297 2.92297 -108.566 -2.92297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0221312 0.019297 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.72 vpr 62.30 MiB -1 -1 0.12 18160 1 0.03 -1 -1 30016 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.12 882 10687 2740 7287 660 62.3 MiB 0.10 0.00 3.50309 -113.66 -3.50309 3.50309 0.74 0.000626338 0.000582469 0.0381159 0.0354805 32 1995 21 6.64007e+06 263718 554710. 1919.41 0.86 0.111585 0.0983398 22834 132086 -1 1900 18 1046 1918 134410 29742 2.72357 2.72357 -108.004 -2.72357 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0224918 0.0196183 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.68 vpr 62.04 MiB -1 -1 0.21 17948 1 0.03 -1 -1 30236 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 444 9966 3251 4492 2223 62.0 MiB 0.07 0.00 3.40927 -77.6354 -3.40927 3.40927 0.67 0.000473319 0.000440218 0.0274649 0.0255065 28 1484 27 6.64007e+06 339066 500653. 1732.36 0.99 0.0892455 0.0779208 21970 115934 -1 1248 20 772 1308 108617 28461 2.96837 2.96837 -79.7493 -2.96837 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0190011 0.0165108 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.05 vpr 62.70 MiB -1 -1 0.26 18344 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 23.7 MiB 0.23 946 11431 2748 6950 1733 62.7 MiB 0.12 0.00 4.37233 -131.494 -4.37233 4.37233 0.76 0.000727426 0.000675383 0.0470142 0.04353 32 2550 23 6.64007e+06 263718 554710. 1919.41 0.88 0.136082 0.119991 22834 132086 -1 2069 20 1308 2361 139562 33439 3.60963 3.60963 -126.176 -3.60963 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0287671 0.0251131 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.64 vpr 63.02 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30200 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.21 961 9998 2423 6940 635 63.0 MiB 0.13 0.00 4.49598 -142.588 -4.49598 4.49598 0.67 0.000916733 0.0008464 0.0415397 0.0383976 32 2313 19 6.64007e+06 439530 554710. 1919.41 2.57 0.214352 0.185494 22834 132086 -1 1958 17 1274 1962 116698 27985 3.33083 3.33083 -125.991 -3.33083 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0266459 0.0233349 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.21 vpr 62.95 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30268 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.0 MiB 0.41 1143 17347 5477 9563 2307 62.9 MiB 0.16 0.00 5.20258 -155.488 -5.20258 5.20258 0.69 0.000580252 0.000532451 0.059722 0.0554328 28 2696 21 6.65987e+06 380340 500653. 1732.36 0.93 0.143234 0.127046 21970 115934 -1 2338 20 1526 2351 162828 36705 4.16677 4.16677 -147.593 -4.16677 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0285189 0.0249567 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.67 vpr 62.71 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 23.9 MiB 0.29 826 5567 1093 3716 758 62.7 MiB 0.06 0.00 4.85795 -137.996 -4.85795 4.85795 0.66 0.000697421 0.000644938 0.0230496 0.0214275 32 2525 24 6.65987e+06 304272 554710. 1919.41 2.58 0.197374 0.169566 22834 132086 -1 2014 20 1764 2669 182543 47594 4.14603 4.14603 -135.897 -4.14603 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0285777 0.0249937 140 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.94 vpr 62.35 MiB -1 -1 0.22 18176 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1079 15639 5051 8379 2209 62.4 MiB 0.14 0.00 4.11181 -120.963 -4.11181 4.11181 0.66 0.000630131 0.000585644 0.0537387 0.0499798 32 2479 22 6.65987e+06 291594 554710. 1919.41 0.85 0.135757 0.120535 22834 132086 -1 2143 21 1316 1863 128998 30148 3.48731 3.48731 -116.645 -3.48731 0 0 701300. 2426.64 0.22 0.07 0.14 -1 -1 0.22 0.0261975 0.0228692 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.93 vpr 62.51 MiB -1 -1 0.25 17956 1 0.03 -1 -1 30388 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.5 MiB 0.16 937 15298 4951 7764 2583 62.5 MiB 0.13 0.00 4.29337 -115.569 -4.29337 4.29337 0.65 0.000633977 0.000588928 0.0519066 0.0482503 32 2306 30 6.65987e+06 342306 554710. 1919.41 0.90 0.135198 0.119336 22834 132086 -1 1985 25 1504 2799 219919 50220 3.42411 3.42411 -111.097 -3.42411 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0302588 0.0262504 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.20 vpr 62.54 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1058 13911 3755 8078 2078 62.5 MiB 0.14 0.00 4.32255 -126.417 -4.32255 4.32255 0.66 0.000675165 0.000626782 0.0515498 0.0478843 32 2541 47 6.65987e+06 291594 554710. 1919.41 1.14 0.158779 0.13959 22834 132086 -1 2322 23 1597 3125 272365 58938 3.64831 3.64831 -124.147 -3.64831 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0301736 0.0262658 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.72 vpr 62.91 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 858 7201 1481 5496 224 62.9 MiB 0.08 0.00 3.30984 -111.675 -3.30984 3.30984 0.65 0.000721391 0.000671053 0.0257237 0.0238998 28 2339 24 6.65987e+06 418374 500653. 1732.36 2.76 0.228072 0.196098 21970 115934 -1 2009 20 1311 2041 126370 33362 3.01731 3.01731 -111.009 -3.01731 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0286904 0.0250997 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.88 vpr 62.00 MiB -1 -1 0.23 17836 1 0.03 -1 -1 30680 -1 -1 18 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.5 MiB 0.13 601 11976 3191 7496 1289 62.0 MiB 0.10 0.00 3.61795 -96.0414 -3.61795 3.61795 0.64 0.000475185 0.000437187 0.0418722 0.0389108 28 1542 20 6.65987e+06 228204 500653. 1732.36 1.97 0.187847 0.162615 21970 115934 -1 1408 20 793 1327 101908 22870 2.80071 2.80071 -94.1372 -2.80071 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0220276 0.0192048 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 6.00 vpr 62.28 MiB -1 -1 0.20 17756 1 0.03 -1 -1 30120 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.5 MiB 0.15 811 9892 2186 7284 422 62.3 MiB 0.09 0.00 3.36433 -96.8901 -3.36433 3.36433 0.66 0.000598757 0.000555484 0.0298757 0.0277704 28 2347 24 6.65987e+06 393018 500653. 1732.36 3.17 0.190268 0.164053 21970 115934 -1 1905 19 1011 1801 131698 30370 2.71485 2.71485 -95.6397 -2.71485 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0231024 0.020174 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.77 vpr 62.48 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30196 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 317 271 1 169 82 17 17 289 -1 unnamed_device 23.5 MiB 0.24 927 8804 2219 5962 623 62.5 MiB 0.09 0.00 3.4209 -115.766 -3.4209 3.4209 0.66 0.000641118 0.000595527 0.0335851 0.0312321 30 1946 21 6.65987e+06 240882 526063. 1820.29 1.82 0.188217 0.162784 22546 126617 -1 1679 22 876 1290 75993 17565 2.91031 2.91031 -109.66 -2.91031 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.027157 0.0236313 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.81 vpr 62.22 MiB -1 -1 0.21 17924 1 0.03 -1 -1 30124 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.5 MiB 0.25 719 10056 2390 7132 534 62.2 MiB 0.10 0.00 3.74029 -120.95 -3.74029 3.74029 0.66 0.000623824 0.000580161 0.0380352 0.0353931 28 2074 23 6.65987e+06 215526 500653. 1732.36 0.88 0.114167 0.100494 21970 115934 -1 1782 18 1142 1764 119209 29314 2.82871 2.82871 -113.841 -2.82871 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0230886 0.0201862 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.86 vpr 62.36 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30408 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.25 575 5994 1238 4012 744 62.4 MiB 0.06 0.00 4.00989 -106.137 -4.00989 4.00989 0.66 0.000618119 0.000569544 0.02387 0.0222237 32 1593 22 6.65987e+06 215526 554710. 1919.41 0.80 0.097779 0.0852991 22834 132086 -1 1313 15 696 1067 62289 16243 2.70271 2.70271 -97.1718 -2.70271 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0198645 0.0174243 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 6.86 vpr 62.07 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.4 MiB 0.28 795 6381 1346 4871 164 62.1 MiB 0.07 0.00 3.75729 -117.97 -3.75729 3.75729 0.71 0.000591167 0.00055044 0.0236305 0.0220085 28 2308 31 6.65987e+06 215526 500653. 1732.36 3.90 0.174161 0.150224 21970 115934 -1 1893 16 1083 1444 121416 28692 2.92331 2.92331 -107.84 -2.92331 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202939 0.0177696 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.94 vpr 62.81 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30336 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1032 9253 2342 6405 506 62.8 MiB 0.10 0.00 4.35378 -139.852 -4.35378 4.35378 0.66 0.000700368 0.000651009 0.03556 0.0330503 32 2591 17 6.65987e+06 304272 554710. 1919.41 0.85 0.113438 0.0998848 22834 132086 -1 2306 24 1781 2644 208357 48038 3.49111 3.49111 -130.916 -3.49111 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.0244401 0.0214036 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.94 vpr 62.83 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30288 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 23.8 MiB 0.22 904 11170 2626 8078 466 62.8 MiB 0.11 0.00 4.4708 -131.273 -4.4708 4.4708 0.71 0.000711577 0.000660818 0.0401298 0.0372661 28 2436 21 6.65987e+06 380340 500653. 1732.36 2.92 0.230077 0.198787 21970 115934 -1 2247 23 1751 2879 209966 48329 3.76071 3.76071 -132.119 -3.76071 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0173877 0.0154107 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.67 vpr 61.78 MiB -1 -1 0.21 18084 1 0.03 -1 -1 30556 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.22 775 11118 2644 7385 1089 61.8 MiB 0.09 0.00 3.16393 -91.7211 -3.16393 3.16393 0.67 0.000540416 0.00050301 0.035595 0.0331547 26 1874 19 6.65987e+06 266238 477104. 1650.88 0.80 0.0991823 0.087356 21682 110474 -1 1569 19 924 1516 104371 25434 2.84691 2.84691 -93.5767 -2.84691 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.020985 0.01828 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.12 vpr 63.03 MiB -1 -1 0.23 18208 1 0.05 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1049 12733 3859 6982 1892 63.0 MiB 0.13 0.00 4.04739 -126.772 -4.04739 4.04739 0.66 0.000717948 0.000666948 0.0522495 0.0485925 32 2511 22 6.65987e+06 266238 554710. 1919.41 0.87 0.137529 0.121695 22834 132086 -1 2238 23 1445 2718 191051 43605 3.35377 3.35377 -121.168 -3.35377 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0323397 0.0281579 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.16 vpr 62.79 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30080 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1072 15523 5016 8339 2168 62.8 MiB 0.14 0.00 4.31458 -139.763 -4.31458 4.31458 0.66 0.000533528 0.000490056 0.0537202 0.0496218 28 2915 21 6.65987e+06 266238 500653. 1732.36 1.07 0.134997 0.119231 21970 115934 -1 2316 19 1401 1989 160493 35788 3.26677 3.26677 -127.853 -3.26677 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0273035 0.0240214 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.07 vpr 62.49 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30352 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 861 11433 2956 7633 844 62.5 MiB 0.10 0.00 2.85064 -102.994 -2.85064 2.85064 0.71 0.000654015 0.000608086 0.0373514 0.0346593 26 2153 22 6.65987e+06 367662 477104. 1650.88 0.98 0.116875 0.10289 21682 110474 -1 1816 19 977 1497 110865 25449 2.14751 2.14751 -97.7734 -2.14751 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0247404 0.0215273 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.57 vpr 61.78 MiB -1 -1 0.22 17984 1 0.03 -1 -1 30280 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.09 640 7086 1644 4840 602 61.8 MiB 0.06 0.00 2.24807 -77.7472 -2.24807 2.24807 0.67 0.000372225 0.000341719 0.0241246 0.0223367 32 1491 20 6.65987e+06 190170 554710. 1919.41 0.82 0.0821052 0.0717064 22834 132086 -1 1296 14 579 811 59607 14185 1.89185 1.89185 -79.7993 -1.89185 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0153274 0.0133953 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.15 vpr 62.21 MiB -1 -1 0.15 18244 1 0.03 -1 -1 30548 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.5 MiB 0.46 819 13254 3680 8313 1261 62.2 MiB 0.13 0.00 4.81074 -140.485 -4.81074 4.81074 0.70 0.000610703 0.000567783 0.049892 0.0463618 28 2127 22 6.65987e+06 240882 500653. 1732.36 0.82 0.123219 0.108961 21970 115934 -1 1797 18 1099 1584 108008 26189 3.47917 3.47917 -126.534 -3.47917 0 0 612192. 2118.31 0.18 0.06 0.12 -1 -1 0.18 0.0228405 0.0199712 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.77 vpr 62.73 MiB -1 -1 0.25 18180 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.17 945 6791 1317 5158 316 62.7 MiB 0.08 0.00 4.14893 -130.493 -4.14893 4.14893 0.70 0.000523674 0.000481073 0.0204189 0.0187587 30 2169 21 6.65987e+06 393018 526063. 1820.29 0.84 0.101919 0.0886746 22546 126617 -1 1899 17 974 1626 91978 21788 3.32623 3.32623 -121.056 -3.32623 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0250321 0.0219304 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 8.05 vpr 62.92 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30368 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1176 13911 3816 8065 2030 62.9 MiB 0.17 0.00 4.32644 -135.935 -4.32644 4.32644 0.67 0.000840037 0.00077805 0.059468 0.0550684 28 3219 21 6.65987e+06 291594 500653. 1732.36 4.70 0.234056 0.203886 21970 115934 -1 2732 29 1773 2745 359148 134849 3.93331 3.93331 -139.547 -3.93331 0 0 612192. 2118.31 0.18 0.14 0.11 -1 -1 0.18 0.0384567 0.0333359 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.84 vpr 61.75 MiB -1 -1 0.18 17964 1 0.02 -1 -1 30572 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63232 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.2 MiB 0.21 372 9836 3070 4693 2073 61.8 MiB 0.06 0.00 2.3895 -62.8108 -2.3895 2.3895 0.68 0.000427958 0.000398083 0.0277289 0.0257683 32 1048 32 6.65987e+06 228204 554710. 1919.41 1.02 0.0892202 0.0780995 22834 132086 -1 748 15 526 715 37159 11103 1.85405 1.85405 -60.2178 -1.85405 0 0 701300. 2426.64 0.20 0.03 0.10 -1 -1 0.20 0.0141123 0.0124112 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.90 vpr 62.31 MiB -1 -1 0.22 17632 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1008 10873 2978 7123 772 62.3 MiB 0.10 0.00 4.661 -123.259 -4.661 4.661 0.66 0.00061645 0.000573757 0.0383728 0.0357514 28 2311 31 6.65987e+06 266238 500653. 1732.36 0.97 0.121793 0.106547 21970 115934 -1 2059 21 1264 2355 164435 38396 3.79397 3.79397 -121.606 -3.79397 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0260079 0.0226915 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.47 vpr 61.68 MiB -1 -1 0.20 17528 1 0.02 -1 -1 30004 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.2 MiB 0.09 415 10370 2863 4808 2699 61.7 MiB 0.06 0.00 2.54569 -72.1104 -2.54569 2.54569 0.65 0.000420762 0.00039026 0.0277356 0.0257335 30 1192 29 6.65987e+06 177492 526063. 1820.29 0.78 0.0834509 0.07298 22546 126617 -1 819 15 404 445 27960 7884 1.81985 1.81985 -66.7912 -1.81985 0 0 666494. 2306.21 0.19 0.03 0.12 -1 -1 0.19 0.0137758 0.0120462 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.87 vpr 62.34 MiB -1 -1 0.22 17956 1 0.03 -1 -1 29988 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 867 9679 2178 7022 479 62.3 MiB 0.09 0.00 4.41865 -121.229 -4.41865 4.41865 0.66 0.000636145 0.000591964 0.0313997 0.0292109 28 2090 22 6.65987e+06 380340 500653. 1732.36 0.94 0.107669 0.0945307 21970 115934 -1 1804 18 1065 1787 114117 27349 3.19965 3.19965 -107.663 -3.19965 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0237139 0.0207535 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.72 vpr 62.28 MiB -1 -1 0.23 17712 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.5 MiB 0.16 1032 8303 1834 5800 669 62.3 MiB 0.08 0.00 3.62555 -107.534 -3.62555 3.62555 0.66 0.000635132 0.000590291 0.0265923 0.0247285 30 2260 22 6.65987e+06 393018 526063. 1820.29 1.80 0.175166 0.151149 22546 126617 -1 1950 19 961 1748 104695 23724 2.60951 2.60951 -101.656 -2.60951 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024746 0.0216667 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.12 vpr 62.62 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30048 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1026 15366 4954 8031 2381 62.6 MiB 0.15 0.00 4.40163 -128.768 -4.40163 4.40163 0.73 0.000674239 0.000624447 0.0541992 0.0502813 28 2536 22 6.65987e+06 329628 500653. 1732.36 1.00 0.135972 0.120361 21970 115934 -1 2239 29 1748 3059 300303 101990 3.99999 3.99999 -130.531 -3.99999 0 0 612192. 2118.31 0.18 0.12 0.11 -1 -1 0.18 0.0359896 0.0311848 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.80 vpr 62.11 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30080 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.13 743 11260 3712 5303 2245 62.1 MiB 0.10 0.00 2.93487 -98.1536 -2.93487 2.93487 0.70 0.000600307 0.000558451 0.0411593 0.0382705 32 1913 21 6.65987e+06 202848 554710. 1919.41 0.82 0.111945 0.0987402 22834 132086 -1 1645 17 907 1417 116532 28198 2.87311 2.87311 -105.642 -2.87311 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0214194 0.0187523 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.22 vpr 62.00 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30144 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.5 MiB 0.14 765 12733 3276 8152 1305 62.0 MiB 0.10 0.00 2.99867 -95.3722 -2.99867 2.99867 0.66 0.000565307 0.000526212 0.041485 0.0386238 32 1733 17 6.65987e+06 291594 554710. 1919.41 2.37 0.201909 0.174689 22834 132086 -1 1567 19 957 1467 111882 25763 2.66145 2.66145 -94.3977 -2.66145 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0188511 0.0165312 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.08 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.15 635 14123 3811 8579 1733 62.1 MiB 0.12 0.00 3.31478 -92.4847 -3.31478 3.31478 0.70 0.000553831 0.000515154 0.0414422 0.03822 28 1810 27 6.65987e+06 291594 500653. 1732.36 0.82 0.113634 0.099748 21970 115934 -1 1551 19 950 1652 120534 27810 2.73271 2.73271 -92.4594 -2.73271 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0215918 0.0188074 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.30 vpr 62.00 MiB -1 -1 0.22 17676 1 0.03 -1 -1 30300 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.4 MiB 0.14 727 6383 1361 4583 439 62.0 MiB 0.06 0.00 3.74563 -110.014 -3.74563 3.74563 0.68 0.000573058 0.000534192 0.0224543 0.0209505 32 1960 23 6.65987e+06 240882 554710. 1919.41 2.45 0.170092 0.146517 22834 132086 -1 1796 20 1192 1921 150188 35568 2.96611 2.96611 -110.14 -2.96611 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0230856 0.0201369 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.80 vpr 62.08 MiB -1 -1 0.22 17968 1 0.03 -1 -1 30428 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.11 616 5517 989 3982 546 62.1 MiB 0.05 0.00 3.36515 -97.3921 -3.36515 3.36515 0.72 0.00058567 0.000544937 0.0182446 0.0169857 28 1967 34 6.65987e+06 342306 500653. 1732.36 1.01 0.099651 0.0863182 21970 115934 -1 1505 20 992 1649 104792 27138 2.58045 2.58045 -96.2333 -2.58045 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0231748 0.020168 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.09 vpr 62.04 MiB -1 -1 0.18 18016 1 0.03 -1 -1 30360 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.4 MiB 0.24 865 14450 4409 7950 2091 62.0 MiB 0.12 0.00 3.27578 -105.17 -3.27578 3.27578 0.70 0.000593717 0.000551718 0.0482444 0.0448486 28 1896 21 6.65987e+06 316950 500653. 1732.36 0.90 0.119184 0.105354 21970 115934 -1 1678 20 1051 1598 111541 25786 2.24065 2.24065 -91.6407 -2.24065 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0243728 0.0212324 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.15 vpr 62.89 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30512 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1216 16551 4115 10400 2036 62.9 MiB 0.15 0.00 3.87192 -114.947 -3.87192 3.87192 0.67 0.000733864 0.000681268 0.054657 0.0507764 32 2878 21 6.65987e+06 469086 554710. 1919.41 0.86 0.14157 0.12529 22834 132086 -1 2430 20 1422 2539 179933 40402 3.68939 3.68939 -116.203 -3.68939 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0313807 0.0276478 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.48 vpr 62.82 MiB -1 -1 0.26 18188 1 0.03 -1 -1 30280 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 23.9 MiB 0.27 918 16804 4626 9521 2657 62.8 MiB 0.15 0.00 3.76954 -123.355 -3.76954 3.76954 0.67 0.000756966 0.000702528 0.0577883 0.0534103 26 2803 43 6.65987e+06 456408 477104. 1650.88 1.35 0.176517 0.15524 21682 110474 -1 2202 22 1787 2772 200753 48070 3.09111 3.09111 -121.86 -3.09111 0 0 585099. 2024.56 0.17 0.09 0.08 -1 -1 0.17 0.0325186 0.0283527 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.34 vpr 62.30 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30116 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.6 MiB 0.47 795 7304 1575 5379 350 62.3 MiB 0.08 0.00 4.09732 -119.878 -4.09732 4.09732 0.66 0.000591925 0.000551337 0.0291753 0.0272926 28 2295 28 6.65987e+06 215526 500653. 1732.36 1.11 0.10999 0.0961369 21970 115934 -1 1888 21 1171 1638 142248 31897 2.88337 2.88337 -109.949 -2.88337 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.024575 0.0214026 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.11 vpr 62.78 MiB -1 -1 0.25 18264 1 0.04 -1 -1 30368 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 23.9 MiB 0.32 944 8727 2152 5844 731 62.8 MiB 0.09 0.00 3.92632 -125.266 -3.92632 3.92632 0.72 0.000715227 0.000664785 0.0351438 0.0326476 32 2324 22 6.65987e+06 304272 554710. 1919.41 0.90 0.127977 0.112152 22834 132086 -1 2075 19 1422 2441 175051 40721 2.95717 2.95717 -112.585 -2.95717 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0277486 0.0242877 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.26 vpr 62.65 MiB -1 -1 0.17 18256 1 0.03 -1 -1 30364 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.3 MiB 0.44 1273 15165 4552 8275 2338 62.6 MiB 0.16 0.00 5.69001 -171.445 -5.69001 5.69001 0.66 0.000729732 0.00067782 0.0579105 0.0538032 32 3146 25 6.65987e+06 342306 554710. 1919.41 0.93 0.148696 0.131687 22834 132086 -1 2682 25 2424 3699 270469 60854 4.91423 4.91423 -167.458 -4.91423 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0346257 0.0301263 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.52 vpr 62.98 MiB -1 -1 0.21 18320 1 0.03 -1 -1 30460 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 383 305 1 209 88 17 17 289 -1 unnamed_device 24.0 MiB 0.98 1100 16468 4969 9311 2188 63.0 MiB 0.16 0.00 4.92247 -149.927 -4.92247 4.92247 0.66 0.000681878 0.00062852 0.064638 0.0599997 28 2844 20 6.65987e+06 316950 500653. 1732.36 2.67 0.253518 0.220821 21970 115934 -1 2478 19 1689 2547 182737 41274 4.31102 4.31102 -150.151 -4.31102 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0289824 0.0254081 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.32 vpr 62.66 MiB -1 -1 0.21 18240 1 0.03 -1 -1 30568 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1122 13754 3789 8484 1481 62.7 MiB 0.13 0.00 4.34966 -130.317 -4.34966 4.34966 0.66 0.000693669 0.00064431 0.0483843 0.0449475 28 2691 26 6.65987e+06 367662 500653. 1732.36 1.24 0.138489 0.12238 21970 115934 -1 2330 25 1556 2709 313045 123001 3.08231 3.08231 -118.242 -3.08231 0 0 612192. 2118.31 0.18 0.13 0.11 -1 -1 0.18 0.0334755 0.0291298 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.45 vpr 62.30 MiB -1 -1 0.16 18048 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.23 922 8780 2172 6205 403 62.3 MiB 0.09 0.00 4.1266 -111.615 -4.1266 4.1266 0.66 0.000615512 0.000572023 0.0307531 0.0286301 26 2735 26 6.65987e+06 278916 477104. 1650.88 3.54 0.186787 0.161167 21682 110474 -1 2172 23 1525 2279 180283 42061 3.61865 3.61865 -116.354 -3.61865 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0276252 0.0240354 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.35 vpr 62.84 MiB -1 -1 0.26 18496 1 0.03 -1 -1 30568 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1225 11764 2792 7889 1083 62.8 MiB 0.13 0.00 4.86514 -158.575 -4.86514 4.86514 0.67 0.000862791 0.000801294 0.0456373 0.0424118 28 3027 30 6.65987e+06 481764 500653. 1732.36 1.18 0.159286 0.139543 21970 115934 -1 2643 23 1724 2712 187683 42451 3.79291 3.79291 -146.352 -3.79291 0 0 612192. 2118.31 0.18 0.10 0.12 -1 -1 0.18 0.0383603 0.0334527 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.69 vpr 62.09 MiB -1 -1 0.21 17972 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.2 MiB 0.19 792 5391 1113 3866 412 62.1 MiB 0.06 0.00 3.45892 -98.948 -3.45892 3.45892 0.66 0.000565329 0.000525832 0.0188943 0.0175703 30 1740 20 6.65987e+06 266238 526063. 1820.29 0.78 0.08515 0.0741422 22546 126617 -1 1534 20 903 1518 93928 21198 2.63765 2.63765 -97.0397 -2.63765 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0225828 0.0197058 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 7.86 vpr 62.88 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30156 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1177 11804 3160 7260 1384 62.9 MiB 0.12 0.00 4.89669 -145.469 -4.89669 4.89669 0.70 0.000690073 0.000641559 0.0449344 0.0417855 28 3159 30 6.65987e+06 291594 500653. 1732.36 4.43 0.230072 0.199739 21970 115934 -1 2513 22 1308 1851 143445 31289 4.01251 4.01251 -136.733 -4.01251 0 0 612192. 2118.31 0.23 0.08 0.11 -1 -1 0.23 0.0299408 0.0261855 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.99 vpr 62.96 MiB -1 -1 0.25 18240 1 0.02 -1 -1 30296 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.1 MiB 0.26 868 8311 1653 6113 545 63.0 MiB 0.08 0.00 3.91407 -115.086 -3.91407 3.91407 0.66 0.000689594 0.000640732 0.0283091 0.0263151 30 2509 26 6.65987e+06 418374 526063. 1820.29 2.93 0.217913 0.187672 22546 126617 -1 1679 16 859 1555 81649 20422 2.90591 2.90591 -105.542 -2.90591 0 0 666494. 2306.21 0.24 0.05 0.11 -1 -1 0.24 0.0238138 0.0209861 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.87 vpr 62.32 MiB -1 -1 0.23 17844 1 0.03 -1 -1 30268 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.6 MiB 0.16 846 6328 1287 4843 198 62.3 MiB 0.07 0.00 3.96153 -117.52 -3.96153 3.96153 0.68 0.000626983 0.000583122 0.0226954 0.0211289 28 2304 21 6.65987e+06 304272 500653. 1732.36 0.92 0.0983394 0.0860529 21970 115934 -1 1981 23 1418 2697 199285 46458 3.71659 3.71659 -122.806 -3.71659 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0279045 0.0242995 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.58 vpr 62.69 MiB -1 -1 0.20 18140 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1090 7835 1660 5643 532 62.7 MiB 0.09 0.00 4.46734 -132.214 -4.46734 4.46734 0.68 0.000699058 0.000648949 0.0313949 0.0291361 32 2503 28 6.65987e+06 278916 554710. 1919.41 2.47 0.202781 0.174826 22834 132086 -1 2254 16 1127 1532 112414 26836 3.20591 3.20591 -119.029 -3.20591 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0239503 0.0210717 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.55 vpr 62.81 MiB -1 -1 0.16 18228 1 0.04 -1 -1 30312 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 23.7 MiB 0.46 1025 8951 2023 6429 499 62.8 MiB 0.10 0.00 3.78594 -122.94 -3.78594 3.78594 0.68 0.000718827 0.000667939 0.0325473 0.0303024 26 2851 30 6.65987e+06 393018 477104. 1650.88 1.31 0.12713 0.111263 21682 110474 -1 2246 22 1338 2263 183303 40174 3.11131 3.11131 -122.127 -3.11131 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0305414 0.0266092 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.17 vpr 62.95 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1095 17268 5091 9567 2610 62.9 MiB 0.16 0.00 4.49052 -137.752 -4.49052 4.49052 0.73 0.000748254 0.000694045 0.0573134 0.0531371 32 2596 25 6.65987e+06 456408 554710. 1919.41 0.89 0.14838 0.13115 22834 132086 -1 2232 21 1219 1845 147581 32927 3.21151 3.21151 -122.058 -3.21151 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0307428 0.0268667 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.73 vpr 62.81 MiB -1 -1 0.22 18412 1 0.03 -1 -1 30448 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.18 881 8493 1904 6212 377 62.8 MiB 0.09 0.00 3.98836 -116.947 -3.98836 3.98836 0.68 0.000522428 0.000480673 0.0247258 0.0227498 32 2229 29 6.65987e+06 367662 554710. 1919.41 2.79 0.215798 0.185291 22834 132086 -1 1823 23 1298 2235 165203 37734 3.31585 3.31585 -112.024 -3.31585 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0286858 0.0249584 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.03 vpr 62.53 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1058 6423 1250 4686 487 62.5 MiB 0.07 0.00 4.75229 -137.839 -4.75229 4.75229 0.69 0.000656818 0.000610756 0.0243928 0.0227171 32 2530 23 6.65987e+06 291594 554710. 1919.41 0.95 0.0929185 0.0819175 22834 132086 -1 2237 21 1668 2440 175489 41742 3.71071 3.71071 -129.186 -3.71071 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282763 0.0248034 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.20 vpr 62.79 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30356 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 23.8 MiB 0.54 1053 14450 4497 7379 2574 62.8 MiB 0.15 0.00 4.75055 -138.917 -4.75055 4.75055 0.68 0.000724219 0.000671884 0.058629 0.0544183 34 2568 25 6.65987e+06 291594 585099. 2024.56 2.76 0.245776 0.213729 23122 138558 -1 2239 20 1331 2062 163732 34849 3.99831 3.99831 -126.897 -3.99831 0 0 742403. 2568.87 0.21 0.08 0.13 -1 -1 0.21 0.0290012 0.0253507 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.14 vpr 62.79 MiB -1 -1 0.24 18120 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 23.9 MiB 0.26 901 8269 1876 5929 464 62.8 MiB 0.09 0.00 3.98149 -123.442 -3.98149 3.98149 0.69 0.000737867 0.000684626 0.0352268 0.0327283 32 2648 25 6.65987e+06 266238 554710. 1919.41 0.95 0.127234 0.111521 22834 132086 -1 2151 21 1523 2669 176931 42791 3.46425 3.46425 -121.172 -3.46425 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0270488 0.0239658 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.61 vpr 61.97 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30532 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.09 757 15103 5160 7628 2315 62.0 MiB 0.11 0.00 3.22598 -97.9932 -3.22598 3.22598 0.67 0.000558007 0.000518758 0.0452597 0.0420692 30 1807 20 6.65987e+06 304272 526063. 1820.29 0.78 0.110091 0.0974139 22546 126617 -1 1524 20 745 1219 73327 17031 2.44445 2.44445 -89.72 -2.44445 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222412 0.019337 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.95 vpr 62.66 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30144 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.20 854 11979 3325 7498 1156 62.7 MiB 0.12 0.00 4.00764 -134.08 -4.00764 4.00764 0.69 0.000670779 0.000623283 0.0463383 0.0430526 30 2108 23 6.65987e+06 253560 526063. 1820.29 0.85 0.128691 0.11355 22546 126617 -1 1862 17 1081 1505 80425 19493 3.45017 3.45017 -131.307 -3.45017 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0238494 0.0209315 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.35 vpr 62.80 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30340 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1274 10235 2657 6661 917 62.8 MiB 0.12 0.00 5.13258 -155.405 -5.13258 5.13258 0.70 0.000776146 0.000721625 0.0414571 0.0384716 32 3405 33 6.65987e+06 354984 554710. 1919.41 1.04 0.146256 0.128547 22834 132086 -1 2767 22 2176 3438 289117 62894 4.34411 4.34411 -147.372 -4.34411 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0325149 0.0290412 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.96 vpr 62.73 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.27 873 6359 1089 5003 267 62.7 MiB 0.07 0.00 4.1576 -127.981 -4.1576 4.1576 0.66 0.000701783 0.000644771 0.0225039 0.0209103 26 2804 32 6.65987e+06 393018 477104. 1650.88 2.85 0.197953 0.170586 21682 110474 -1 2011 20 1285 2168 156274 38621 3.16251 3.16251 -116.567 -3.16251 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0275476 0.0240982 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.46 vpr 62.14 MiB -1 -1 0.16 18080 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.5 MiB 0.15 662 8278 1864 5308 1106 62.1 MiB 0.08 0.00 3.33678 -99.7803 -3.33678 3.33678 0.66 0.000595215 0.000554432 0.0270729 0.0252138 26 2015 33 6.65987e+06 329628 477104. 1650.88 2.59 0.182899 0.15749 21682 110474 -1 1722 23 1271 2045 155617 37080 2.92991 2.92991 -104.001 -2.92991 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0260743 0.0226209 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.67 vpr 62.80 MiB -1 -1 0.17 18516 1 0.03 -1 -1 30372 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.2 MiB 0.75 1210 14939 4355 8110 2474 62.8 MiB 0.17 0.00 6.10992 -175.031 -6.10992 6.10992 0.66 0.000794954 0.000736142 0.0655486 0.0609178 32 3372 31 6.65987e+06 316950 554710. 1919.41 1.03 0.175844 0.155382 22834 132086 -1 2596 21 1928 2778 201964 46743 4.86497 4.86497 -160.032 -4.86497 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0350453 0.0306729 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 62.60 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30408 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.8 MiB 0.27 931 10389 2832 6808 749 62.6 MiB 0.10 0.00 4.39794 -132.47 -4.39794 4.39794 0.66 0.000685033 0.000636289 0.0348545 0.0323946 32 2200 23 6.65987e+06 405696 554710. 1919.41 0.86 0.119094 0.104644 22834 132086 -1 1960 20 1371 2131 135826 33635 3.60951 3.60951 -126.111 -3.60951 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0272217 0.0237813 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.66 vpr 61.91 MiB -1 -1 0.20 17848 1 0.03 -1 -1 30392 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.2 MiB 0.12 660 6999 1482 4945 572 61.9 MiB 0.06 0.00 3.21869 -92.7316 -3.21869 3.21869 0.66 0.000534983 0.000497437 0.0213671 0.0198852 30 1799 25 6.65987e+06 291594 526063. 1820.29 0.85 0.0879458 0.0766453 22546 126617 -1 1447 15 697 1154 70483 17453 2.53419 2.53419 -89.4513 -2.53419 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0173212 0.0151969 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.51 vpr 62.75 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30140 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1092 11573 2759 8065 749 62.7 MiB 0.12 0.00 5.1174 -127.812 -5.1174 5.1174 0.66 0.000706587 0.000656067 0.0389872 0.0362449 34 2426 23 6.65987e+06 431052 585099. 2024.56 1.43 0.151023 0.132154 23122 138558 -1 2153 21 1261 2421 152973 34826 4.15079 4.15079 -123.447 -4.15079 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0293205 0.0256207 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.01 vpr 62.06 MiB -1 -1 0.22 17792 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.5 MiB 0.11 658 7038 1455 4830 753 62.1 MiB 0.06 0.00 3.29684 -98.8102 -3.29684 3.29684 0.87 0.000409907 0.000376428 0.0177496 0.0162941 28 2106 37 6.65987e+06 253560 500653. 1732.36 1.06 0.0911549 0.0789162 21970 115934 -1 1711 17 1024 1691 111688 29187 2.78065 2.78065 -105.082 -2.78065 0 0 612192. 2118.31 0.20 0.06 0.11 -1 -1 0.20 0.0199101 0.0174155 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.07 vpr 62.13 MiB -1 -1 0.23 18056 1 0.03 -1 -1 30056 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.5 MiB 0.17 665 12623 3525 7434 1664 62.1 MiB 0.11 0.00 3.96152 -101.883 -3.96152 3.96152 0.66 0.000584146 0.00054238 0.0373317 0.0346729 28 1809 20 6.65987e+06 418374 500653. 1732.36 2.22 0.170982 0.147922 21970 115934 -1 1537 18 926 1622 96600 24110 2.72171 2.72171 -94.4656 -2.72171 0 0 612192. 2118.31 0.18 0.06 0.08 -1 -1 0.18 0.0220764 0.0193233 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.12 vpr 62.68 MiB -1 -1 0.26 18296 1 0.03 -1 -1 30296 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1014 15523 4859 8256 2408 62.7 MiB 0.15 0.00 4.24664 -124.159 -4.24664 4.24664 0.67 0.00068871 0.000640466 0.0612794 0.056951 32 2519 21 6.65987e+06 304272 554710. 1919.41 0.92 0.145498 0.128993 22834 132086 -1 2110 26 1456 2226 166870 38789 3.18497 3.18497 -112.254 -3.18497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.033988 0.029536 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.40 vpr 62.61 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.6 MiB 0.25 813 6133 1250 4669 214 62.6 MiB 0.07 0.00 4.31499 -129.627 -4.31499 4.31499 0.69 0.000719058 0.000668486 0.0253396 0.0235579 30 1973 21 6.65987e+06 304272 526063. 1820.29 2.40 0.194829 0.168034 22546 126617 -1 1695 21 1155 1730 101267 23759 3.45917 3.45917 -120.941 -3.45917 0 0 666494. 2306.21 0.19 0.07 0.07 -1 -1 0.19 0.0291484 0.0254468 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.07 vpr 62.63 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1032 14575 3712 8961 1902 62.6 MiB 0.15 0.00 4.48612 -136.801 -4.48612 4.48612 0.66 0.000701923 0.000651851 0.0529997 0.0492337 32 2663 22 6.65987e+06 342306 554710. 1919.41 0.98 0.121439 0.108217 22834 132086 -1 2268 22 1461 2460 182454 41825 3.81371 3.81371 -134.147 -3.81371 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0303381 0.0264614 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.82 vpr 62.18 MiB -1 -1 0.24 17912 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.5 MiB 0.27 845 7820 1849 5541 430 62.2 MiB 0.08 0.00 4.62977 -131.711 -4.62977 4.62977 0.67 0.000588335 0.000546861 0.0287476 0.0267302 30 1850 19 6.65987e+06 202848 526063. 1820.29 0.78 0.0982659 0.0862424 22546 126617 -1 1669 17 719 977 60179 14057 3.03551 3.03551 -110.068 -3.03551 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0213566 0.0187668 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.98 vpr 62.58 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30516 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 319 272 1 169 82 17 17 289 -1 unnamed_device 23.9 MiB 0.36 770 10050 2757 6264 1029 62.6 MiB 0.10 0.00 3.69598 -115.146 -3.69598 3.69598 0.70 0.000638278 0.000593236 0.038393 0.0356819 32 2129 24 6.65987e+06 240882 554710. 1919.41 0.87 0.117154 0.103002 22834 132086 -1 1830 22 1219 1808 127557 30445 3.02177 3.02177 -109.858 -3.02177 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277662 0.0241712 112 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.56 vpr 62.48 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.5 MiB 0.26 862 12839 3032 8956 851 62.5 MiB 0.11 0.00 3.34001 -95.8914 -3.34001 3.34001 0.69 0.000654761 0.0006065 0.0414346 0.0384863 30 1980 21 6.65987e+06 418374 526063. 1820.29 2.46 0.200233 0.173356 22546 126617 -1 1669 18 962 1743 95030 22615 2.43511 2.43511 -91.9636 -2.43511 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0242043 0.0211557 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.93 vpr 62.09 MiB -1 -1 0.17 18004 1 0.03 -1 -1 30388 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.4 MiB 0.22 923 12623 3487 7239 1897 62.1 MiB 0.10 0.00 4.05815 -100.085 -4.05815 4.05815 0.66 0.000455728 0.000417435 0.0360236 0.033494 26 2151 41 6.65987e+06 443730 477104. 1650.88 0.97 0.122451 0.106933 21682 110474 -1 1846 35 1346 2687 324830 124278 3.61745 3.61745 -101.557 -3.61745 0 0 585099. 2024.56 0.17 0.13 0.10 -1 -1 0.17 0.0364831 0.0313823 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.64 vpr 62.44 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30384 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.5 MiB 0.19 738 13937 5869 7500 568 62.4 MiB 0.13 0.00 3.86584 -113.256 -3.86584 3.86584 0.67 0.000629094 0.000584507 0.0545975 0.0506879 28 1945 22 6.65987e+06 215526 500653. 1732.36 2.69 0.207521 0.180342 21970 115934 -1 1763 19 1171 2031 154935 35450 3.26357 3.26357 -110.084 -3.26357 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0243133 0.0211944 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.90 vpr 62.57 MiB -1 -1 0.25 18212 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 969 14724 4160 8401 2163 62.6 MiB 0.14 0.00 3.82038 -130.284 -3.82038 3.82038 0.66 0.000663645 0.000616253 0.0555336 0.0515748 32 2443 23 6.65987e+06 253560 554710. 1919.41 0.85 0.135273 0.119779 22834 132086 -1 2030 19 1209 1753 133147 30661 2.98331 2.98331 -122.095 -2.98331 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0255938 0.0223343 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.98 vpr 62.36 MiB -1 -1 0.19 17612 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.16 1063 16295 4388 9974 1933 62.4 MiB 0.14 0.00 4.27726 -124.126 -4.27726 4.27726 0.73 0.000626724 0.000583149 0.049799 0.0463776 32 2368 21 6.65987e+06 405696 554710. 1919.41 0.88 0.122785 0.108843 22834 132086 -1 2139 23 1457 2604 179250 41684 3.24771 3.24771 -115.163 -3.24771 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282668 0.024576 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.24 vpr 63.07 MiB -1 -1 0.24 18152 1 0.03 -1 -1 30476 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1170 8402 2051 5537 814 63.1 MiB 0.10 0.00 5.08418 -160.146 -5.08418 5.08418 0.67 0.000714367 0.000663981 0.0341353 0.0317017 28 3046 20 6.65987e+06 278916 500653. 1732.36 3.05 0.219994 0.189943 21970 115934 -1 2524 22 1589 2280 166814 38342 4.15751 4.15751 -149.968 -4.15751 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0304105 0.0265602 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.64 vpr 62.78 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1091 17397 4924 9824 2649 62.8 MiB 0.16 0.00 5.003 -142.071 -5.003 5.003 0.66 0.000739374 0.000686382 0.0613591 0.0568856 26 2904 33 6.65987e+06 405696 477104. 1650.88 1.71 0.164721 0.145523 21682 110474 -1 2489 23 1573 2975 231239 53660 4.26683 4.26683 -144.295 -4.26683 0 0 585099. 2024.56 0.16 0.06 0.06 -1 -1 0.16 0.0180466 0.0159777 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.00 vpr 62.87 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30392 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1091 6681 1303 5078 300 62.9 MiB 0.08 0.00 4.26912 -136.659 -4.26912 4.26912 0.66 0.000754003 0.000701039 0.0240421 0.0223432 28 2817 25 6.65987e+06 469086 500653. 1732.36 2.87 0.215349 0.185396 21970 115934 -1 2390 24 1458 2683 207005 46217 3.57931 3.57931 -129.096 -3.57931 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0340417 0.0296463 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.60 vpr 62.07 MiB -1 -1 0.12 18084 1 0.03 -1 -1 30136 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.5 MiB 0.22 870 11106 2831 6524 1751 62.1 MiB 0.10 0.00 3.61906 -110.424 -3.61906 3.61906 0.66 0.000582257 0.000542598 0.0388647 0.0362109 30 1839 21 6.65987e+06 240882 526063. 1820.29 0.79 0.104429 0.0923854 22546 126617 -1 1563 18 819 1314 75712 17626 2.45705 2.45705 -95.6578 -2.45705 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0211244 0.0184545 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 62.71 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30424 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 23.8 MiB 0.25 978 15203 5869 8044 1290 62.7 MiB 0.15 0.00 4.78844 -136.276 -4.78844 4.78844 0.68 0.000714547 0.000662036 0.0633365 0.0587539 30 2196 21 6.65987e+06 266238 526063. 1820.29 2.18 0.226525 0.197633 22546 126617 -1 1952 18 1077 1734 113396 24849 3.37542 3.37542 -122.74 -3.37542 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0269284 0.0236304 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.19 vpr 62.71 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1105 10813 2684 6840 1289 62.7 MiB 0.11 0.00 4.95137 -146.216 -4.95137 4.95137 0.66 0.000691158 0.000643401 0.0411672 0.038313 26 3219 39 6.65987e+06 304272 477104. 1650.88 2.03 0.148146 0.130226 21682 110474 -1 2516 21 1882 2878 255132 54414 3.74651 3.74651 -135.317 -3.74651 0 0 585099. 2024.56 0.17 0.10 0.10 -1 -1 0.17 0.0289725 0.0252912 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.26 vpr 62.71 MiB -1 -1 0.23 18344 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1080 15187 4594 8064 2529 62.7 MiB 0.14 0.00 5.08067 -147.956 -5.08067 5.08067 0.68 0.000690323 0.000641978 0.0532972 0.0495261 32 2590 22 6.65987e+06 354984 554710. 1919.41 0.90 0.139778 0.123739 22834 132086 -1 2166 20 1488 2320 169566 38315 4.27397 4.27397 -141.786 -4.27397 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0274708 0.0240602 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.72 vpr 62.62 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30304 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 23.8 MiB 1.08 986 11433 3001 7531 901 62.6 MiB 0.11 0.00 4.29269 -128.336 -4.29269 4.29269 0.66 0.00072422 0.000672726 0.0420014 0.0390009 32 2266 22 6.65987e+06 393018 554710. 1919.41 0.84 0.127646 0.112067 22834 132086 -1 2030 23 1472 2483 170176 40089 3.01711 3.01711 -114.453 -3.01711 0 0 701300. 2426.64 0.20 0.08 0.08 -1 -1 0.20 0.0320172 0.0278417 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.05 vpr 62.56 MiB -1 -1 0.22 18192 1 0.04 -1 -1 30276 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1063 15273 4695 8692 1886 62.6 MiB 0.16 0.00 4.80469 -139.024 -4.80469 4.80469 0.66 0.000723024 0.000671928 0.0638893 0.0593223 32 2629 23 6.65987e+06 253560 554710. 1919.41 0.90 0.154314 0.137214 22834 132086 -1 2268 18 1507 2677 195261 43968 3.62631 3.62631 -130.943 -3.62631 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0271216 0.0238276 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.09 vpr 62.94 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30324 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.1 MiB 0.33 958 9738 2610 6016 1112 62.9 MiB 0.10 0.00 4.45269 -125.734 -4.45269 4.45269 0.69 0.000725274 0.00067332 0.0373197 0.0346355 32 2235 18 6.65987e+06 367662 554710. 1919.41 0.88 0.119924 0.105395 22834 132086 -1 1952 21 1256 2061 148316 34812 3.04431 3.04431 -110.646 -3.04431 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.029623 0.025813 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.71 vpr 61.92 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.2 MiB 0.18 690 12416 3929 6813 1674 61.9 MiB 0.11 0.00 3.74649 -110.352 -3.74649 3.74649 0.66 0.000557414 0.000519922 0.0427101 0.0398028 30 1513 21 6.65987e+06 190170 526063. 1820.29 1.81 0.169665 0.147737 22546 126617 -1 1376 20 710 1066 67918 15837 2.57525 2.57525 -98.4721 -2.57525 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0222036 0.0193792 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.00 vpr 62.86 MiB -1 -1 0.25 18416 1 0.03 -1 -1 30452 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.23 960 15004 4235 7978 2791 62.9 MiB 0.14 0.00 4.36949 -132.189 -4.36949 4.36949 0.66 0.000723217 0.000671737 0.0535827 0.0497539 32 2280 23 6.65987e+06 380340 554710. 1919.41 0.86 0.14112 0.124742 22834 132086 -1 1948 22 1416 2287 178164 39744 3.46911 3.46911 -125.161 -3.46911 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0315064 0.0274582 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.26 vpr 62.75 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30380 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1050 14907 5385 7856 1666 62.8 MiB 0.16 0.00 4.72838 -146.592 -4.72838 4.72838 0.66 0.000767601 0.000705834 0.0653483 0.0607001 32 2640 43 6.65987e+06 253560 554710. 1919.41 1.03 0.179413 0.158519 22834 132086 -1 2299 33 2450 3980 449977 173095 3.85597 3.85597 -139.592 -3.85597 0 0 701300. 2426.64 0.20 0.19 0.13 -1 -1 0.20 0.0471833 0.0408889 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.39 vpr 62.14 MiB -1 -1 0.19 18088 1 0.02 -1 -1 30540 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.5 MiB 0.22 871 13403 4770 6898 1735 62.1 MiB 0.12 0.00 4.19052 -118.124 -4.19052 4.19052 0.66 0.000595239 0.000554181 0.0452558 0.0421101 30 2034 20 6.65987e+06 240882 526063. 1820.29 2.43 0.188419 0.163712 22546 126617 -1 1822 18 870 1143 89550 19468 2.90751 2.90751 -108.874 -2.90751 0 0 666494. 2306.21 0.21 0.05 0.11 -1 -1 0.21 0.022161 0.0194585 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.72 vpr 61.90 MiB -1 -1 0.19 17784 1 0.03 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.4 MiB 0.14 780 8136 2089 5541 506 61.9 MiB 0.07 0.00 3.80235 -109.245 -3.80235 3.80235 0.66 0.000546806 0.000508808 0.0261836 0.0243519 26 2013 29 6.65987e+06 266238 477104. 1650.88 0.90 0.0984916 0.0861105 21682 110474 -1 1810 21 1146 1877 153537 34871 3.03417 3.03417 -108.934 -3.03417 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0229264 0.0199698 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.75 vpr 63.12 MiB -1 -1 0.20 18232 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1098 14939 3925 8967 2047 63.1 MiB 0.15 0.00 4.99418 -158.194 -4.99418 4.99418 0.66 0.000711839 0.000662152 0.0554973 0.05158 32 2678 24 6.65987e+06 316950 554710. 1919.41 2.57 0.268749 0.233041 22834 132086 -1 2339 18 1657 2174 176709 39281 4.06163 4.06163 -148.702 -4.06163 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0263938 0.0231965 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.48 vpr 62.77 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30268 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 23.8 MiB 0.44 1053 6923 1430 5143 350 62.8 MiB 0.08 0.00 5.07767 -147.587 -5.07767 5.07767 0.73 0.00071308 0.000663365 0.0264607 0.0245818 28 2822 20 6.65987e+06 354984 500653. 1732.36 1.18 0.117784 0.103251 21970 115934 -1 2407 20 1612 2506 187128 43634 4.37417 4.37417 -147.642 -4.37417 0 0 612192. 2118.31 0.18 0.08 0.13 -1 -1 0.18 0.0282845 0.024737 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.07 vpr 62.79 MiB -1 -1 0.19 18004 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1223 15412 3918 10280 1214 62.8 MiB 0.15 0.00 5.24834 -141.684 -5.24834 5.24834 0.68 0.000717618 0.000666659 0.0498032 0.046248 36 2545 28 6.65987e+06 456408 612192. 2118.31 2.92 0.27362 0.237341 23410 145293 -1 2291 25 1470 2785 177956 39538 4.28903 4.28903 -136.112 -4.28903 0 0 782063. 2706.10 0.29 0.06 0.13 -1 -1 0.29 0.0225775 0.0201027 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.53 vpr 62.45 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30364 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.5 MiB 0.30 869 15423 3820 9178 2425 62.4 MiB 0.13 0.00 3.39798 -101.892 -3.39798 3.39798 0.66 0.000636588 0.000592132 0.0492151 0.0457647 32 1975 23 6.65987e+06 393018 554710. 1919.41 2.42 0.232317 0.201206 22834 132086 -1 1791 23 1362 2321 160586 38243 2.69151 2.69151 -98.0771 -2.69151 0 0 701300. 2426.64 0.22 0.04 0.15 -1 -1 0.22 0.016868 0.0148781 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.60 vpr 61.91 MiB -1 -1 0.19 17952 1 0.03 -1 -1 30276 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.12 593 9712 2515 6016 1181 61.9 MiB 0.08 0.00 3.49724 -93.393 -3.49724 3.49724 0.67 0.000414393 0.000381469 0.0306288 0.0283956 28 1575 20 6.65987e+06 266238 500653. 1732.36 0.79 0.09406 0.0824269 21970 115934 -1 1453 18 952 1469 116237 27591 2.84397 2.84397 -94.8985 -2.84397 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0202865 0.017693 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.92 vpr 62.78 MiB -1 -1 0.25 18460 1 0.03 -1 -1 30316 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1325 16572 5545 8395 2632 62.8 MiB 0.18 0.00 4.13297 -134.503 -4.13297 4.13297 0.69 0.000798405 0.000741185 0.0704138 0.0653924 28 3732 33 6.65987e+06 329628 500653. 1732.36 1.64 0.182647 0.161692 21970 115934 -1 2910 22 2032 3461 269192 58352 3.78985 3.78985 -132.845 -3.78985 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0348618 0.0304296 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.69 vpr 62.77 MiB -1 -1 0.20 18220 1 0.03 -1 -1 30452 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 24.0 MiB 0.86 1078 12528 3903 6326 2299 62.8 MiB 0.13 0.00 5.17417 -148.706 -5.17417 5.17417 0.69 0.000721174 0.000670216 0.0514234 0.0477201 32 2682 40 6.65987e+06 266238 554710. 1919.41 1.01 0.153869 0.135224 22834 132086 -1 2210 21 1701 2586 216602 47829 4.53217 4.53217 -149.34 -4.53217 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0297196 0.0259443 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.42 vpr 62.62 MiB -1 -1 0.17 18324 1 0.03 -1 -1 30532 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 331 280 1 175 83 17 17 289 -1 unnamed_device 23.6 MiB 0.85 898 12323 4450 5685 2188 62.6 MiB 0.12 0.00 4.15487 -129.388 -4.15487 4.15487 0.67 0.000666896 0.000619206 0.0481548 0.0447545 32 2292 24 6.65987e+06 240882 554710. 1919.41 0.85 0.128889 0.113815 22834 132086 -1 1956 18 1203 1755 145047 32577 3.35916 3.35916 -129.556 -3.35916 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245635 0.021512 129 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.38 vpr 62.70 MiB -1 -1 0.16 18192 1 0.03 -1 -1 30344 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.6 MiB 0.16 992 12022 3497 7943 582 62.7 MiB 0.13 0.00 4.90813 -126.424 -4.90813 4.90813 0.67 0.000667725 0.0006214 0.0433447 0.0401337 32 2140 22 6.65987e+06 380340 554710. 1919.41 2.49 0.240608 0.207924 22834 132086 -1 1925 21 1081 1806 112206 27790 3.48705 3.48705 -114.539 -3.48705 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0277306 0.0242185 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.83 vpr 62.83 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30504 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1073 18054 5291 10324 2439 62.8 MiB 0.17 0.00 4.77546 -137.042 -4.77546 4.77546 0.70 0.000721607 0.000669232 0.0627811 0.0582997 30 2297 18 6.65987e+06 418374 526063. 1820.29 2.62 0.230184 0.201751 22546 126617 -1 2004 18 1180 1930 120975 26697 3.43717 3.43717 -122.972 -3.43717 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0271053 0.0237882 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.92 vpr 62.52 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30396 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.5 MiB 0.22 995 8073 1820 5530 723 62.5 MiB 0.08 0.00 3.66846 -111.424 -3.66846 3.66846 0.68 0.000653191 0.000606697 0.0273994 0.0254938 32 2372 20 6.65987e+06 393018 554710. 1919.41 0.90 0.104065 0.0910326 22834 132086 -1 2116 20 1245 2125 158081 35731 2.85591 2.85591 -105.849 -2.85591 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0260089 0.0226688 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.48 vpr 63.08 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1081 14713 4410 8000 2303 63.1 MiB 0.15 0.00 4.85897 -149.763 -4.85897 4.85897 0.69 0.000701304 0.000651983 0.0559858 0.0520752 32 3051 39 6.65987e+06 304272 554710. 1919.41 1.11 0.159838 0.140989 22834 132086 -1 2442 22 1985 3010 225131 52194 4.07205 4.07205 -141.281 -4.07205 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0295824 0.0258755 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.62 vpr 62.98 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30076 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1057 18773 5404 10789 2580 63.0 MiB 0.13 0.00 4.57498 -141.429 -4.57498 4.57498 0.68 0.00074407 0.000691177 0.042258 0.0387667 26 2887 23 6.65987e+06 431052 477104. 1650.88 2.38 0.215896 0.186845 21682 110474 -1 2397 18 1290 2019 146660 33279 3.71257 3.71257 -132.431 -3.71257 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0322214 0.0285523 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.67 vpr 62.16 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30484 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 269 229 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.12 522 12528 3273 8240 1015 62.2 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 0.66 0.000572199 0.000532433 0.0451911 0.042036 32 1502 24 6.65987e+06 215526 554710. 1919.41 0.80 0.115565 0.102085 22834 132086 -1 1376 20 919 1272 108408 25987 3.03537 3.03537 -98.5881 -3.03537 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0229538 0.0200102 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.31 vpr 62.79 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30344 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.8 MiB 0.24 859 7770 1621 5832 317 62.8 MiB 0.08 0.00 4.1395 -122.394 -4.1395 4.1395 0.67 0.000482624 0.000441846 0.0268299 0.0248218 26 2383 37 6.65987e+06 253560 477104. 1650.88 2.34 0.184491 0.158637 21682 110474 -1 1928 23 1312 1714 141396 32487 3.37517 3.37517 -120.213 -3.37517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0280413 0.0243193 117 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.85 MiB -1 -1 0.21 18180 1 0.03 -1 -1 30384 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1006 6364 1268 4717 379 62.9 MiB 0.07 0.00 4.54692 -120.859 -4.54692 4.54692 0.66 0.000658506 0.000610641 0.0206399 0.0192138 26 2479 25 6.65987e+06 469086 477104. 1650.88 0.90 0.0904621 0.079103 21682 110474 -1 2227 21 1387 2520 179851 42241 4.07611 4.07611 -126.277 -4.07611 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0278836 0.0243747 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.84 vpr 62.18 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30276 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.5 MiB 0.21 903 9516 2433 6273 810 62.2 MiB 0.09 0.00 4.23586 -115.879 -4.23586 4.23586 0.66 0.00048026 0.000440763 0.0319083 0.0296981 26 2151 21 6.65987e+06 266238 477104. 1650.88 1.01 0.0998604 0.0877249 21682 110474 -1 1944 20 976 1248 91213 21369 3.19091 3.19091 -109.113 -3.19091 0 0 585099. 2024.56 0.17 0.06 0.12 -1 -1 0.17 0.022493 0.0195915 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.81 vpr 62.21 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.6 MiB 0.16 840 12980 3474 8543 963 62.2 MiB 0.11 0.00 3.73708 -117.005 -3.73708 3.73708 0.77 0.000598588 0.000556921 0.0471544 0.0438906 32 2020 18 6.65987e+06 202848 554710. 1919.41 0.83 0.114841 0.101791 22834 132086 -1 1831 23 1462 2541 202733 45407 2.67845 2.67845 -105.711 -2.67845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0264113 0.0229324 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.89 vpr 62.80 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30396 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 23.9 MiB 0.26 932 18098 5272 9901 2925 62.8 MiB 0.16 0.00 4.00372 -119.439 -4.00372 4.00372 0.75 0.000722305 0.000670399 0.0610117 0.0566315 32 2122 19 6.65987e+06 443730 554710. 1919.41 2.57 0.256161 0.22266 22834 132086 -1 1876 20 1378 2071 131991 31106 2.96231 2.96231 -109.45 -2.96231 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0291599 0.0257245 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.23 vpr 62.22 MiB -1 -1 0.20 17980 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 265 230 1 164 82 17 17 289 -1 unnamed_device 23.6 MiB 0.23 729 5422 1011 4209 202 62.2 MiB 0.06 0.00 3.89447 -116.94 -3.89447 3.89447 0.71 0.000572748 0.000533802 0.0194501 0.0181287 30 1860 22 6.65987e+06 240882 526063. 1820.29 2.31 0.14876 0.127738 22546 126617 -1 1574 17 803 1153 64453 16278 2.86137 2.86137 -106.867 -2.86137 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0203347 0.0178089 110 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.16 vpr 62.79 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30196 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.7 MiB 0.40 979 15863 4619 8770 2474 62.8 MiB 0.14 0.00 3.70512 -117.413 -3.70512 3.70512 0.67 0.000689793 0.000640834 0.053436 0.0496426 28 2333 21 6.65987e+06 393018 500653. 1732.36 0.96 0.136089 0.120555 21970 115934 -1 2040 22 1270 2188 155426 34369 2.66551 2.66551 -108.604 -2.66551 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0351114 0.0305694 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.50 vpr 62.84 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30284 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.0 MiB 0.75 976 17159 4932 10231 1996 62.8 MiB 0.15 0.00 4.34696 -137.767 -4.34696 4.34696 0.67 0.000744133 0.000690497 0.0617451 0.057313 32 2285 23 6.65987e+06 405696 554710. 1919.41 0.85 0.151265 0.133989 22834 132086 -1 1959 19 1321 1855 128822 30635 3.45123 3.45123 -134.419 -3.45123 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0286514 0.0250679 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 62.36 MiB -1 -1 0.22 17940 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.5 MiB 0.33 668 7781 1699 5777 305 62.4 MiB 0.08 0.00 3.26384 -99.5047 -3.26384 3.26384 0.71 0.000621765 0.000578209 0.0297913 0.0276855 28 2035 27 6.65987e+06 215526 500653. 1732.36 1.06 0.11092 0.0969462 21970 115934 -1 1594 20 943 1429 115173 27681 2.87391 2.87391 -102.619 -2.87391 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0247859 0.0215885 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.98 vpr 62.20 MiB -1 -1 0.22 17956 1 0.02 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 794 6203 1260 4522 421 62.2 MiB 0.07 0.00 4.22769 -129.19 -4.22769 4.22769 0.72 0.000615982 0.000572738 0.0232717 0.0216618 28 2478 30 6.65987e+06 240882 500653. 1732.36 1.03 0.0974603 0.0850016 21970 115934 -1 2072 18 1317 1923 149105 37380 3.16031 3.16031 -121.312 -3.16031 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0227618 0.0198998 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.10 vpr 62.65 MiB -1 -1 0.24 18364 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.19 982 13505 4715 6575 2215 62.6 MiB 0.13 0.00 4.5425 -135.474 -4.5425 4.5425 0.74 0.000657123 0.000610447 0.04922 0.0457271 32 2569 24 6.65987e+06 278916 554710. 1919.41 0.88 0.130632 0.115553 22834 132086 -1 2078 23 1533 2145 153331 36456 3.62971 3.62971 -124.599 -3.62971 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0295048 0.0257606 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.04 vpr 62.49 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30116 -1 -1 28 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.5 MiB 0.41 892 10583 2559 7230 794 62.5 MiB 0.10 0.00 4.50014 -117.225 -4.50014 4.50014 0.65 0.000652318 0.000606564 0.0371529 0.0345546 32 2068 20 6.65987e+06 354984 554710. 1919.41 0.82 0.114506 0.100734 22834 132086 -1 1836 19 911 1491 100749 23800 3.02731 3.02731 -105.23 -3.02731 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0253089 0.0221463 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 7.26 vpr 62.52 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 23.9 MiB 0.35 1106 7767 1737 5626 404 62.5 MiB 0.10 0.00 5.13083 -160.454 -5.13083 5.13083 0.65 0.000757533 0.000704214 0.033697 0.0313447 28 2891 50 6.65987e+06 291594 500653. 1732.36 4.05 0.28538 0.246262 21970 115934 -1 2428 22 1669 2470 189430 43116 4.20151 4.20151 -148.34 -4.20151 0 0 612192. 2118.31 0.19 0.10 0.08 -1 -1 0.19 0.0375344 0.0330753 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.70 vpr 61.76 MiB -1 -1 0.22 17756 1 0.03 -1 -1 30264 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63240 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.1 MiB 0.14 592 6556 1291 4488 777 61.8 MiB 0.05 0.00 3.5592 -94.6383 -3.5592 3.5592 0.66 0.000524378 0.000488364 0.0215942 0.0201134 32 1586 18 6.65987e+06 228204 554710. 1919.41 0.84 0.0820574 0.0716709 22834 132086 -1 1290 19 727 1139 67522 18762 2.64351 2.64351 -91.6369 -2.64351 0 0 701300. 2426.64 0.20 0.05 0.13 -1 -1 0.20 0.0207792 0.0181492 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.72 vpr 62.99 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1151 14083 3602 8814 1667 63.0 MiB 0.14 0.00 4.1637 -141.581 -4.1637 4.1637 0.70 0.000770978 0.000715654 0.0518304 0.0480963 26 2790 35 6.65987e+06 418374 477104. 1650.88 1.50 0.16488 0.145176 21682 110474 -1 2446 21 1740 2547 209902 46025 3.82177 3.82177 -144.768 -3.82177 0 0 585099. 2024.56 0.17 0.09 0.07 -1 -1 0.17 0.0320816 0.0280067 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.94 vpr 62.64 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.7 MiB 0.25 838 12464 4352 6338 1774 62.6 MiB 0.10 0.00 3.54047 -123.895 -3.54047 3.54047 0.74 0.000710915 0.000660473 0.041748 0.0386827 30 1878 23 6.65987e+06 202848 526063. 1820.29 0.83 0.127732 0.112317 22546 126617 -1 1542 22 1226 1790 98805 26832 2.87877 2.87877 -118.928 -2.87877 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0376697 0.0331185 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.32 vpr 62.64 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.6 MiB 0.35 983 16079 4676 8844 2559 62.6 MiB 0.14 0.00 4.19332 -128.664 -4.19332 4.19332 0.67 0.000711502 0.000660195 0.0555008 0.05152 32 2255 22 6.65987e+06 393018 554710. 1919.41 0.85 0.14076 0.124689 22834 132086 -1 1913 18 945 1398 91740 22097 3.08831 3.08831 -113.899 -3.08831 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0263516 0.0230907 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.25 vpr 62.55 MiB -1 -1 0.24 18300 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1359 11969 3395 7471 1103 62.5 MiB 0.15 0.00 6.16929 -186.366 -6.16929 6.16929 0.67 0.000777118 0.000722055 0.049836 0.0463502 30 3247 30 6.65987e+06 316950 526063. 1820.29 0.94 0.151504 0.133594 22546 126617 -1 2548 18 1419 2069 117302 27620 4.70482 4.70482 -164.568 -4.70482 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0259926 0.0230397 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.66 vpr 61.88 MiB -1 -1 0.21 17996 1 0.02 -1 -1 30160 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.1 MiB 0.20 745 9881 2719 6136 1026 61.9 MiB 0.08 0.00 3.31307 -103.296 -3.31307 3.31307 0.66 0.000500328 0.000465663 0.0308964 0.0287698 30 1522 19 6.65987e+06 215526 526063. 1820.29 1.77 0.14317 0.123892 22546 126617 -1 1344 14 542 690 48805 11023 2.16777 2.16777 -89.6123 -2.16777 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0154461 0.0135755 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.75 vpr 62.16 MiB -1 -1 0.23 18012 1 0.03 -1 -1 30404 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.6 MiB 0.15 602 12196 3365 6955 1876 62.2 MiB 0.10 0.00 3.90063 -110.636 -3.90063 3.90063 0.68 0.000597987 0.000556361 0.0459601 0.0427385 30 1518 19 6.65987e+06 202848 526063. 1820.29 0.79 0.115422 0.102154 22546 126617 -1 1262 17 645 1082 59268 14532 2.86471 2.86471 -99.436 -2.86471 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.021458 0.0187713 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.16 vpr 62.33 MiB -1 -1 0.22 18028 1 0.03 -1 -1 30108 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.13 882 9385 2433 6375 577 62.3 MiB 0.09 0.00 3.38183 -110.848 -3.38183 3.38183 0.67 0.00061799 0.000574051 0.0330518 0.0306884 26 2388 28 6.65987e+06 266238 477104. 1650.88 1.31 0.113634 0.0994382 21682 110474 -1 2044 21 1367 2481 205189 45540 2.74151 2.74151 -112.085 -2.74151 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0257234 0.0223307 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.85 vpr 61.84 MiB -1 -1 0.19 17912 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.1 MiB 0.12 451 9966 3308 4450 2208 61.8 MiB 0.07 0.00 3.08755 -72.8894 -3.08755 3.08755 0.67 0.000479244 0.000445411 0.027257 0.0253137 30 1266 42 6.65987e+06 342306 526063. 1820.29 0.96 0.0989247 0.0862206 22546 126617 -1 972 64 992 2005 378014 232494 3.12459 3.12459 -67.2426 -3.12459 0 0 666494. 2306.21 0.19 0.17 0.12 -1 -1 0.19 0.0498269 0.0425325 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.98 vpr 62.79 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1057 14724 4445 8208 2071 62.8 MiB 0.16 0.00 3.92752 -127.443 -3.92752 3.92752 0.66 0.000728069 0.000676523 0.0640695 0.0594564 32 2593 23 6.65987e+06 253560 554710. 1919.41 0.86 0.151756 0.134585 22834 132086 -1 2333 21 1449 2571 195752 43834 3.59845 3.59845 -126.517 -3.59845 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0301388 0.0263272 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.60 vpr 62.76 MiB -1 -1 0.25 18236 1 0.03 -1 -1 30280 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 23.9 MiB 0.36 971 8856 1873 6469 514 62.8 MiB 0.10 0.00 4.32075 -139.202 -4.32075 4.32075 0.66 0.00077141 0.000715886 0.0336871 0.0312435 30 2154 18 6.65987e+06 418374 526063. 1820.29 2.38 0.201117 0.174722 22546 126617 -1 1832 18 1023 1581 85815 20192 3.08137 3.08137 -119.737 -3.08137 0 0 666494. 2306.21 0.25 0.06 0.09 -1 -1 0.25 0.0285435 0.0250344 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.74 vpr 63.63 MiB -1 -1 0.16 18236 1 0.03 -1 -1 30036 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 354 285 1 194 77 17 17 289 -1 unnamed_device 24.9 MiB 2.46 819 9531 4011 5172 348 63.6 MiB 0.09 0.00 5.3162 -155.272 -5.3162 5.3162 0.70 0.000709654 0.000658433 0.044232 0.0411095 46 2487 41 6.95648e+06 188184 828058. 2865.25 3.34 0.215474 0.188142 28066 200906 -1 2026 23 1583 2386 227929 54567 4.62211 4.62211 -154.484 -4.62211 0 0 1.01997e+06 3529.29 0.29 0.09 0.18 -1 -1 0.29 0.0271167 0.0239016 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.47 vpr 63.48 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30540 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65008 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 24.5 MiB 2.53 826 11487 4560 5338 1589 63.5 MiB 0.11 0.00 4.55677 -137.33 -4.55677 4.55677 0.72 0.000715299 0.000658954 0.0524854 0.0487719 38 2540 31 6.95648e+06 217135 678818. 2348.85 3.93 0.285493 0.246882 26626 170182 -1 2182 20 1894 2678 218279 46479 4.51791 4.51791 -149.379 -4.51791 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0286476 0.0250469 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.53 vpr 63.09 MiB -1 -1 0.18 18448 1 0.03 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.5 MiB 1.25 827 10726 4133 5228 1365 63.1 MiB 0.09 0.00 3.76045 -118.752 -3.76045 3.76045 0.68 0.00048374 0.000441662 0.034017 0.0312821 40 2554 26 6.95648e+06 217135 706193. 2443.58 4.46 0.261354 0.224739 26914 176310 -1 2163 23 1577 2193 187964 39693 3.66072 3.66072 -127.257 -3.66072 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0281595 0.0245189 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.25 vpr 63.26 MiB -1 -1 0.23 18264 1 0.03 -1 -1 30312 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.3 MiB 0.36 723 14356 5004 7145 2207 63.3 MiB 0.11 0.00 4.16078 -115.782 -4.16078 4.16078 0.68 0.000629934 0.000585159 0.0554285 0.0515678 38 2210 49 6.95648e+06 275038 678818. 2348.85 1.99 0.204853 0.178595 26626 170182 -1 1597 21 1480 2455 149686 39777 4.58586 4.58586 -129.262 -4.58586 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0266722 0.0232251 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.34 vpr 63.31 MiB -1 -1 0.24 18104 1 0.03 -1 -1 30444 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.4 MiB 0.78 725 12292 5111 6719 462 63.3 MiB 0.10 0.00 4.31509 -131.389 -4.31509 4.31509 0.68 0.000668524 0.000617501 0.0505118 0.0468024 44 2628 39 6.95648e+06 231611 787024. 2723.27 2.59 0.159568 0.140114 27778 195446 -1 2002 22 1473 2461 206209 45810 4.63321 4.63321 -144.751 -4.63321 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0296159 0.0257954 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.62 vpr 63.54 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 780 12919 4595 6436 1888 63.5 MiB 0.12 0.00 3.0405 -114.196 -3.0405 3.0405 0.68 0.000728425 0.00067592 0.0527007 0.0489595 40 2350 24 6.95648e+06 303989 706193. 2443.58 2.48 0.198567 0.173849 26914 176310 -1 1993 23 1558 2361 235074 50536 3.23447 3.23447 -122.866 -3.23447 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.032028 0.0278731 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.89 vpr 62.71 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30768 -1 -1 14 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 27 32 259 221 1 127 73 17 17 289 -1 unnamed_device 24.0 MiB 4.70 438 12233 4755 5541 1937 62.7 MiB 0.09 0.00 3.56899 -93.4053 -3.56899 3.56899 0.67 0.000553567 0.000515629 0.0465873 0.0434014 38 1424 22 6.95648e+06 202660 678818. 2348.85 3.31 0.209846 0.181435 26626 170182 -1 1077 17 761 1211 79644 18967 2.87042 2.87042 -93.9521 -2.87042 0 0 902133. 3121.57 0.23 0.05 0.18 -1 -1 0.23 0.0198549 0.0173408 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.65 vpr 62.90 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.3 MiB 0.43 651 12373 4268 5547 2558 62.9 MiB 0.09 0.00 2.95842 -91.5041 -2.95842 2.95842 0.78 0.000590199 0.000548667 0.0397507 0.0369183 46 2209 26 6.95648e+06 361892 828058. 2865.25 4.12 0.215651 0.18616 28066 200906 -1 1528 20 1024 1644 126340 29774 2.98497 2.98497 -95.951 -2.98497 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0237975 0.0208056 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 7.16 vpr 63.12 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.3 MiB 1.90 588 11234 4630 5959 645 63.1 MiB 0.10 0.00 3.43049 -116.456 -3.43049 3.43049 0.71 0.000637389 0.000591699 0.0486868 0.045274 46 2138 37 6.95648e+06 159232 828058. 2865.25 2.24 0.192341 0.16737 28066 200906 -1 1613 22 1267 1771 130611 31469 3.99756 3.99756 -128.928 -3.99756 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0272846 0.0237506 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.96 vpr 62.94 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30120 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 1.21 622 12629 5382 6987 260 62.9 MiB 0.11 0.00 3.30928 -114.751 -3.30928 3.30928 0.68 0.000638996 0.000595039 0.0535673 0.0498915 38 2059 36 6.95648e+06 144757 678818. 2348.85 1.90 0.171042 0.149877 26626 170182 -1 1539 21 1266 1783 148265 33150 3.14982 3.14982 -124.237 -3.14982 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0260731 0.0227467 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.09 vpr 63.03 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.5 MiB 1.68 499 7824 2588 3808 1428 63.0 MiB 0.07 0.00 3.43453 -102.152 -3.43453 3.43453 0.68 0.000611911 0.00056893 0.0332624 0.0309493 38 1752 37 6.95648e+06 173708 678818. 2348.85 1.59 0.148455 0.12892 26626 170182 -1 1326 21 1069 1514 115939 26552 3.07902 3.07902 -108.714 -3.07902 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0254112 0.0220926 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.12 vpr 62.91 MiB -1 -1 0.15 18044 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 1.45 641 8754 2760 4259 1735 62.9 MiB 0.08 0.00 3.28034 -110.937 -3.28034 3.28034 0.70 0.000713275 0.000664019 0.037778 0.035156 54 1307 45 6.95648e+06 144757 949917. 3286.91 4.54 0.232753 0.200554 29506 232905 -1 1088 22 1149 1563 98323 25859 2.96467 2.96467 -103.236 -2.96467 0 0 1.17392e+06 4061.99 0.41 0.06 0.20 -1 -1 0.41 0.0232038 0.0205418 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.43 vpr 63.57 MiB -1 -1 0.21 18124 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.90 907 9881 2634 5845 1402 63.6 MiB 0.10 0.00 3.82352 -130.458 -3.82352 3.82352 0.74 0.000698839 0.000649248 0.0429732 0.0399656 38 2955 44 6.95648e+06 217135 678818. 2348.85 3.51 0.206402 0.179515 26626 170182 -1 2316 23 2013 2995 290641 58279 3.44857 3.44857 -130.713 -3.44857 0 0 902133. 3121.57 0.23 0.12 0.15 -1 -1 0.23 0.0346146 0.0302154 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.19 vpr 63.43 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.5 MiB 0.83 823 10481 3378 5508 1595 63.4 MiB 0.09 0.00 4.48063 -137.796 -4.48063 4.48063 0.70 0.000708621 0.000657955 0.0417475 0.0387804 38 2517 26 6.95648e+06 318465 678818. 2348.85 2.42 0.188304 0.163806 26626 170182 -1 2065 20 1719 2505 231981 47305 4.15356 4.15356 -139.943 -4.15356 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0284899 0.0248684 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.96 vpr 62.71 MiB -1 -1 0.22 18056 1 0.03 -1 -1 30372 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.0 MiB 1.19 466 9684 3087 4807 1790 62.7 MiB 0.07 0.00 3.10275 -86.0216 -3.10275 3.10275 0.67 0.000539984 0.000502688 0.0357213 0.0332789 48 1264 25 6.95648e+06 188184 865456. 2994.66 1.92 0.14486 0.125793 28354 207349 -1 1002 19 851 1266 84217 21946 2.96287 2.96287 -87.8543 -2.96287 0 0 1.05005e+06 3633.38 0.31 0.05 0.18 -1 -1 0.31 0.0208811 0.0181847 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.10 vpr 63.37 MiB -1 -1 0.25 18356 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 370 297 1 181 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 775 13906 5829 7750 327 63.4 MiB 0.13 0.00 3.1265 -114.361 -3.1265 3.1265 0.68 0.000721187 0.000669412 0.0600526 0.0557428 46 2312 37 6.95648e+06 246087 828058. 2865.25 3.99 0.293183 0.253911 28066 200906 -1 1900 23 1616 2552 220573 47117 3.02787 3.02787 -121.71 -3.02787 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.032198 0.0280316 77 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.78 vpr 63.36 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.4 MiB 1.92 747 12528 4608 6627 1293 63.4 MiB 0.11 0.00 4.17585 -130.558 -4.17585 4.17585 0.68 0.000687123 0.000639395 0.0543244 0.050577 46 2096 24 6.95648e+06 202660 828058. 2865.25 3.89 0.23537 0.204415 28066 200906 -1 1698 20 1513 2085 141000 32945 3.32147 3.32147 -122.644 -3.32147 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0278954 0.024418 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.62 vpr 62.84 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30300 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.3 MiB 0.85 713 11777 5007 6577 193 62.8 MiB 0.10 0.00 2.30911 -96.9749 -2.30911 2.30911 0.80 0.000648996 0.00060292 0.0523159 0.0485951 42 2008 47 6.95648e+06 130281 744469. 2576.02 3.72 0.271151 0.234539 27202 183097 -1 1664 19 1187 1768 172968 35245 2.45543 2.45543 -102.494 -2.45543 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.024973 0.0217825 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.69 vpr 62.63 MiB -1 -1 0.19 17984 1 0.03 -1 -1 30156 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 24.1 MiB 0.33 461 10800 4629 5825 346 62.6 MiB 0.07 0.00 2.11601 -78.0433 -2.11601 2.11601 0.69 0.000378959 0.000347362 0.0309402 0.0285027 36 1696 29 6.95648e+06 144757 648988. 2245.63 1.58 0.117287 0.101735 26050 158493 -1 1260 21 811 1065 112554 24104 2.46628 2.46628 -87.3645 -2.46628 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0203372 0.0176099 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 9.27 vpr 63.10 MiB -1 -1 0.19 17988 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.5 MiB 2.59 809 7343 1906 5018 419 63.1 MiB 0.07 0.00 4.085 -135.532 -4.085 4.085 0.68 0.000609628 0.000566983 0.0305804 0.0285033 44 2187 26 6.95648e+06 173708 787024. 2723.27 3.77 0.220693 0.189734 27778 195446 -1 1736 22 1322 1829 185746 37640 3.73872 3.73872 -136.557 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0268868 0.0234433 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.17 vpr 63.55 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30384 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.69 652 8868 3175 4368 1325 63.5 MiB 0.08 0.00 3.70824 -121.183 -3.70824 3.70824 0.68 0.000693694 0.000643182 0.035732 0.0332077 48 2269 44 6.95648e+06 289514 865456. 2994.66 4.46 0.272216 0.234105 28354 207349 -1 1729 29 1974 2701 205341 50308 3.95661 3.95661 -131.137 -3.95661 0 0 1.05005e+06 3633.38 0.28 0.10 0.18 -1 -1 0.28 0.0369102 0.0320076 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.46 vpr 63.53 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.6 MiB 1.44 829 13358 4003 7025 2330 63.5 MiB 0.12 0.00 4.7576 -136.611 -4.7576 4.7576 0.68 0.000729855 0.00067885 0.0608405 0.056569 44 2997 48 6.95648e+06 202660 787024. 2723.27 3.01 0.218345 0.190341 27778 195446 -1 2084 21 1653 2584 243814 51380 4.29321 4.29321 -133.404 -4.29321 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0302827 0.0264641 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.69 vpr 62.49 MiB -1 -1 0.21 18032 1 0.02 -1 -1 30712 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.9 MiB 0.80 312 9123 3841 4664 618 62.5 MiB 0.06 0.00 2.23646 -64.6952 -2.23646 2.23646 0.68 0.000426061 0.000396126 0.0281445 0.0261689 38 1021 24 6.95648e+06 188184 678818. 2348.85 3.08 0.144696 0.124663 26626 170182 -1 768 19 550 671 50390 13315 2.25003 2.25003 -68.1429 -2.25003 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0166883 0.0145193 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.81 vpr 62.86 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.3 MiB 0.73 670 9543 3158 4645 1740 62.9 MiB 0.08 0.00 4.56626 -117.316 -4.56626 4.56626 0.68 0.000622356 0.000578904 0.0366523 0.034076 44 2267 26 6.95648e+06 217135 787024. 2723.27 4.21 0.25385 0.218815 27778 195446 -1 1602 28 1448 2388 179421 40665 4.06956 4.06956 -122.295 -4.06956 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0328755 0.0285831 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.48 MiB -1 -1 0.20 17500 1 0.02 -1 -1 29996 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.0 MiB 0.27 406 9906 4161 5525 220 62.5 MiB 0.06 0.00 2.18146 -70.2596 -2.18146 2.18146 0.68 0.000419734 0.000389296 0.029408 0.0273142 36 1318 31 6.95648e+06 115805 648988. 2245.63 1.54 0.117127 0.101713 26050 158493 -1 1010 18 647 699 71573 16854 1.96208 1.96208 -75.5094 -1.96208 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0155425 0.0135729 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.73 vpr 63.00 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30196 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.93 867 11740 4903 6637 200 63.0 MiB 0.10 0.00 4.50901 -127.255 -4.50901 4.50901 0.68 0.000644671 0.000599416 0.0460959 0.0428346 36 2734 50 6.95648e+06 217135 648988. 2245.63 2.83 0.172196 0.150293 26050 158493 -1 2155 20 1396 2160 208644 41889 3.98106 3.98106 -131.601 -3.98106 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0254251 0.0222 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.69 vpr 63.18 MiB -1 -1 0.12 17668 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.52 712 11989 4478 6107 1404 63.2 MiB 0.10 0.00 3.03146 -100.511 -3.03146 3.03146 0.67 0.000638459 0.000593053 0.0433936 0.0403492 46 2233 44 6.95648e+06 303989 828058. 2865.25 2.33 0.190094 0.165188 28066 200906 -1 1723 26 1313 2128 175152 40900 3.55217 3.55217 -109.828 -3.55217 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0319544 0.0278781 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.56 vpr 63.32 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30104 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.4 MiB 0.85 860 15023 4398 9616 1009 63.3 MiB 0.13 0.00 4.41913 -133.119 -4.41913 4.41913 0.68 0.000675391 0.000627273 0.0591097 0.0549262 38 2706 45 6.95648e+06 275038 678818. 2348.85 3.75 0.221344 0.193321 26626 170182 -1 2154 21 1310 2015 173114 35307 4.12462 4.12462 -134.554 -4.12462 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0283127 0.0247265 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.71 vpr 62.89 MiB -1 -1 0.24 17956 1 0.04 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.4 MiB 0.92 767 12319 3787 7504 1028 62.9 MiB 0.10 0.00 3.08875 -100.244 -3.08875 3.08875 0.73 0.00059937 0.000557565 0.0499065 0.0464519 36 2179 25 6.95648e+06 144757 648988. 2245.63 1.86 0.150333 0.131943 26050 158493 -1 1893 26 1241 1927 262841 76248 3.09632 3.09632 -116.758 -3.09632 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0299065 0.0259115 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.43 vpr 62.86 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30240 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.2 MiB 0.26 475 11260 3973 5458 1829 62.9 MiB 0.08 0.00 3.16808 -92.8265 -3.16808 3.16808 0.68 0.000564051 0.000524537 0.0389143 0.0361903 44 1432 26 6.95648e+06 260562 787024. 2723.27 3.20 0.207604 0.178811 27778 195446 -1 1134 17 848 1167 93380 23187 2.80357 2.80357 -95.1145 -2.80357 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0199886 0.0174729 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 10.00 vpr 62.79 MiB -1 -1 0.19 17892 1 0.03 -1 -1 30124 -1 -1 16 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.0 MiB 0.66 455 10956 4555 5743 658 62.8 MiB 0.08 0.00 2.9612 -88.8951 -2.9612 2.9612 0.68 0.000557468 0.000518656 0.0400597 0.0373011 42 2122 48 6.95648e+06 231611 744469. 2576.02 6.58 0.286888 0.245901 27202 183097 -1 1442 25 1194 1858 160235 42971 3.50502 3.50502 -109.827 -3.50502 0 0 949917. 3286.91 0.24 0.07 0.16 -1 -1 0.24 0.0265005 0.0229063 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.40 vpr 62.86 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30284 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 491 8909 2535 4509 1865 62.9 MiB 0.07 0.00 3.37459 -106.336 -3.37459 3.37459 0.68 0.000565905 0.000527121 0.0344558 0.0321067 46 1610 43 6.95648e+06 144757 828058. 2865.25 2.07 0.14877 0.129371 28066 200906 -1 1141 21 1110 1592 118853 30138 2.98182 2.98182 -106.207 -2.98182 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0238834 0.0208271 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 7.94 vpr 62.75 MiB -1 -1 0.24 18076 1 0.03 -1 -1 30440 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.3 MiB 0.39 517 10050 3590 5083 1377 62.8 MiB 0.08 0.00 3.16008 -98.5956 -3.16008 3.16008 0.68 0.000583343 0.000541615 0.0350099 0.0324416 46 1828 33 6.95648e+06 275038 828058. 2865.25 4.62 0.240235 0.206473 28066 200906 -1 1325 20 1000 1423 100826 24947 2.88667 2.88667 -102.534 -2.88667 0 0 1.01997e+06 3529.29 0.26 0.06 0.18 -1 -1 0.26 0.0232453 0.0202201 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.79 vpr 62.93 MiB -1 -1 0.14 17872 1 0.03 -1 -1 30428 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.4 MiB 1.14 526 12233 5235 6327 671 62.9 MiB 0.10 0.00 2.76945 -94.9274 -2.76945 2.76945 0.68 0.000600035 0.000557295 0.0508569 0.0473413 46 1830 25 6.95648e+06 173708 828058. 2865.25 3.68 0.231754 0.200338 28066 200906 -1 1340 28 1257 1662 129919 31591 2.60472 2.60472 -98.1873 -2.60472 0 0 1.01997e+06 3529.29 0.30 0.08 0.20 -1 -1 0.30 0.0310046 0.0267781 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.57 vpr 63.62 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.81 844 13477 4316 6348 2813 63.6 MiB 0.12 0.00 4.03548 -120.669 -4.03548 4.03548 0.69 0.000707531 0.000654318 0.0554105 0.0514807 46 2351 36 6.95648e+06 303989 828058. 2865.25 3.69 0.28583 0.247837 28066 200906 -1 1961 21 1464 2405 158336 35632 3.55741 3.55741 -119.762 -3.55741 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0312917 0.0275339 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.83 vpr 63.60 MiB -1 -1 0.20 18256 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.6 MiB 1.02 735 14323 5482 6766 2075 63.6 MiB 0.12 0.00 3.31218 -116.99 -3.31218 3.31218 0.67 0.000758952 0.000704593 0.0584552 0.0541098 40 2585 27 6.95648e+06 347416 706193. 2443.58 2.85 0.212916 0.185913 26914 176310 -1 2126 25 2009 2860 289316 68222 3.46607 3.46607 -130.304 -3.46607 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0370758 0.0323971 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.30 vpr 63.07 MiB -1 -1 0.23 18336 1 0.03 -1 -1 30168 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.5 MiB 1.88 758 6739 2921 3632 186 63.1 MiB 0.06 0.00 3.81132 -121.219 -3.81132 3.81132 0.73 0.000533767 0.00049448 0.0276855 0.0257573 46 1839 22 6.95648e+06 159232 828058. 2865.25 2.26 0.143674 0.124518 28066 200906 -1 1596 21 1281 1828 170670 34985 3.07146 3.07146 -114.319 -3.07146 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0262719 0.0230108 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 15.40 vpr 63.48 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.6 MiB 0.78 729 11233 3391 5862 1980 63.5 MiB 0.10 0.00 3.75886 -121.815 -3.75886 3.75886 0.68 0.000720383 0.000669546 0.0505666 0.0470276 38 2698 33 6.95648e+06 231611 678818. 2348.85 11.67 0.363905 0.313603 26626 170182 -1 1828 23 1676 2491 201615 44808 3.27527 3.27527 -123.878 -3.27527 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0321258 0.0279896 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.45 vpr 63.66 MiB -1 -1 0.25 18200 1 0.04 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.8 MiB 2.28 959 13092 5556 7054 482 63.7 MiB 0.12 0.00 5.39406 -167.083 -5.39406 5.39406 0.69 0.000724175 0.00067193 0.0590623 0.0548662 48 3474 43 6.95648e+06 231611 865456. 2994.66 3.05 0.203473 0.178156 28354 207349 -1 2550 22 2362 3403 359700 76627 5.202 5.202 -178.576 -5.202 0 0 1.05005e+06 3633.38 0.27 0.12 0.18 -1 -1 0.27 0.0319154 0.0279568 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.98 vpr 63.56 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.16 981 12754 4946 6110 1698 63.6 MiB 0.12 0.00 4.59684 -149.382 -4.59684 4.59684 0.68 0.000741252 0.000688897 0.0589457 0.0548265 36 3190 46 6.95648e+06 231611 648988. 2245.63 4.94 0.235837 0.206149 26050 158493 -1 2735 23 1939 2833 326579 63459 4.72741 4.72741 -168.365 -4.72741 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.033194 0.0289822 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.52 vpr 63.52 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30480 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.7 MiB 1.28 767 14407 6066 7718 623 63.5 MiB 0.12 0.00 4.14668 -131.95 -4.14668 4.14668 0.69 0.000694253 0.000644759 0.0564981 0.0524603 52 2459 42 6.95648e+06 318465 926341. 3205.33 5.17 0.29259 0.253278 29218 227130 -1 1811 19 1226 1800 153757 33931 4.09161 4.09161 -126.162 -4.09161 0 0 1.14541e+06 3963.36 0.29 0.07 0.20 -1 -1 0.29 0.0268157 0.0235022 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 8.09 vpr 63.05 MiB -1 -1 0.23 17848 1 0.03 -1 -1 30364 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.4 MiB 1.20 753 10868 4524 5937 407 63.0 MiB 0.09 0.00 4.07128 -116.522 -4.07128 4.07128 0.68 0.000607781 0.000563334 0.0423906 0.039342 44 2347 31 6.95648e+06 202660 787024. 2723.27 4.02 0.224627 0.194041 27778 195446 -1 1806 18 1164 1671 125166 29610 3.71072 3.71072 -118.558 -3.71072 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0231018 0.0202011 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.72 vpr 63.79 MiB -1 -1 0.21 18468 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 24.9 MiB 1.60 869 9725 2505 5543 1677 63.8 MiB 0.10 0.00 4.71507 -153.199 -4.71507 4.71507 0.65 0.000859818 0.000799262 0.0476998 0.0443551 58 2296 31 6.95648e+06 318465 997811. 3452.63 6.11 0.350676 0.301894 30370 251734 -1 1872 22 1850 2705 219163 49456 4.41931 4.41931 -149.17 -4.41931 0 0 1.25153e+06 4330.55 0.32 0.10 0.18 -1 -1 0.32 0.0372478 0.0325365 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.60 vpr 62.92 MiB -1 -1 0.18 17952 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.77 547 8876 3348 4442 1086 62.9 MiB 0.07 0.00 3.29541 -98.5818 -3.29541 3.29541 0.61 0.00056416 0.00052438 0.0320822 0.0298313 34 2050 41 6.95648e+06 217135 618332. 2139.56 2.10 0.158307 0.136805 25762 151098 -1 1417 22 1099 1557 134706 29985 3.00097 3.00097 -107.528 -3.00097 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245065 0.0212725 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.23 vpr 63.62 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30164 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.46 909 14520 6637 7462 421 63.6 MiB 0.13 0.00 4.79642 -150.982 -4.79642 4.79642 0.73 0.00068047 0.000632713 0.0626013 0.0582488 48 2603 25 6.95648e+06 217135 865456. 2994.66 2.68 0.201017 0.176612 28354 207349 -1 2096 23 1679 2408 259494 58538 4.24206 4.24206 -145.401 -4.24206 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0305689 0.0266743 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.79 vpr 63.33 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30356 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 1.03 767 9181 3812 5049 320 63.3 MiB 0.08 0.00 3.22585 -111.884 -3.22585 3.22585 0.76 0.000688356 0.000638989 0.0387052 0.03594 48 2304 49 6.95648e+06 246087 865456. 2994.66 2.72 0.204205 0.176911 28354 207349 -1 1811 23 1518 2477 196205 44945 3.39087 3.39087 -116.832 -3.39087 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0307313 0.0267378 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.38 vpr 62.91 MiB -1 -1 0.23 17764 1 0.03 -1 -1 30100 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 1.03 689 10744 4411 5919 414 62.9 MiB 0.12 0.00 4.49648 -123.127 -4.49648 4.49648 0.68 0.000630819 0.000587094 0.0563449 0.0522677 44 2677 33 6.95648e+06 231611 787024. 2723.27 2.40 0.190466 0.166487 27778 195446 -1 1768 22 1306 2216 176830 39983 4.33596 4.33596 -132.934 -4.33596 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279853 0.0244915 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.50 vpr 63.43 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 353 287 1 185 79 17 17 289 -1 unnamed_device 24.7 MiB 2.27 764 10219 4191 5614 414 63.4 MiB 0.09 0.00 4.42645 -137.171 -4.42645 4.42645 0.69 0.000697371 0.000647218 0.0447484 0.0415887 46 2232 27 6.95648e+06 217135 828058. 2865.25 2.32 0.187795 0.163553 28066 200906 -1 1690 21 1356 1843 119286 28759 3.38676 3.38676 -124.263 -3.38676 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.029082 0.0254594 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.92 vpr 63.30 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 361 291 1 178 81 17 17 289 -1 unnamed_device 24.4 MiB 1.73 705 10581 4329 5826 426 63.3 MiB 0.09 0.00 3.235 -113.751 -3.235 3.235 0.78 0.000698693 0.000647613 0.0457428 0.0425441 46 2538 36 6.95648e+06 246087 828058. 2865.25 3.91 0.210446 0.183679 28066 200906 -1 1762 22 1596 2486 209871 53513 3.04467 3.04467 -116.161 -3.04467 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0304047 0.0266453 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.94 vpr 63.58 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.5 MiB 0.97 869 14562 4589 7172 2801 63.6 MiB 0.12 0.00 4.34419 -139.535 -4.34419 4.34419 0.68 0.00073564 0.000682925 0.0561894 0.0521486 44 2582 33 6.95648e+06 376368 787024. 2723.27 1.94 0.185541 0.16252 27778 195446 -1 2081 22 1396 1997 161852 34833 3.73257 3.73257 -137.072 -3.73257 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0315996 0.027566 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.61 vpr 63.38 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.5 MiB 1.00 657 12749 3718 6154 2877 63.4 MiB 0.10 0.00 4.33949 -116.542 -4.33949 4.33949 0.70 0.00048975 0.000449322 0.0455099 0.0420791 46 2278 27 6.95648e+06 318465 828058. 2865.25 4.55 0.251385 0.217063 28066 200906 -1 1635 34 1343 2207 278677 118734 3.86876 3.86876 -120.58 -3.86876 0 0 1.01997e+06 3529.29 0.29 0.13 0.17 -1 -1 0.29 0.0393419 0.0340603 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.74 vpr 63.47 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30140 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.48 759 11487 3081 6173 2233 63.5 MiB 0.09 0.00 4.15778 -124.964 -4.15778 4.15778 0.71 0.00065762 0.000611028 0.048731 0.0453446 46 2227 42 6.95648e+06 188184 828058. 2865.25 2.21 0.191557 0.167205 28066 200906 -1 1421 20 1332 1783 116832 30386 4.29322 4.29322 -128.812 -4.29322 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0330323 0.0288603 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 7.36 vpr 63.42 MiB -1 -1 0.27 18336 1 0.03 -1 -1 30276 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.4 MiB 1.48 818 11200 4390 5140 1670 63.4 MiB 0.10 0.00 4.55157 -142.077 -4.55157 4.55157 0.69 0.000695454 0.000643369 0.0513895 0.0477522 50 2910 30 6.95648e+06 217135 902133. 3121.57 2.80 0.193904 0.170225 28642 213929 -1 2279 22 1850 2937 242481 54030 4.72121 4.72121 -154.712 -4.72121 0 0 1.08113e+06 3740.92 0.27 0.09 0.13 -1 -1 0.27 0.0314285 0.0274085 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 15.80 vpr 63.53 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30220 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 387 315 1 183 77 17 17 289 -1 unnamed_device 24.6 MiB 1.37 875 12791 5461 6994 336 63.5 MiB 0.12 0.00 4.05245 -131.841 -4.05245 4.05245 0.68 0.000645169 0.000591785 0.0604784 0.0561338 44 2763 27 6.95648e+06 188184 787024. 2723.27 11.35 0.328623 0.284311 27778 195446 -1 2246 25 1752 2922 239542 49233 4.05862 4.05862 -140.456 -4.05862 0 0 997811. 3452.63 0.31 0.10 0.17 -1 -1 0.31 0.0336025 0.0296529 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.42 vpr 62.69 MiB -1 -1 0.21 18080 1 0.03 -1 -1 30340 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.0 MiB 0.32 503 11474 3656 5616 2202 62.7 MiB 0.08 0.00 3.14908 -92.8603 -3.14908 3.14908 0.67 0.000562268 0.000522048 0.0382502 0.0355564 52 1419 23 6.95648e+06 260562 926341. 3205.33 4.16 0.244345 0.210091 29218 227130 -1 1087 18 771 1179 89864 21770 2.74227 2.74227 -91.7392 -2.74227 0 0 1.14541e+06 3963.36 0.29 0.05 0.19 -1 -1 0.29 0.020529 0.0179319 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 6.55 vpr 63.55 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30140 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.45 711 11916 4904 6407 605 63.6 MiB 0.11 0.00 3.71155 -132.668 -3.71155 3.71155 0.68 0.000677394 0.000628877 0.0526694 0.0489626 44 2425 26 6.95648e+06 173708 787024. 2723.27 1.99 0.161356 0.141676 27778 195446 -1 1674 18 1420 1991 153166 33659 3.57462 3.57462 -129.856 -3.57462 0 0 997811. 3452.63 0.36 0.07 0.19 -1 -1 0.36 0.0251631 0.0220712 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.70 vpr 63.53 MiB -1 -1 0.23 18260 1 0.03 -1 -1 30416 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 1.37 1043 13668 5813 7551 304 63.5 MiB 0.14 0.00 4.86362 -154.705 -4.86362 4.86362 0.68 0.000763893 0.000709243 0.0639566 0.0594541 46 3365 22 6.95648e+06 231611 828058. 2865.25 3.17 0.217161 0.190493 28066 200906 -1 2399 21 2087 3130 238764 50403 4.78086 4.78086 -155.649 -4.78086 0 0 1.01997e+06 3529.29 0.30 0.09 0.17 -1 -1 0.30 0.0321914 0.0282615 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.64 vpr 63.34 MiB -1 -1 0.23 18196 1 0.04 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.4 MiB 0.90 1030 10056 3475 5590 991 63.3 MiB 0.09 0.00 4.33951 -148.581 -4.33951 4.33951 0.68 0.000688839 0.000641034 0.0421815 0.0392677 38 2405 21 6.95648e+06 246087 678818. 2348.85 3.75 0.259661 0.224174 26626 170182 -1 2053 21 1440 1910 152876 31166 3.53206 3.53206 -140.961 -3.53206 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0286017 0.0249733 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.90 vpr 62.82 MiB -1 -1 0.23 17876 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.50 522 12008 3926 6070 2012 62.8 MiB 0.09 0.00 2.944 -97.1669 -2.944 2.944 0.72 0.000606949 0.000557998 0.0419219 0.0388865 38 2191 45 6.95648e+06 289514 678818. 2348.85 3.53 0.181808 0.157597 26626 170182 -1 1384 24 1137 1760 144452 32557 3.32657 3.32657 -105.304 -3.32657 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0280517 0.0243164 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.84 vpr 63.94 MiB -1 -1 0.23 18496 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.82 1133 14782 6411 8010 361 63.9 MiB 0.15 0.00 5.84939 -174.319 -5.84939 5.84939 0.68 0.000825426 0.000767188 0.0757387 0.0704338 46 3210 43 6.95648e+06 217135 828058. 2865.25 3.86 0.275563 0.24144 28066 200906 -1 2620 22 2234 3260 380021 79679 4.9092 4.9092 -168.046 -4.9092 0 0 1.01997e+06 3529.29 0.26 0.12 0.17 -1 -1 0.26 0.0358947 0.0313779 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.62 vpr 63.45 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30416 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 677 13335 4957 6249 2129 63.4 MiB 0.11 0.00 4.62011 -128.464 -4.62011 4.62011 0.68 0.000685733 0.00063646 0.0504529 0.0467585 46 2127 39 6.95648e+06 332941 828058. 2865.25 2.46 0.201961 0.175929 28066 200906 -1 1601 21 1287 1925 131804 31581 3.66536 3.66536 -124.644 -3.66536 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0282011 0.0246314 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.55 vpr 62.76 MiB -1 -1 0.21 17720 1 0.03 -1 -1 30452 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.2 MiB 0.34 533 10509 4364 5792 353 62.8 MiB 0.08 0.00 2.922 -92.1888 -2.922 2.922 0.68 0.000533724 0.000496399 0.0363479 0.0338504 44 1860 43 6.95648e+06 188184 787024. 2723.27 4.33 0.24555 0.211193 27778 195446 -1 1322 21 1032 1559 125074 32023 3.01497 3.01497 -97.1456 -3.01497 0 0 997811. 3452.63 0.28 0.06 0.17 -1 -1 0.28 0.0221256 0.0192615 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.92 vpr 63.50 MiB -1 -1 0.23 18196 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 0.62 923 15298 6192 8434 672 63.5 MiB 0.13 0.00 4.94787 -132.081 -4.94787 4.94787 0.68 0.000711067 0.000660986 0.0585109 0.0544062 42 2728 49 6.95648e+06 347416 744469. 2576.02 4.33 0.301605 0.261307 27202 183097 -1 2153 22 1630 2908 277830 54875 4.62111 4.62111 -136.41 -4.62111 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.030306 0.0264519 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.39 vpr 62.81 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 247 207 1 143 78 17 17 289 -1 unnamed_device 24.1 MiB 1.04 478 10702 3424 4721 2557 62.8 MiB 0.08 0.00 2.9972 -98.3507 -2.9972 2.9972 0.68 0.00055344 0.000514404 0.0377102 0.0351001 40 1891 46 6.95648e+06 202660 706193. 2443.58 2.40 0.167201 0.144884 26914 176310 -1 1393 20 1216 1705 175293 44848 3.12312 3.12312 -112.128 -3.12312 0 0 926341. 3205.33 0.24 0.07 0.19 -1 -1 0.24 0.022538 0.0196478 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.56 vpr 63.03 MiB -1 -1 0.24 17860 1 0.03 -1 -1 30376 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.4 MiB 0.92 563 7684 3076 4271 337 63.0 MiB 0.07 0.00 3.70539 -107.459 -3.70539 3.70539 0.68 0.000575373 0.000533285 0.0289123 0.0269217 38 2065 26 6.95648e+06 246087 678818. 2348.85 2.81 0.150664 0.130487 26626 170182 -1 1388 19 962 1443 98972 22533 2.95562 2.95562 -101.553 -2.95562 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0227366 0.0198635 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.98 vpr 63.44 MiB -1 -1 0.26 18212 1 0.03 -1 -1 30328 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.7 MiB 1.58 772 11161 4679 5848 634 63.4 MiB 0.10 0.00 3.81182 -119.076 -3.81182 3.81182 0.70 0.000699718 0.000650081 0.0500853 0.0465143 50 2356 40 6.95648e+06 231611 902133. 3121.57 4.34 0.271561 0.234747 28642 213929 -1 1910 21 1595 2363 178428 39346 3.20926 3.20926 -116.621 -3.20926 0 0 1.08113e+06 3740.92 0.27 0.08 0.18 -1 -1 0.27 0.0290424 0.0253553 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 12.74 vpr 63.47 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 358 289 1 174 80 17 17 289 -1 unnamed_device 24.6 MiB 1.22 730 14528 6360 7668 500 63.5 MiB 0.13 0.00 4.50448 -132.805 -4.50448 4.50448 0.69 0.000702296 0.000652348 0.0624618 0.0580817 40 2494 23 6.95648e+06 231611 706193. 2443.58 8.44 0.349267 0.302252 26914 176310 -1 2053 23 1679 2442 220311 49164 4.37836 4.37836 -149.477 -4.37836 0 0 926341. 3205.33 0.23 0.09 0.17 -1 -1 0.23 0.031375 0.0273127 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.73 vpr 63.33 MiB -1 -1 0.20 18208 1 0.04 -1 -1 30260 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.6 MiB 1.71 893 12196 5165 6793 238 63.3 MiB 0.11 0.00 4.54489 -142.964 -4.54489 4.54489 0.68 0.0007032 0.000653624 0.0541735 0.0503452 44 2682 22 6.95648e+06 202660 787024. 2723.27 4.08 0.281913 0.244065 27778 195446 -1 2055 24 1428 2293 201073 39813 4.04006 4.04006 -140.568 -4.04006 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0324638 0.0282848 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 8.67 vpr 62.93 MiB -1 -1 0.22 17992 1 0.03 -1 -1 30148 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.4 MiB 2.63 776 12009 5242 6488 279 62.9 MiB 0.10 0.00 4.04528 -129.976 -4.04528 4.04528 0.70 0.000589906 0.000549075 0.0479176 0.0446197 46 1885 49 6.95648e+06 144757 828058. 2865.25 3.04 0.189524 0.165041 28066 200906 -1 1641 19 1151 1512 250515 72629 3.36462 3.36462 -120.941 -3.36462 0 0 1.01997e+06 3529.29 0.26 0.09 0.18 -1 -1 0.26 0.0232456 0.0203546 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.65 vpr 62.91 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30332 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.3 MiB 1.97 663 10661 4446 5843 372 62.9 MiB 0.09 0.00 3.79972 -122.501 -3.79972 3.79972 0.68 0.000638037 0.000592985 0.0451422 0.041939 42 2372 44 6.95648e+06 173708 744469. 2576.02 3.79 0.290297 0.249254 27202 183097 -1 1654 24 1345 1967 153429 34253 3.68766 3.68766 -126.73 -3.68766 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0292398 0.0254124 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.43 vpr 63.37 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30380 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 674 10881 3783 5148 1950 63.4 MiB 0.09 0.00 3.0162 -94.5584 -3.0162 3.0162 0.68 0.000648259 0.00060093 0.042165 0.0392011 36 2708 33 6.95648e+06 318465 648988. 2245.63 4.59 0.189028 0.16436 26050 158493 -1 1913 21 1228 1904 165436 37389 3.36877 3.36877 -109.961 -3.36877 0 0 828058. 2865.25 0.23 0.07 0.14 -1 -1 0.23 0.0272131 0.0237012 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.59 vpr 63.00 MiB -1 -1 0.20 17976 1 0.03 -1 -1 30396 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.4 MiB 0.59 778 10813 2608 7403 802 63.0 MiB 0.08 0.00 3.60279 -102.16 -3.60279 3.60279 0.68 0.000591683 0.000549984 0.0345325 0.0321039 38 2172 19 6.95648e+06 405319 678818. 2348.85 2.21 0.148784 0.129298 26626 170182 -1 1840 21 1172 1938 158200 32086 3.80596 3.80596 -114.363 -3.80596 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0243274 0.0211024 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.37 vpr 62.95 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30372 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.3 MiB 0.82 563 10459 4351 5596 512 62.9 MiB 0.09 0.00 3.44073 -108.445 -3.44073 3.44073 0.68 0.000635018 0.000589708 0.045625 0.0424644 62 1390 22 6.95648e+06 173708 1.05005e+06 3633.38 4.47 0.24978 0.215555 30946 263737 -1 1138 18 989 1332 92509 22287 3.01972 3.01972 -104.668 -3.01972 0 0 1.30136e+06 4502.97 0.33 0.06 0.23 -1 -1 0.33 0.0234995 0.0205235 61 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 19.19 vpr 63.34 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.4 MiB 1.59 640 12873 4842 6240 1791 63.3 MiB 0.11 0.00 3.39649 -120.54 -3.39649 3.39649 0.67 0.000658951 0.000611858 0.0562258 0.0522752 48 2228 47 6.95648e+06 159232 865456. 2994.66 14.55 0.353927 0.305277 28354 207349 -1 1834 27 1641 2354 245542 62313 3.31916 3.31916 -126.417 -3.31916 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0330708 0.0287378 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.01 vpr 63.02 MiB -1 -1 0.24 17648 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.4 MiB 0.59 710 11799 3748 5667 2384 63.0 MiB 0.09 0.00 4.65108 -122.985 -4.65108 4.65108 0.68 0.000629034 0.000583751 0.0414765 0.0385699 48 2306 45 6.95648e+06 347416 865456. 2994.66 2.41 0.171674 0.149595 28354 207349 -1 1724 21 1126 1892 189388 42832 3.77166 3.77166 -124.085 -3.77166 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.0262533 0.0228924 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 9.17 vpr 63.46 MiB -1 -1 0.23 18236 1 0.04 -1 -1 30576 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 350 275 1 195 77 17 17 289 -1 unnamed_device 24.7 MiB 1.71 839 11813 4506 5923 1384 63.5 MiB 0.11 0.00 4.59692 -149.244 -4.59692 4.59692 0.70 0.000700748 0.000650477 0.0535037 0.0497227 46 2984 27 6.95648e+06 188184 828058. 2865.25 4.38 0.258974 0.224932 28066 200906 -1 2127 22 1674 2480 206654 44561 4.19442 4.19442 -148.109 -4.19442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0306293 0.0268005 81 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.42 vpr 63.43 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.5 MiB 1.43 818 16468 6086 8049 2333 63.4 MiB 0.14 0.00 4.31183 -134.888 -4.31183 4.31183 0.69 0.000704564 0.000650335 0.0654235 0.0606991 46 2433 50 6.95648e+06 347416 828058. 2865.25 2.87 0.247659 0.216558 28066 200906 -1 2036 24 1655 2611 275869 56257 4.20256 4.20256 -147.124 -4.20256 0 0 1.01997e+06 3529.29 0.30 0.10 0.17 -1 -1 0.30 0.0341299 0.029743 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.12 vpr 63.54 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.6 MiB 1.22 810 13911 4952 7625 1334 63.5 MiB 0.13 0.00 4.06852 -133.682 -4.06852 4.06852 0.69 0.00074621 0.000692812 0.0567956 0.0527171 44 2810 38 6.95648e+06 332941 787024. 2723.27 2.79 0.223078 0.194615 27778 195446 -1 2088 22 1704 2782 216494 48753 4.03326 4.03326 -142.694 -4.03326 0 0 997811. 3452.63 0.27 0.09 0.17 -1 -1 0.27 0.0321244 0.0280493 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.97 vpr 62.85 MiB -1 -1 0.16 18092 1 0.03 -1 -1 30156 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.4 MiB 0.86 540 8134 2607 3837 1690 62.9 MiB 0.07 0.00 3.76076 -106.203 -3.76076 3.76076 0.71 0.000580205 0.000539864 0.0324602 0.0302201 40 1743 21 6.95648e+06 173708 706193. 2443.58 2.28 0.143793 0.124884 26914 176310 -1 1450 19 1055 1623 139417 31075 3.09482 3.09482 -107.953 -3.09482 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0225152 0.0196539 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.61 vpr 63.36 MiB -1 -1 0.17 18156 1 0.03 -1 -1 30388 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.4 MiB 0.92 678 9356 3868 5007 481 63.4 MiB 0.09 0.00 4.36203 -133.981 -4.36203 4.36203 0.68 0.000719514 0.000667402 0.0448017 0.0416211 62 1674 24 6.95648e+06 202660 1.05005e+06 3633.38 4.66 0.281682 0.24302 30946 263737 -1 1253 22 1370 1875 125210 27799 3.78282 3.78282 -122.799 -3.78282 0 0 1.30136e+06 4502.97 0.32 0.07 0.24 -1 -1 0.32 0.0312563 0.0272702 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 9.06 vpr 63.53 MiB -1 -1 0.23 18240 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.7 MiB 1.53 842 12030 5028 6552 450 63.5 MiB 0.11 0.00 4.9029 -146.03 -4.9029 4.9029 0.68 0.000685603 0.00063708 0.0522936 0.048623 48 2359 34 6.95648e+06 202660 865456. 2994.66 4.56 0.273323 0.236884 28354 207349 -1 1906 21 1574 2568 243804 52280 4.23991 4.23991 -138.98 -4.23991 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0320948 0.0279218 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.75 vpr 63.57 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30092 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.34 802 12302 5209 6575 518 63.6 MiB 0.11 0.00 5.49296 -152.69 -5.49296 5.49296 0.69 0.000681137 0.000632458 0.0543852 0.0506068 48 2186 22 6.95648e+06 202660 865456. 2994.66 4.27 0.252646 0.219271 28354 207349 -1 1898 22 1362 2105 193050 41590 4.37756 4.37756 -146.531 -4.37756 0 0 1.05005e+06 3633.38 0.33 0.08 0.21 -1 -1 0.33 0.0297138 0.0259258 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.37 vpr 63.46 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30128 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 24.4 MiB 2.39 747 11063 3637 5035 2391 63.5 MiB 0.12 0.00 4.87546 -148.536 -4.87546 4.87546 0.68 0.00071881 0.000667464 0.0573986 0.0532788 44 2266 39 6.95648e+06 303989 787024. 2723.27 1.94 0.189959 0.166421 27778 195446 -1 1772 19 1100 1701 126629 28534 3.94446 3.94446 -138.289 -3.94446 0 0 997811. 3452.63 0.27 0.07 0.18 -1 -1 0.27 0.0273935 0.0239706 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 9.26 vpr 63.37 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.5 MiB 1.15 690 9368 3411 4136 1821 63.4 MiB 0.09 0.00 4.44043 -136.028 -4.44043 4.44043 0.68 0.000566063 0.000519094 0.0431496 0.040023 56 2045 26 6.95648e+06 188184 973134. 3367.25 5.09 0.278891 0.241128 29794 239141 -1 1709 20 1368 2297 179555 41735 3.86892 3.86892 -135.287 -3.86892 0 0 1.19926e+06 4149.71 0.31 0.08 0.21 -1 -1 0.31 0.0292942 0.0256825 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.32 vpr 63.50 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30288 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.13 661 10346 4002 4565 1779 63.5 MiB 0.09 0.00 4.05037 -124.329 -4.05037 4.05037 0.70 0.000712692 0.000661868 0.0478509 0.044449 48 2271 31 6.95648e+06 231611 865456. 2994.66 4.17 0.275179 0.237987 28354 207349 -1 1696 19 1340 1945 154438 38128 3.70772 3.70772 -126.489 -3.70772 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.027641 0.0241592 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.72 vpr 62.78 MiB -1 -1 0.20 17804 1 0.03 -1 -1 30496 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 243 205 1 141 74 17 17 289 -1 unnamed_device 24.1 MiB 1.02 586 9374 3879 5247 248 62.8 MiB 0.07 0.00 3.56099 -107.065 -3.56099 3.56099 0.68 0.00048264 0.000442804 0.0351397 0.032686 38 1998 44 6.95648e+06 144757 678818. 2348.85 6.81 0.26917 0.231185 26626 170182 -1 1504 25 1108 1632 253138 97143 2.88007 2.88007 -106.685 -2.88007 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0268971 0.0233792 54 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.19 vpr 63.50 MiB -1 -1 0.14 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.8 MiB 2.90 802 15255 5017 7734 2504 63.5 MiB 0.13 0.00 4.6485 -130.063 -4.6485 4.6485 0.69 0.000725051 0.000673634 0.0584385 0.0540539 46 2292 23 6.95648e+06 332941 828058. 2865.25 2.22 0.172393 0.151182 28066 200906 -1 1852 23 1154 1783 158840 34469 4.34076 4.34076 -136.882 -4.34076 0 0 1.01997e+06 3529.29 0.27 0.08 0.20 -1 -1 0.27 0.0339501 0.0297621 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.91 vpr 63.46 MiB -1 -1 0.23 18288 1 0.03 -1 -1 30276 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.5 MiB 0.78 783 8716 3564 4899 253 63.5 MiB 0.09 0.00 4.28453 -142.302 -4.28453 4.28453 0.67 0.000759988 0.000705303 0.0432112 0.0401106 46 2521 34 6.95648e+06 188184 828058. 2865.25 3.95 0.2852 0.245608 28066 200906 -1 1789 23 1572 2303 149693 35251 3.96002 3.96002 -145.842 -3.96002 0 0 1.01997e+06 3529.29 0.38 0.10 0.20 -1 -1 0.38 0.0403389 0.035383 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.15 vpr 62.90 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30324 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.4 MiB 1.80 634 12083 4617 6209 1257 62.9 MiB 0.10 0.00 4.05037 -119.139 -4.05037 4.05037 0.69 0.000573138 0.000531998 0.0460304 0.04278 46 1888 24 6.95648e+06 159232 828058. 2865.25 3.39 0.218015 0.188607 28066 200906 -1 1468 19 1111 1421 112010 25385 3.45712 3.45712 -117.244 -3.45712 0 0 1.01997e+06 3529.29 0.26 0.06 0.21 -1 -1 0.26 0.0230093 0.0201451 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.61 vpr 62.70 MiB -1 -1 0.22 17688 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 245 205 1 145 77 17 17 289 -1 unnamed_device 24.0 MiB 1.17 487 10835 3461 5636 1738 62.7 MiB 0.08 0.00 3.36359 -100.982 -3.36359 3.36359 0.68 0.000548185 0.000510105 0.0384382 0.0357975 42 1814 42 6.95648e+06 202660 744469. 2576.02 3.58 0.220275 0.189773 27202 183097 -1 1150 22 1212 1698 116371 29217 3.04892 3.04892 -101.08 -3.04892 0 0 949917. 3286.91 0.24 0.06 0.16 -1 -1 0.24 0.0238554 0.0207427 58 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.15 vpr 63.52 MiB -1 -1 0.15 18216 1 0.03 -1 -1 30608 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.7 MiB 1.69 752 12754 5308 6926 520 63.5 MiB 0.12 0.00 4.57592 -147.598 -4.57592 4.57592 0.67 0.000693316 0.000643126 0.0554606 0.0515359 48 2718 40 6.95648e+06 217135 865456. 2994.66 5.32 0.322656 0.278849 28354 207349 -1 2198 22 2028 2655 254879 61421 4.72641 4.72641 -159.267 -4.72641 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0276398 0.0245966 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 6.67 vpr 63.55 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30440 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.8 MiB 1.00 797 12030 5060 6593 377 63.5 MiB 0.11 0.00 4.81473 -147.296 -4.81473 4.81473 0.68 0.000700983 0.000650835 0.0533486 0.0494821 46 2524 35 6.95648e+06 202660 828058. 2865.25 2.70 0.203249 0.177146 28066 200906 -1 1867 21 1482 2163 173801 40068 4.08896 4.08896 -142.959 -4.08896 0 0 1.01997e+06 3529.29 0.27 0.08 0.18 -1 -1 0.27 0.0292944 0.0256481 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.41 vpr 63.52 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.49 857 12156 5040 6495 621 63.5 MiB 0.11 0.00 4.94172 -141.808 -4.94172 4.94172 0.68 0.000715975 0.000664731 0.0524999 0.0487967 50 2424 42 6.95648e+06 246087 902133. 3121.57 4.90 0.292006 0.253236 28642 213929 -1 2023 24 1791 3022 240716 56098 4.5268 4.5268 -146.532 -4.5268 0 0 1.08113e+06 3740.92 0.27 0.10 0.18 -1 -1 0.27 0.0336065 0.0294072 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.64 vpr 63.38 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30372 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.5 MiB 0.79 694 11963 3988 5372 2603 63.4 MiB 0.10 0.00 3.42648 -99.7352 -3.42648 3.42648 0.67 0.000637402 0.000591171 0.0446457 0.0414971 36 2505 35 6.95648e+06 303989 648988. 2245.63 4.01 0.185994 0.161594 26050 158493 -1 1728 20 1405 2173 173282 37294 3.22627 3.22627 -109.804 -3.22627 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0258311 0.0225409 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 7.07 vpr 62.85 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30424 -1 -1 16 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 27 32 255 219 1 129 75 17 17 289 -1 unnamed_device 24.2 MiB 0.57 461 8291 2789 4081 1421 62.8 MiB 0.06 0.00 2.92795 -88.1908 -2.92795 2.92795 0.68 0.000545598 0.000507528 0.0302709 0.0281608 34 1607 36 6.95648e+06 231611 618332. 2139.56 3.71 0.228103 0.194727 25762 151098 -1 1212 22 1022 1273 97777 24574 2.94272 2.94272 -98.3554 -2.94272 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298883 0.0256876 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.16 vpr 63.74 MiB -1 -1 0.22 18516 1 0.04 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.8 MiB 1.39 1102 15044 5934 6987 2123 63.7 MiB 0.15 0.00 3.84665 -133.243 -3.84665 3.84665 0.67 0.000801247 0.000744244 0.0731819 0.0679753 44 3912 38 6.95648e+06 231611 787024. 2723.27 21.65 0.428735 0.371357 27778 195446 -1 2650 23 2329 3777 336798 83820 3.95332 3.95332 -144.857 -3.95332 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.036026 0.0314147 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.55 vpr 63.51 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30416 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 365 296 1 191 78 17 17 289 -1 unnamed_device 24.6 MiB 4.28 1054 12362 3699 7370 1293 63.5 MiB 0.12 0.00 5.54356 -160.149 -5.54356 5.54356 0.68 0.000707646 0.000657464 0.0555299 0.051603 44 2839 44 6.95648e+06 217135 787024. 2723.27 2.29 0.191907 0.168027 27778 195446 -1 2311 22 1567 2448 215016 41644 4.67901 4.67901 -159.933 -4.67901 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0305869 0.0267138 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.18 vpr 63.32 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30384 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.4 MiB 3.25 712 8923 3677 5027 219 63.3 MiB 0.08 0.00 3.7738 -128.135 -3.7738 3.7738 0.68 0.000656605 0.000609727 0.0397243 0.036942 38 2693 37 6.95648e+06 159232 678818. 2348.85 1.98 0.162281 0.141455 26626 170182 -1 1927 21 1453 2080 221772 61542 3.74976 3.74976 -140.556 -3.74976 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273833 0.0238855 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 16.44 vpr 63.33 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.4 MiB 0.41 938 14261 5382 6939 1940 63.3 MiB 0.13 0.00 4.23483 -126.342 -4.23483 4.23483 0.68 0.000675978 0.000626261 0.0564809 0.0522893 38 2645 48 6.95648e+06 318465 678818. 2348.85 13.02 0.364307 0.31454 26626 170182 -1 2110 20 1311 2028 170396 34366 3.92976 3.92976 -129.96 -3.92976 0 0 902133. 3121.57 0.24 0.08 0.16 -1 -1 0.24 0.0271057 0.023732 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 5.92 vpr 63.67 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30488 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.90 924 11398 3933 5445 2020 63.7 MiB 0.10 0.00 4.47977 -130.348 -4.47977 4.47977 0.69 0.000734992 0.000680706 0.0452362 0.041981 36 2622 49 6.95648e+06 361892 648988. 2245.63 2.07 0.187988 0.164072 26050 158493 -1 2091 22 1634 2481 166714 37915 3.79382 3.79382 -133.71 -3.79382 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.031357 0.0273628 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.34 vpr 63.27 MiB -1 -1 0.24 18232 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.4 MiB 0.98 716 8544 3177 4311 1056 63.3 MiB 0.08 0.00 3.31107 -101.686 -3.31107 3.31107 0.68 0.000647176 0.000601367 0.0357803 0.0332991 38 2777 45 6.95648e+06 231611 678818. 2348.85 4.49 0.19209 0.166187 26626 170182 -1 2061 19 1369 2231 197407 43010 3.37172 3.37172 -114.229 -3.37172 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0252426 0.0220748 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 23.51 vpr 63.54 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.7 MiB 1.54 916 13856 5155 6510 2191 63.5 MiB 0.12 0.00 4.51937 -148.282 -4.51937 4.51937 0.68 0.000665504 0.000614794 0.0604364 0.0561482 44 3814 50 6.95648e+06 202660 787024. 2723.27 18.91 0.372005 0.321591 27778 195446 -1 2420 21 1984 2868 287175 60934 4.43742 4.43742 -152.778 -4.43742 0 0 997811. 3452.63 0.28 0.11 0.17 -1 -1 0.28 0.0335901 0.0295535 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 5.88 vpr 63.40 MiB -1 -1 0.18 18420 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.7 MiB 0.92 854 9338 3754 5311 273 63.4 MiB 0.09 0.00 4.47033 -147.36 -4.47033 4.47033 0.69 0.000745552 0.000692145 0.0416502 0.0386972 40 2444 23 6.95648e+06 260562 706193. 2443.58 1.94 0.188328 0.163679 26914 176310 -1 2114 23 1571 2109 197933 41957 4.12762 4.12762 -144.507 -4.12762 0 0 926341. 3205.33 0.32 0.09 0.18 -1 -1 0.32 0.0301528 0.0265693 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.40 vpr 62.85 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30252 -1 -1 12 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.3 MiB 4.20 468 9953 3826 4648 1479 62.8 MiB 0.08 0.00 4.00493 -101.525 -4.00493 4.00493 0.74 0.000591609 0.000533739 0.0396382 0.0369055 36 1656 25 6.95648e+06 173708 648988. 2245.63 4.26 0.226846 0.195622 26050 158493 -1 1227 27 1176 1581 127931 31156 3.12203 3.12203 -104.772 -3.12203 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0293586 0.0253909 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.98 vpr 63.28 MiB -1 -1 0.15 18268 1 0.03 -1 -1 30344 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.4 MiB 1.22 608 10187 3178 5307 1702 63.3 MiB 0.09 0.00 3.51519 -119.059 -3.51519 3.51519 0.68 0.000630757 0.000585992 0.042447 0.0394304 42 2230 44 6.95648e+06 159232 744469. 2576.02 3.88 0.258356 0.222719 27202 183097 -1 1461 18 1170 1458 120460 28525 3.41506 3.41506 -120.781 -3.41506 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.0233698 0.0204254 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.54 vpr 63.36 MiB -1 -1 0.16 18228 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.3 MiB 0.89 748 11615 3856 5496 2263 63.4 MiB 0.10 0.00 4.10411 -120.963 -4.10411 4.10411 0.69 0.00066778 0.000620309 0.0439936 0.0408811 44 2469 26 6.95648e+06 332941 787024. 2723.27 4.66 0.278701 0.240595 27778 195446 -1 1799 26 1480 2331 212814 48275 3.97526 3.97526 -129.99 -3.97526 0 0 997811. 3452.63 0.36 0.09 0.17 -1 -1 0.36 0.0326357 0.0283722 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.88 vpr 62.93 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30308 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.4 MiB 1.75 593 9994 4212 5312 470 62.9 MiB 0.08 0.00 4.05727 -116.106 -4.05727 4.05727 0.68 0.000563999 0.000525059 0.0383632 0.0357296 40 2251 36 6.95648e+06 188184 706193. 2443.58 2.26 0.163052 0.141518 26914 176310 -1 1831 21 1318 1668 158768 36497 3.82202 3.82202 -121.162 -3.82202 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0242212 0.0211139 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.06 vpr 62.84 MiB -1 -1 0.21 17932 1 0.03 -1 -1 30204 -1 -1 9 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.25 609 9497 4084 5186 227 62.8 MiB 0.08 0.00 3.96096 -113.861 -3.96096 3.96096 0.68 0.000593176 0.000551432 0.0391459 0.0364425 44 1872 43 6.95648e+06 130281 787024. 2723.27 1.94 0.167166 0.145158 27778 195446 -1 1412 21 1258 1911 149762 32431 2.93842 2.93842 -110.555 -2.93842 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.02478 0.0216028 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.56 vpr 63.45 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30476 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.5 MiB 1.02 760 14295 5473 6487 2335 63.5 MiB 0.12 0.00 3.48773 -117.233 -3.48773 3.48773 0.69 0.000725417 0.000674131 0.0571161 0.0530857 38 2353 27 6.95648e+06 347416 678818. 2348.85 1.61 0.18785 0.164526 26626 170182 -1 1741 20 1636 2188 161214 36056 3.39887 3.39887 -120.309 -3.39887 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.029089 0.0254622 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.88 vpr 62.83 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30464 -1 -1 12 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.3 MiB 2.24 638 11925 5003 6558 364 62.8 MiB 0.10 0.00 3.74472 -112.927 -3.74472 3.74472 0.67 0.000576221 0.000535909 0.04515 0.0420228 38 2139 45 6.95648e+06 173708 678818. 2348.85 2.79 0.178446 0.155442 26626 170182 -1 1635 23 1259 1790 163948 37471 3.13146 3.13146 -111.948 -3.13146 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.025693 0.0223128 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.52 vpr 63.46 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.5 MiB 1.37 684 15017 5927 7080 2010 63.5 MiB 0.11 0.00 3.20268 -108.628 -3.20268 3.20268 0.69 0.000691938 0.000641237 0.048263 0.0444098 50 1963 50 6.95648e+06 318465 902133. 3121.57 2.15 0.187117 0.162781 28642 213929 -1 1695 22 1320 2119 185443 42813 2.83647 2.83647 -109.921 -2.83647 0 0 1.08113e+06 3740.92 0.28 0.08 0.18 -1 -1 0.28 0.0300341 0.0262141 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 15.22 vpr 63.48 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30308 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.5 MiB 1.75 793 8876 3629 4933 314 63.5 MiB 0.09 0.00 3.995 -134.834 -3.995 3.995 0.69 0.000809287 0.000725534 0.0426269 0.0395154 38 2580 38 6.95648e+06 217135 678818. 2348.85 10.53 0.352477 0.303083 26626 170182 -1 1938 20 1471 1968 167821 34556 3.58422 3.58422 -139.229 -3.58422 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0319824 0.0278557 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.06 vpr 63.07 MiB -1 -1 0.21 18108 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.5 MiB 1.22 529 10304 4263 5737 304 63.1 MiB 0.09 0.00 2.9023 -97.7367 -2.9023 2.9023 0.68 0.000616115 0.000572059 0.0430039 0.0399508 46 1735 22 6.95648e+06 144757 828058. 2865.25 1.95 0.165988 0.144532 28066 200906 -1 1310 20 1149 1778 124339 30875 2.91172 2.91172 -102.967 -2.91172 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0245533 0.0213586 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.09 vpr 63.02 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30212 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.4 MiB 1.42 759 10819 2915 6394 1510 63.0 MiB 0.10 0.00 4.04348 -128.875 -4.04348 4.04348 0.68 0.000618229 0.00057469 0.0438171 0.0407937 44 2276 48 6.95648e+06 159232 787024. 2723.27 3.79 0.247707 0.213903 27778 195446 -1 1861 20 1289 1885 182177 37686 3.73872 3.73872 -131.392 -3.73872 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0248827 0.0217402 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.13 vpr 63.34 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.4 MiB 1.30 714 10370 4100 5259 1011 63.3 MiB 0.09 0.00 4.19403 -126.395 -4.19403 4.19403 0.67 0.000656995 0.000610953 0.0434992 0.0404789 50 2180 23 6.95648e+06 202660 902133. 3121.57 3.87 0.272286 0.234821 28642 213929 -1 1786 21 1591 2167 173769 41974 4.23792 4.23792 -132.209 -4.23792 0 0 1.08113e+06 3740.92 0.27 0.08 0.19 -1 -1 0.27 0.0277248 0.0242576 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.15 vpr 63.11 MiB -1 -1 0.16 18336 1 0.03 -1 -1 30232 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 1.07 662 11118 4280 5305 1533 63.1 MiB 0.09 0.00 4.24388 -117.238 -4.24388 4.24388 0.69 0.00065258 0.000606486 0.0431933 0.0402023 46 2122 28 6.95648e+06 303989 828058. 2865.25 4.20 0.269663 0.232008 28066 200906 -1 1448 23 1164 1690 119756 28843 3.68766 3.68766 -111.969 -3.68766 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0289341 0.025164 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.26 vpr 63.73 MiB -1 -1 0.25 18140 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.39 793 12030 5031 6445 554 63.7 MiB 0.11 0.00 4.95915 -156.293 -4.95915 4.95915 0.68 0.000752906 0.000699056 0.0518231 0.0478155 54 2485 43 6.95648e+06 202660 949917. 3286.91 4.64 0.323805 0.279305 29506 232905 -1 1950 36 2625 3709 532287 182783 4.44822 4.44822 -154.247 -4.44822 0 0 1.17392e+06 4061.99 0.29 0.19 0.20 -1 -1 0.29 0.0494347 0.042959 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.38 vpr 62.59 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30096 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.0 MiB 2.19 535 10476 4313 5711 452 62.6 MiB 0.08 0.00 3.50918 -93.5706 -3.50918 3.50918 0.68 0.000528618 0.000492172 0.036606 0.0341126 38 1790 27 6.95648e+06 188184 678818. 2348.85 1.37 0.121997 0.1067 26626 170182 -1 1375 22 1021 1643 115576 25319 3.13712 3.13712 -104.072 -3.13712 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0269759 0.0233925 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.51 vpr 63.52 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 24.8 MiB 1.08 808 15533 3949 11126 458 63.5 MiB 0.14 0.00 3.75239 -135.532 -3.75239 3.75239 0.69 0.000770879 0.000714094 0.0632521 0.0586609 38 2695 48 6.95648e+06 361892 678818. 2348.85 4.40 0.253192 0.221022 26626 170182 -1 2028 23 1857 2478 205439 43685 3.99306 3.99306 -149.548 -3.99306 0 0 902133. 3121.57 0.28 0.08 0.15 -1 -1 0.28 0.0299646 0.026461 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.51 vpr 63.23 MiB -1 -1 0.25 18128 1 0.03 -1 -1 30140 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.54 581 11544 4905 6301 338 63.2 MiB 0.11 0.00 2.99685 -114.691 -2.99685 2.99685 0.68 0.000711409 0.000660425 0.0558083 0.0518415 40 2161 45 6.95648e+06 144757 706193. 2443.58 4.02 0.330268 0.284388 26914 176310 -1 1891 22 1683 2320 245662 55959 3.54322 3.54322 -139.792 -3.54322 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0303273 0.0263813 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.79 vpr 63.62 MiB -1 -1 0.20 18136 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.7 MiB 1.21 727 10670 3941 5494 1235 63.6 MiB 0.10 0.00 4.11943 -125.455 -4.11943 4.11943 0.68 0.000707346 0.000656813 0.0429046 0.0398939 46 2249 26 6.95648e+06 318465 828058. 2865.25 3.61 0.245909 0.212303 28066 200906 -1 1805 21 1115 1739 127394 30050 3.50106 3.50106 -121.691 -3.50106 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0294046 0.0256711 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 6.79 vpr 63.88 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.69 1022 12247 3468 7038 1741 63.9 MiB 0.13 0.00 6.03007 -174.097 -6.03007 6.03007 0.70 0.000776578 0.000720812 0.0602916 0.055999 48 2938 26 6.95648e+06 217135 865456. 2994.66 2.00 0.190823 0.167848 28354 207349 -1 2458 22 2142 3106 309004 63595 4.95685 4.95685 -169.055 -4.95685 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0338821 0.029692 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.70 vpr 62.74 MiB -1 -1 0.22 18044 1 0.02 -1 -1 30176 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 224 207 1 131 73 17 17 289 -1 unnamed_device 24.2 MiB 2.06 529 10865 3546 5596 1723 62.7 MiB 0.08 0.00 2.69765 -94.3472 -2.69765 2.69765 0.68 0.000501424 0.000467135 0.037594 0.0350413 34 1837 48 6.95648e+06 159232 618332. 2139.56 1.87 0.147435 0.12805 25762 151098 -1 1352 19 863 1089 119179 24854 2.36662 2.36662 -94.7935 -2.36662 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0193559 0.0168561 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.61 vpr 63.01 MiB -1 -1 0.23 17968 1 0.03 -1 -1 30460 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 30 32 286 239 1 137 73 17 17 289 -1 unnamed_device 24.5 MiB 1.77 541 7673 3127 4256 290 63.0 MiB 0.07 0.00 3.61654 -109.463 -3.61654 3.61654 0.68 0.000596938 0.00055511 0.0322437 0.0300152 36 1999 40 6.95648e+06 159232 648988. 2245.63 5.99 0.25191 0.215787 26050 158493 -1 1573 27 1433 2096 285043 86529 3.15927 3.15927 -115.804 -3.15927 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0323562 0.0282217 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.69 vpr 62.89 MiB -1 -1 0.20 17920 1 0.03 -1 -1 30160 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 0.38 540 6894 2748 3891 255 62.9 MiB 0.06 0.00 3.28706 -107.534 -3.28706 3.28706 0.67 0.000615352 0.000572046 0.0294774 0.0274304 48 1927 37 6.95648e+06 144757 865456. 2994.66 3.41 0.167173 0.144451 28354 207349 -1 1516 32 1414 2301 357477 110572 3.36277 3.36277 -117.521 -3.36277 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.0359208 0.0310162 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.48 vpr 62.61 MiB -1 -1 0.24 18056 1 0.03 -1 -1 30140 -1 -1 18 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.0 MiB 0.45 429 8607 3204 4152 1251 62.6 MiB 0.06 0.00 3.25923 -75.9549 -3.25923 3.25923 0.67 0.000471674 0.000438944 0.0273212 0.0253976 38 1447 26 6.95648e+06 260562 678818. 2348.85 3.22 0.168869 0.14515 26626 170182 -1 1136 22 909 1447 102359 23567 2.91262 2.91262 -83.008 -2.91262 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0206039 0.0178652 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 15.37 vpr 63.59 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30384 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 376 307 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 2.06 770 10636 4042 5174 1420 63.6 MiB 0.10 0.00 4.01326 -127.68 -4.01326 4.01326 0.68 0.000720075 0.000668408 0.0506933 0.047101 44 2789 32 6.95648e+06 173708 787024. 2723.27 10.33 0.313808 0.270681 27778 195446 -1 1975 23 1682 2784 223500 47848 4.07572 4.07572 -136.131 -4.07572 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0323408 0.0281956 72 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.42 vpr 63.52 MiB -1 -1 0.26 18136 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.5 MiB 1.04 746 9540 3860 5304 376 63.5 MiB 0.09 0.00 4.09438 -138.115 -4.09438 4.09438 0.70 0.000764414 0.000709562 0.0449095 0.0416968 38 2658 29 6.95648e+06 246087 678818. 2348.85 3.36 0.209519 0.182325 26626 170182 -1 1960 20 1624 2159 180927 39751 3.71392 3.71392 -137.191 -3.71392 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0306974 0.0268329 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 8.30 vpr 63.61 MiB -1 -1 0.25 18100 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.6 MiB 1.68 851 13599 5123 6301 2175 63.6 MiB 0.12 0.00 5.05471 -146.645 -5.05471 5.05471 0.68 0.000708559 0.000658712 0.0591872 0.0550004 40 2973 50 6.99608e+06 220735 706193. 2443.58 3.65 0.236087 0.20602 26914 176310 -1 2391 21 1860 2633 243329 56741 4.97901 4.97901 -158.616 -4.97901 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0293826 0.0256582 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.16 vpr 63.34 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30316 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 30 32 363 293 1 224 80 17 17 289 -1 unnamed_device 24.3 MiB 0.89 900 10744 3918 5217 1609 63.3 MiB 0.10 0.00 4.91636 -147.436 -4.91636 4.91636 0.68 0.00070586 0.000655321 0.0465828 0.0432681 46 2747 23 6.99608e+06 264882 828058. 2865.25 2.26 0.185814 0.161803 28066 200906 -1 2084 23 2150 3223 242281 52439 4.53109 4.53109 -146.905 -4.53109 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0315369 0.0275057 101 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 7.86 vpr 62.84 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.81 763 12030 3995 5720 2315 62.8 MiB 0.10 0.00 3.55089 -109.995 -3.55089 3.55089 0.80 0.00062597 0.00058197 0.0479003 0.0445358 44 2462 46 6.99608e+06 206020 787024. 2723.27 4.02 0.248834 0.214858 27778 195446 -1 1773 23 1312 1775 138732 30275 3.49336 3.49336 -113.946 -3.49336 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0277031 0.0240845 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 5.88 vpr 62.92 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30256 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 308 248 1 182 77 17 17 289 -1 unnamed_device 24.3 MiB 0.98 725 10998 3857 5366 1775 62.9 MiB 0.09 0.00 4.23493 -118.016 -4.23493 4.23493 0.68 0.000632513 0.000587889 0.0449638 0.0418083 44 2522 28 6.99608e+06 235451 787024. 2723.27 2.02 0.151947 0.133145 27778 195446 -1 1857 24 1459 2384 167378 38752 3.95812 3.95812 -125.643 -3.95812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0291449 0.0253372 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.15 vpr 63.32 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30400 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 336 268 1 193 78 17 17 289 -1 unnamed_device 24.4 MiB 2.82 864 10536 4352 5849 335 63.3 MiB 0.10 0.00 4.46745 -139.506 -4.46745 4.46745 0.72 0.000685913 0.000636325 0.0455526 0.0423186 44 3120 46 6.99608e+06 206020 787024. 2723.27 5.33 0.299625 0.258698 27778 195446 -1 2219 21 1490 2510 218025 47308 4.36971 4.36971 -150.636 -4.36971 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0283417 0.0247472 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 11.91 vpr 63.52 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.4 MiB 3.43 959 11981 4937 6553 491 63.5 MiB 0.11 0.00 3.38926 -120.16 -3.38926 3.38926 0.67 0.000708891 0.000657102 0.051428 0.0476881 60 2244 24 6.99608e+06 250167 1.01997e+06 3529.29 5.30 0.299101 0.258421 30658 258169 -1 1762 21 1410 2064 123116 29745 3.25596 3.25596 -115.922 -3.25596 0 0 1.27783e+06 4421.56 0.33 0.07 0.24 -1 -1 0.33 0.0298554 0.026117 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.49 vpr 62.68 MiB -1 -1 0.18 17896 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.0 MiB 0.81 493 10924 4387 5255 1282 62.7 MiB 0.08 0.00 3.74847 -105.464 -3.74847 3.74847 0.68 0.000552856 0.000515081 0.041063 0.0382139 44 1722 34 6.99608e+06 220735 787024. 2723.27 1.88 0.163426 0.141957 27778 195446 -1 1171 21 1171 1713 134252 32052 3.02191 3.02191 -101.224 -3.02191 0 0 997811. 3452.63 0.26 0.06 0.13 -1 -1 0.26 0.0231677 0.0200941 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 13.08 vpr 62.75 MiB -1 -1 0.22 17736 1 0.03 -1 -1 30076 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.35 646 12568 4471 6001 2096 62.7 MiB 0.09 0.00 2.86205 -89.6785 -2.86205 2.86205 0.70 0.000596601 0.000553439 0.0404695 0.0376206 40 2046 44 6.99608e+06 367892 706193. 2443.58 9.90 0.301415 0.259343 26914 176310 -1 1679 21 1162 1930 167655 41587 3.23737 3.23737 -103.037 -3.23737 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0243749 0.021143 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 5.52 vpr 63.03 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30284 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.3 MiB 0.86 971 11487 3139 6320 2028 63.0 MiB 0.10 0.00 3.37244 -119.224 -3.37244 3.37244 0.68 0.000629846 0.000585743 0.0471929 0.0439202 38 2510 23 6.99608e+06 206020 678818. 2348.85 1.79 0.174452 0.152271 26626 170182 -1 2071 18 1660 2239 168297 35771 3.50741 3.50741 -126.791 -3.50741 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.023563 0.0205951 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.84 vpr 62.80 MiB -1 -1 0.21 17860 1 0.03 -1 -1 30184 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.2 MiB 0.85 721 12465 5225 6975 265 62.8 MiB 0.10 0.00 3.92192 -133.493 -3.92192 3.92192 0.68 0.000623083 0.000579312 0.0497209 0.0462627 38 2622 30 6.99608e+06 191304 678818. 2348.85 2.15 0.177739 0.155328 26626 170182 -1 1885 19 1498 1863 167052 35482 3.33856 3.33856 -127.368 -3.33856 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0241382 0.021098 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 12.33 vpr 63.18 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30536 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.3 MiB 1.80 754 13516 5712 6664 1140 63.2 MiB 0.11 0.00 3.97461 -128.358 -3.97461 3.97461 0.67 0.000622409 0.000576903 0.0535596 0.0497265 38 2495 37 6.99608e+06 206020 678818. 2348.85 7.61 0.290368 0.250669 26626 170182 -1 1877 19 1440 1936 144531 31810 4.1193 4.1193 -132.916 -4.1193 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0237811 0.0207679 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.08 vpr 62.69 MiB -1 -1 0.22 18040 1 0.02 -1 -1 30244 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.2 MiB 0.65 849 10977 2887 7437 653 62.7 MiB 0.09 0.00 3.07868 -112.05 -3.07868 3.07868 0.68 0.000590888 0.000550152 0.043241 0.0402983 40 2073 21 6.99608e+06 161872 706193. 2443.58 3.50 0.212153 0.183337 26914 176310 -1 1903 21 1177 1516 143718 29819 2.98387 2.98387 -120.376 -2.98387 0 0 926341. 3205.33 0.26 0.07 0.17 -1 -1 0.26 0.0244678 0.0212788 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.54 vpr 63.32 MiB -1 -1 0.24 18348 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.3 MiB 0.79 843 12585 5259 6846 480 63.3 MiB 0.11 0.00 3.78992 -128.054 -3.78992 3.78992 0.68 0.000698463 0.000649154 0.0541061 0.0502953 46 2868 30 6.99608e+06 220735 828058. 2865.25 4.74 0.279126 0.241659 28066 200906 -1 2083 23 1994 2972 236374 51689 3.48381 3.48381 -130.891 -3.48381 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0310551 0.0270907 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 5.96 vpr 63.34 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.3 MiB 0.79 1008 11981 3623 6079 2279 63.3 MiB 0.11 0.00 4.68712 -142.46 -4.68712 4.68712 0.68 0.000704449 0.000654191 0.0512014 0.0475528 54 2354 26 6.99608e+06 250167 949917. 3286.91 2.08 0.194053 0.169473 29506 232905 -1 1818 25 2094 2851 202373 47066 4.17491 4.17491 -142.251 -4.17491 0 0 1.17392e+06 4061.99 0.29 0.09 0.22 -1 -1 0.29 0.0339712 0.0295427 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 12.01 vpr 62.53 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30188 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 29 32 248 215 1 154 74 17 17 289 -1 unnamed_device 23.9 MiB 3.45 611 8754 3597 4747 410 62.5 MiB 0.07 0.00 3.0585 -88.5437 -3.0585 3.0585 0.74 0.000542289 0.000504608 0.0328337 0.0305834 38 1880 28 6.99608e+06 191304 678818. 2348.85 5.70 0.231168 0.198232 26626 170182 -1 1427 26 1171 1648 178027 64766 2.89347 2.89347 -95.7987 -2.89347 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0268205 0.0232084 63 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.98 vpr 63.39 MiB -1 -1 0.21 18148 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.4 MiB 1.40 1140 12464 4408 6591 1465 63.4 MiB 0.12 0.00 3.78769 -130.542 -3.78769 3.78769 0.68 0.000718875 0.000666763 0.054901 0.0509731 42 3336 48 6.99608e+06 235451 744469. 2576.02 4.59 0.311533 0.269201 27202 183097 -1 2553 23 2137 3282 294346 60400 3.53451 3.53451 -137.204 -3.53451 0 0 949917. 3286.91 0.24 0.10 0.16 -1 -1 0.24 0.03217 0.0280825 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.79 vpr 63.20 MiB -1 -1 0.13 18236 1 0.03 -1 -1 30080 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.3 MiB 0.72 918 13768 4694 7034 2040 63.2 MiB 0.12 0.00 4.0525 -128.935 -4.0525 4.0525 0.68 0.000691676 0.000643159 0.0583607 0.0543006 38 2783 48 6.99608e+06 220735 678818. 2348.85 2.23 0.190833 0.167457 26626 170182 -1 2142 23 1730 2375 236394 51694 3.25321 3.25321 -123.43 -3.25321 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0315588 0.0276291 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 8.07 vpr 63.22 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30228 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.77 903 11064 3444 5931 1689 63.2 MiB 0.10 0.00 3.21889 -121.244 -3.21889 3.21889 0.69 0.000645739 0.000599563 0.0446835 0.041548 44 2749 36 6.99608e+06 220735 787024. 2723.27 4.36 0.245294 0.212054 27778 195446 -1 2055 22 1814 2261 190479 41538 3.07012 3.07012 -121.754 -3.07012 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0278241 0.0242211 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.52 vpr 62.38 MiB -1 -1 0.17 18188 1 0.03 -1 -1 30280 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 222 206 1 133 72 17 17 289 -1 unnamed_device 23.9 MiB 1.48 489 10949 4586 6034 329 62.4 MiB 0.08 0.00 2.30246 -84.2954 -2.30246 2.30246 0.69 0.000496861 0.000462021 0.0385301 0.0358684 36 1686 45 6.99608e+06 147157 648988. 2245.63 3.32 0.190432 0.164295 26050 158493 -1 1183 16 756 833 72235 17268 2.42913 2.42913 -91.9913 -2.42913 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0167415 0.0146298 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.09 vpr 62.72 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30556 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.1 MiB 3.02 914 8396 2822 4710 864 62.7 MiB 0.09 0.00 4.11252 -133.321 -4.11252 4.11252 0.73 0.000613327 0.000570216 0.0378787 0.0351104 36 2304 25 6.99608e+06 191304 648988. 2245.63 5.08 0.233722 0.201318 26050 158493 -1 2051 24 1606 2280 285081 73882 3.73061 3.73061 -141.603 -3.73061 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0279508 0.0242473 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.75 vpr 63.24 MiB -1 -1 0.19 18364 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.3 MiB 1.09 753 13260 4777 6497 1986 63.2 MiB 0.12 0.00 3.96428 -130.083 -3.96428 3.96428 0.68 0.000810026 0.000747345 0.0561233 0.0519578 46 2675 50 6.99608e+06 294314 828058. 2865.25 4.71 0.304444 0.263312 28066 200906 -1 1829 21 1870 2722 202521 48522 3.86415 3.86415 -137.674 -3.86415 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280878 0.024654 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.36 vpr 63.64 MiB -1 -1 0.17 18272 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1213 11432 3690 6927 815 63.6 MiB 0.11 0.00 4.63424 -146.103 -4.63424 4.63424 0.68 0.000722445 0.000671419 0.0507366 0.0471573 44 3169 22 6.99608e+06 235451 787024. 2723.27 3.95 0.266643 0.230595 27778 195446 -1 2575 19 1666 2486 201192 40418 3.84232 3.84232 -140.174 -3.84232 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0279447 0.0244555 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.13 vpr 62.25 MiB -1 -1 0.10 17952 1 0.02 -1 -1 30548 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 26 32 190 182 1 122 71 17 17 289 -1 unnamed_device 23.7 MiB 0.73 398 7809 3208 4118 483 62.3 MiB 0.05 0.00 2.6826 -76.1752 -2.6826 2.6826 0.68 0.000426669 0.000395708 0.0242135 0.0225137 38 1303 33 6.99608e+06 191304 678818. 2348.85 1.76 0.115774 0.100076 26626 170182 -1 963 20 721 809 72420 16775 2.30307 2.30307 -73.7861 -2.30307 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0172081 0.0149655 52 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.95 vpr 62.75 MiB -1 -1 0.22 17764 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 0.87 705 12078 4998 6546 534 62.7 MiB 0.10 0.00 4.4821 -114.357 -4.4821 4.4821 0.68 0.000612878 0.000569545 0.046022 0.0427892 38 2698 27 6.99608e+06 220735 678818. 2348.85 4.17 0.178496 0.155754 26626 170182 -1 1954 23 1419 2416 197936 43766 3.78296 3.78296 -121.838 -3.78296 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277355 0.0241346 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.26 vpr 62.20 MiB -1 -1 0.19 17384 1 0.03 -1 -1 29952 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.5 MiB 0.22 437 9906 4129 5591 186 62.2 MiB 0.06 0.00 2.05011 -68.4317 -2.05011 2.05011 0.68 0.000422912 0.000392752 0.0294598 0.0273625 36 1207 35 6.99608e+06 117725 648988. 2245.63 1.35 0.113215 0.0984966 26050 158493 -1 911 19 566 682 56435 12806 2.02348 2.02348 -70.7598 -2.02348 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0163919 0.0142994 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.30 vpr 62.76 MiB -1 -1 0.24 17896 1 0.03 -1 -1 30144 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.2 MiB 0.92 787 11034 4537 6125 372 62.8 MiB 0.10 0.00 4.53486 -122.805 -4.53486 4.53486 0.68 0.000633007 0.000588573 0.0444814 0.0413798 38 2644 43 6.99608e+06 206020 678818. 2348.85 3.46 0.187567 0.162934 26626 170182 -1 1864 29 1489 2059 268194 93673 4.13361 4.13361 -127.157 -4.13361 0 0 902133. 3121.57 0.23 0.11 0.15 -1 -1 0.23 0.0338474 0.0293608 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.62 vpr 63.03 MiB -1 -1 0.19 17756 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.50 752 10873 3818 5551 1504 63.0 MiB 0.11 0.00 2.96725 -98.6672 -2.96725 2.96725 0.68 0.000634665 0.0005904 0.0478045 0.0444445 38 2710 37 6.99608e+06 309029 678818. 2348.85 3.24 0.189772 0.165405 26626 170182 -1 1920 21 1417 2326 158600 36999 3.12812 3.12812 -112.923 -3.12812 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0261261 0.0228111 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.68 vpr 63.16 MiB -1 -1 0.22 18164 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.07 867 7853 3139 4431 283 63.2 MiB 0.08 0.00 4.12347 -127.886 -4.12347 4.12347 0.72 0.000532242 0.00048631 0.0337816 0.0312944 46 2738 41 6.99608e+06 220735 828058. 2865.25 3.63 0.192674 0.166984 28066 200906 -1 2181 22 1719 2587 190254 43419 3.85501 3.85501 -128.799 -3.85501 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290882 0.025326 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.93 vpr 62.89 MiB -1 -1 0.21 18000 1 0.02 -1 -1 30060 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.3 MiB 2.22 674 9356 2870 4551 1935 62.9 MiB 0.08 0.00 3.13575 -106.667 -3.13575 3.13575 0.69 0.000603667 0.000561981 0.0374729 0.0348761 40 2217 49 6.99608e+06 176588 706193. 2443.58 3.85 0.255502 0.219666 26914 176310 -1 1797 20 1266 1757 166502 36883 3.25457 3.25457 -122.85 -3.25457 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0241186 0.0210075 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.22 vpr 62.69 MiB -1 -1 0.22 18116 1 0.03 -1 -1 30292 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.0 MiB 1.27 589 9996 4089 5442 465 62.7 MiB 0.08 0.00 3.74777 -109.42 -3.74777 3.74777 0.68 0.000565684 0.000525655 0.0373051 0.0347224 48 1951 22 6.99608e+06 206020 865456. 2994.66 4.02 0.204522 0.176384 28354 207349 -1 1463 20 1190 1805 156689 38956 3.24581 3.24581 -110.842 -3.24581 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0225715 0.0196352 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 9.52 vpr 62.79 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30068 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.2 MiB 2.64 566 10702 3839 4998 1865 62.8 MiB 0.08 0.00 3.27594 -101.475 -3.27594 3.27594 0.67 0.000558107 0.000518343 0.0379818 0.0353336 42 2228 35 6.99608e+06 264882 744469. 2576.02 3.96 0.239772 0.205746 27202 183097 -1 1502 22 1294 2101 157785 36966 3.36181 3.36181 -108.095 -3.36181 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.0241068 0.0209217 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.08 vpr 62.65 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.0 MiB 0.40 510 11079 3828 5373 1878 62.7 MiB 0.09 0.00 3.37459 -106.177 -3.37459 3.37459 0.68 0.000565827 0.000526454 0.042625 0.0397107 44 1632 21 6.99608e+06 147157 787024. 2723.27 3.81 0.211861 0.183311 27778 195446 -1 1255 23 1278 1977 120442 31904 3.03062 3.03062 -110.115 -3.03062 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0251787 0.0218552 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.90 vpr 62.68 MiB -1 -1 0.24 17872 1 0.03 -1 -1 30468 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 23.9 MiB 0.99 892 8396 1989 5699 708 62.7 MiB 0.07 0.00 3.27018 -109.388 -3.27018 3.27018 0.68 0.000581304 0.000540744 0.032038 0.0298391 36 2529 37 6.99608e+06 191304 648988. 2245.63 8.09 0.250181 0.214663 26050 158493 -1 1957 21 1260 1716 145686 30648 3.10592 3.10592 -115.413 -3.10592 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0242272 0.0210917 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.34 vpr 62.89 MiB -1 -1 0.25 18084 1 0.03 -1 -1 30344 -1 -1 15 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.2 MiB 1.95 893 11756 3359 7323 1074 62.9 MiB 0.10 0.00 2.90695 -103.76 -2.90695 2.90695 0.68 0.000593611 0.000552602 0.0459979 0.0428254 36 2442 43 6.99608e+06 220735 648988. 2245.63 3.54 0.187169 0.163144 26050 158493 -1 1954 18 1256 1690 139426 28896 3.05912 3.05912 -113.612 -3.05912 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0210485 0.0184402 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.58 vpr 63.45 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30496 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.4 MiB 1.04 941 11432 4088 5131 2213 63.4 MiB 0.10 0.00 4.40712 -125.714 -4.40712 4.40712 0.69 0.000738163 0.000685762 0.0515522 0.047914 54 2574 21 6.99608e+06 235451 949917. 3286.91 4.57 0.284028 0.245943 29506 232905 -1 1986 18 1380 2261 147872 35051 3.58842 3.58842 -121.497 -3.58842 0 0 1.17392e+06 4061.99 0.31 0.07 0.22 -1 -1 0.31 0.0283662 0.0250659 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.06 vpr 63.56 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 391 311 1 244 82 17 17 289 -1 unnamed_device 24.7 MiB 0.81 1003 12186 4031 5776 2379 63.6 MiB 0.12 0.00 4.3859 -150.052 -4.3859 4.3859 0.68 0.000762386 0.000707906 0.0559035 0.0519869 44 3661 45 6.99608e+06 264882 787024. 2723.27 3.20 0.23513 0.205117 27778 195446 -1 2288 24 2353 3309 249990 56885 4.0015 4.0015 -149.159 -4.0015 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0348263 0.0303706 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 62.73 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30080 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.0 MiB 1.12 879 8134 2173 5187 774 62.7 MiB 0.07 0.00 3.62727 -120.528 -3.62727 3.62727 0.69 0.000594896 0.000553184 0.0328955 0.0306322 36 2423 45 6.99608e+06 161872 648988. 2245.63 1.96 0.144642 0.125723 26050 158493 -1 1996 20 1328 1931 181557 35817 3.48246 3.48246 -125.103 -3.48246 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0236361 0.0205862 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.12 vpr 63.68 MiB -1 -1 0.21 18232 1 0.03 -1 -1 30488 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 31 32 370 297 1 227 80 17 17 289 -1 unnamed_device 24.7 MiB 0.88 902 12292 4688 5816 1788 63.7 MiB 0.11 0.00 3.65599 -121.612 -3.65599 3.65599 0.67 0.000727121 0.000675209 0.0569105 0.0527786 50 2759 34 6.99608e+06 250167 902133. 3121.57 5.23 0.304515 0.263576 28642 213929 -1 2077 19 1659 2252 180057 42667 3.51907 3.51907 -125.738 -3.51907 0 0 1.08113e+06 3740.92 0.28 0.08 0.22 -1 -1 0.28 0.02785 0.024403 101 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.38 vpr 63.48 MiB -1 -1 0.25 18132 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1028 12636 4939 6150 1547 63.5 MiB 0.12 0.00 5.24621 -161.935 -5.24621 5.24621 0.67 0.000724436 0.000673102 0.0565533 0.0525867 48 3303 37 6.99608e+06 250167 865456. 2994.66 3.31 0.218581 0.190662 28354 207349 -1 2354 33 2920 4225 465806 138121 5.3112 5.3112 -170.393 -5.3112 0 0 1.05005e+06 3633.38 0.27 0.16 0.18 -1 -1 0.27 0.0432746 0.037431 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 10.08 vpr 63.38 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30508 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.5 MiB 3.57 968 11981 4242 5473 2266 63.4 MiB 0.12 0.00 5.22958 -165.475 -5.22958 5.22958 0.67 0.000735471 0.000683189 0.0530022 0.0492437 38 4038 49 6.99608e+06 264882 678818. 2348.85 3.51 0.205989 0.180022 26626 170182 -1 2704 22 2314 3311 303781 63787 5.01455 5.01455 -170.12 -5.01455 0 0 902133. 3121.57 0.23 0.14 0.15 -1 -1 0.23 0.0393263 0.0346761 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.20 vpr 63.49 MiB -1 -1 0.26 18248 1 0.03 -1 -1 30392 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.7 MiB 1.97 882 12585 5245 6747 593 63.5 MiB 0.11 0.00 3.91372 -127.244 -3.91372 3.91372 0.67 0.000689469 0.000638139 0.0542311 0.0503753 46 3220 49 6.99608e+06 235451 828058. 2865.25 2.25 0.195535 0.170889 28066 200906 -1 2148 20 1690 2211 184808 39735 3.41986 3.41986 -124.041 -3.41986 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0280043 0.024484 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.20 vpr 62.77 MiB -1 -1 0.15 17952 1 0.03 -1 -1 30500 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 291 242 1 177 78 17 17 289 -1 unnamed_device 24.2 MiB 1.11 853 9872 3567 4389 1916 62.8 MiB 0.09 0.00 4.1407 -116.233 -4.1407 4.1407 0.68 0.000622525 0.000579241 0.0390158 0.0363222 40 2523 26 6.99608e+06 206020 706193. 2443.58 2.26 0.16527 0.143684 26914 176310 -1 2086 20 1342 1862 174928 36049 3.96232 3.96232 -123.593 -3.96232 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0247406 0.0215883 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.67 vpr 63.89 MiB -1 -1 0.27 18484 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 24.9 MiB 1.39 1445 14965 4188 8952 1825 63.9 MiB 0.16 0.00 4.92896 -170.692 -4.92896 4.92896 0.70 0.000872834 0.000812089 0.0731754 0.0680412 40 3661 40 6.99608e+06 309029 706193. 2443.58 4.12 0.275788 0.24138 26914 176310 -1 3385 20 2610 3812 343398 69832 4.77544 4.77544 -177.469 -4.77544 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0353872 0.0310039 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.69 vpr 62.64 MiB -1 -1 0.22 18068 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 261 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 2.95 542 11234 3813 5447 1974 62.6 MiB 0.09 0.00 2.9921 -96.3096 -2.9921 2.9921 0.68 0.000561478 0.000522534 0.0428001 0.039845 44 2071 32 6.99608e+06 161872 787024. 2723.27 3.86 0.247706 0.21305 27778 195446 -1 1288 20 1197 1546 103827 25958 3.08197 3.08197 -102.762 -3.08197 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0232778 0.0203583 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.24 vpr 63.28 MiB -1 -1 0.26 18424 1 0.03 -1 -1 30140 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.3 MiB 0.80 912 12694 5540 6748 406 63.3 MiB 0.11 0.00 4.60267 -146.673 -4.60267 4.60267 0.72 0.000687599 0.000639951 0.0551183 0.0512899 48 2598 24 6.99608e+06 220735 865456. 2994.66 2.31 0.192008 0.168087 28354 207349 -1 2041 22 1747 2529 208572 44467 4.26401 4.26401 -140.32 -4.26401 0 0 1.05005e+06 3633.38 0.30 0.09 0.18 -1 -1 0.30 0.029553 0.0258106 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.72 vpr 63.29 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30312 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 1.34 945 13430 5690 7168 572 63.3 MiB 0.12 0.00 3.78685 -125.526 -3.78685 3.78685 0.70 0.000699007 0.000640156 0.0577587 0.053592 46 2883 38 6.99608e+06 220735 828058. 2865.25 3.39 0.212827 0.185578 28066 200906 -1 2024 20 1406 2136 157327 35923 3.43852 3.43852 -123.865 -3.43852 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0277235 0.024243 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 13.53 vpr 62.61 MiB -1 -1 0.22 17724 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 291 230 1 167 80 17 17 289 -1 unnamed_device 24.1 MiB 0.79 698 11776 4112 5155 2509 62.6 MiB 0.10 0.00 4.31309 -119.613 -4.31309 4.31309 0.72 0.000624215 0.000580364 0.0473905 0.0440873 40 2369 28 6.99608e+06 235451 706193. 2443.58 9.83 0.301634 0.259934 26914 176310 -1 2009 23 1477 2518 249326 68662 4.26966 4.26966 -133.049 -4.26966 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0303984 0.0266719 69 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 17.45 vpr 63.26 MiB -1 -1 0.23 18108 1 0.03 -1 -1 30412 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 353 287 1 205 79 17 17 289 -1 unnamed_device 24.2 MiB 1.27 862 12585 4753 5708 2124 63.3 MiB 0.12 0.00 4.19608 -127.939 -4.19608 4.19608 0.68 0.000697465 0.000647605 0.0547042 0.0508222 38 3230 48 6.99608e+06 220735 678818. 2348.85 13.22 0.379394 0.327216 26626 170182 -1 2128 19 1557 2138 182030 38940 3.23321 3.23321 -118.635 -3.23321 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.027071 0.023698 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.43 vpr 63.35 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.3 MiB 1.56 946 11402 4534 5168 1700 63.4 MiB 0.11 0.00 3.61665 -125.974 -3.61665 3.61665 0.68 0.000713295 0.000660621 0.0506747 0.0470515 40 3373 27 6.99608e+06 220735 706193. 2443.58 3.92 0.200571 0.175257 26914 176310 -1 2720 22 1775 2673 249256 52847 3.65666 3.65666 -138.794 -3.65666 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0307386 0.0268369 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.43 vpr 63.57 MiB -1 -1 0.18 18220 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 2.08 1092 13152 5486 7241 425 63.6 MiB 0.13 0.00 3.81447 -129.917 -3.81447 3.81447 0.68 0.0007539 0.000697415 0.0601056 0.0558523 46 2925 27 6.99608e+06 235451 828058. 2865.25 2.38 0.210817 0.184352 28066 200906 -1 2278 19 1796 2390 177921 42101 3.34751 3.34751 -126.123 -3.34751 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0265054 0.0236087 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 13.48 vpr 62.96 MiB -1 -1 0.21 17980 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.03 751 10204 3498 4965 1741 63.0 MiB 0.09 0.00 4.48113 -123.015 -4.48113 4.48113 0.70 0.000638862 0.000592321 0.0418086 0.0387887 40 2686 32 6.99608e+06 206020 706193. 2443.58 9.56 0.313297 0.269703 26914 176310 -1 2024 24 1488 2250 174372 40440 4.13042 4.13042 -131.697 -4.13042 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0295542 0.0256267 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 7.44 vpr 63.13 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30116 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 319 257 1 193 77 17 17 289 -1 unnamed_device 24.2 MiB 1.86 789 11161 3588 5346 2227 63.1 MiB 0.10 0.00 4.08638 -125.107 -4.08638 4.08638 0.63 0.000653365 0.000607436 0.0472488 0.0439479 40 2671 45 6.99608e+06 191304 706193. 2443.58 2.69 0.197172 0.171649 26914 176310 -1 2229 20 1798 2408 237570 50974 3.98701 3.98701 -139.933 -3.98701 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0262954 0.022954 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.01 vpr 63.66 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30340 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 0.83 960 12923 4769 6489 1665 63.7 MiB 0.12 0.00 4.33001 -137.493 -4.33001 4.33001 0.68 0.000730137 0.000678149 0.0579056 0.0538408 46 3262 28 6.99608e+06 235451 828058. 2865.25 4.17 0.275707 0.239069 28066 200906 -1 2240 21 1802 2662 180385 42129 4.03366 4.03366 -137.646 -4.03366 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0306436 0.0268581 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.65 vpr 63.49 MiB -1 -1 0.25 18124 1 0.03 -1 -1 30320 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.6 MiB 1.02 1085 14872 6411 8186 275 63.5 MiB 0.14 0.00 3.95718 -133.91 -3.95718 3.95718 0.68 0.000740004 0.000686835 0.0664649 0.0617078 46 3438 27 6.99608e+06 235451 828058. 2865.25 4.54 0.296906 0.257576 28066 200906 -1 2566 22 2336 3360 279653 57197 3.90226 3.90226 -136.587 -3.90226 0 0 1.01997e+06 3529.29 0.26 0.11 0.17 -1 -1 0.26 0.0324264 0.0283269 106 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.86 vpr 62.63 MiB -1 -1 0.20 18020 1 0.03 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 251 219 1 151 74 17 17 289 -1 unnamed_device 23.9 MiB 0.50 584 9994 4131 5517 346 62.6 MiB 0.08 0.00 3.27254 -98.1459 -3.27254 3.27254 0.67 0.000561698 0.000516963 0.0377823 0.0351549 44 1896 43 6.99608e+06 147157 787024. 2723.27 3.51 0.216424 0.186468 27778 195446 -1 1353 17 935 1329 98033 24166 3.06092 3.06092 -97.4265 -3.06092 0 0 997811. 3452.63 0.26 0.05 0.17 -1 -1 0.26 0.0198614 0.0173881 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.52 vpr 63.37 MiB -1 -1 0.14 18276 1 0.03 -1 -1 30128 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.89 872 9036 3191 4723 1122 63.4 MiB 0.08 0.00 3.89113 -140.293 -3.89113 3.89113 0.70 0.000670937 0.000623647 0.0383708 0.0356826 44 3087 35 6.99608e+06 220735 787024. 2723.27 2.73 0.164018 0.142829 27778 195446 -1 2004 20 1867 2519 222462 45910 3.68341 3.68341 -137.359 -3.68341 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0269781 0.023557 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.93 vpr 63.38 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30328 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.6 MiB 0.88 920 11776 4854 6254 668 63.4 MiB 0.11 0.00 4.78758 -149.316 -4.78758 4.78758 0.74 0.000758856 0.000704735 0.0550565 0.0511591 48 3455 47 6.99608e+06 235451 865456. 2994.66 3.87 0.237289 0.206959 28354 207349 -1 2342 22 2187 3298 304499 71557 4.94376 4.94376 -156.132 -4.94376 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0327941 0.0286679 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.76 vpr 63.25 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.3 MiB 0.62 871 12247 5090 6619 538 63.2 MiB 0.11 0.00 4.21616 -136.097 -4.21616 4.21616 0.68 0.000689467 0.000640708 0.0524246 0.0487448 46 2790 27 6.99608e+06 220735 828058. 2865.25 4.18 0.257943 0.223466 28066 200906 -1 2033 22 1764 2369 168064 38187 3.60811 3.60811 -129.881 -3.60811 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0296379 0.0258116 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 15.97 vpr 62.89 MiB -1 -1 0.18 18064 1 0.03 -1 -1 30504 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 24.3 MiB 1.69 641 12008 4694 6159 1155 62.9 MiB 0.09 0.00 3.67135 -114.032 -3.67135 3.67135 0.71 0.000587415 0.000543521 0.0418311 0.0388782 40 2118 44 6.99608e+06 294314 706193. 2443.58 11.34 0.296133 0.254635 26914 176310 -1 1753 21 1282 1962 260164 82998 3.52936 3.52936 -121.75 -3.52936 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0246824 0.0214894 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 8.03 vpr 63.73 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30516 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 431 332 1 260 82 17 17 289 -1 unnamed_device 24.7 MiB 0.94 1432 14144 5603 7508 1033 63.7 MiB 0.15 0.00 6.40939 -192.555 -6.40939 6.40939 0.68 0.000823784 0.000765761 0.0682564 0.0634251 48 3781 32 6.99608e+06 264882 865456. 2994.66 3.97 0.321909 0.279448 28354 207349 -1 3159 22 2427 3546 304769 61049 5.77539 5.77539 -188.538 -5.77539 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0359297 0.0313662 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.91 vpr 63.22 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30352 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.2 MiB 0.65 852 9374 3899 5203 272 63.2 MiB 0.09 0.00 4.9189 -148.418 -4.9189 4.9189 0.68 0.000691929 0.000643346 0.0418568 0.0389459 38 2787 31 6.99608e+06 206020 678818. 2348.85 3.25 0.176989 0.154242 26626 170182 -1 2002 21 1728 2348 174385 37585 4.06535 4.06535 -139.343 -4.06535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0285734 0.0250144 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 12.41 vpr 62.42 MiB -1 -1 0.23 17608 1 0.03 -1 -1 30516 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.8 MiB 0.27 535 10509 4368 5789 352 62.4 MiB 0.08 0.00 2.922 -91.3971 -2.922 2.922 0.69 0.000534092 0.000496977 0.0363415 0.0338374 40 1896 38 6.99608e+06 191304 706193. 2443.58 9.31 0.265828 0.228333 26914 176310 -1 1509 21 991 1481 143085 34737 3.14927 3.14927 -103.816 -3.14927 0 0 926341. 3205.33 0.26 0.06 0.15 -1 -1 0.26 0.0219548 0.0190264 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.59 vpr 63.37 MiB -1 -1 0.24 18360 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.42 937 15044 6237 7403 1404 63.4 MiB 0.14 0.00 4.79375 -134.609 -4.79375 4.79375 0.68 0.000556487 0.000509724 0.064016 0.0594919 44 3213 27 6.99608e+06 235451 787024. 2723.27 2.17 0.184961 0.162973 27778 195446 -1 2245 25 1746 2823 236258 49811 4.97986 4.97986 -144.606 -4.97986 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0334141 0.0291243 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.02 vpr 62.61 MiB -1 -1 0.17 17692 1 0.02 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 23.9 MiB 0.76 492 10204 2692 5791 1721 62.6 MiB 0.08 0.00 2.966 -96.76 -2.966 2.966 0.72 0.000554457 0.000516121 0.036069 0.0335809 38 1631 32 6.99608e+06 206020 678818. 2348.85 2.50 0.153438 0.133257 26626 170182 -1 1195 22 1046 1513 86598 21931 3.06997 3.06997 -104.764 -3.06997 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0240837 0.0209323 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.77 vpr 62.84 MiB -1 -1 0.23 17960 1 0.03 -1 -1 30048 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.3 MiB 0.74 683 11293 4547 5793 953 62.8 MiB 0.10 0.00 3.84183 -118.192 -3.84183 3.84183 0.68 0.000588344 0.000547567 0.0443713 0.0412897 38 2131 30 6.99608e+06 191304 678818. 2348.85 3.15 0.172746 0.150735 26626 170182 -1 1548 21 1163 1560 112003 25178 3.20221 3.20221 -112.039 -3.20221 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0246041 0.021383 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.01 vpr 63.45 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30336 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.6 MiB 1.03 978 11064 4603 5811 650 63.4 MiB 0.10 0.00 4.04056 -127.05 -4.04056 4.04056 0.68 0.000691021 0.000641493 0.047699 0.0443335 44 3460 36 6.99608e+06 264882 787024. 2723.27 4.98 0.314581 0.270737 27778 195446 -1 2237 22 1721 2487 195932 42997 3.88346 3.88346 -131.875 -3.88346 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0297128 0.0258786 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.99 vpr 63.30 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 358 289 1 219 79 17 17 289 -1 unnamed_device 24.3 MiB 1.37 980 14444 5001 7107 2336 63.3 MiB 0.13 0.00 4.54753 -143.667 -4.54753 4.54753 0.68 0.000700086 0.000650022 0.0630786 0.0586228 38 3493 41 6.99608e+06 220735 678818. 2348.85 2.65 0.197532 0.173294 26626 170182 -1 2608 21 2012 2796 244213 51678 4.40255 4.40255 -157.439 -4.40255 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.029502 0.0257754 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.42 vpr 63.20 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.3 MiB 3.11 1118 12585 4147 6271 2167 63.2 MiB 0.12 0.00 4.58917 -148.796 -4.58917 4.58917 0.71 0.000701113 0.000652239 0.0548877 0.0510579 40 2940 33 6.99608e+06 220735 706193. 2443.58 3.34 0.207768 0.181434 26914 176310 -1 2614 22 1958 2844 308347 61854 4.45201 4.45201 -153.727 -4.45201 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0307348 0.0268196 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.18 vpr 62.77 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30100 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 24.2 MiB 1.72 646 11767 4636 5730 1401 62.8 MiB 0.10 0.00 4.03444 -123.732 -4.03444 4.03444 0.72 0.000593108 0.000552054 0.0461891 0.0430133 46 2438 26 6.99608e+06 161872 828058. 2865.25 4.43 0.222702 0.192698 28066 200906 -1 1572 26 1180 1552 122096 28753 3.46386 3.46386 -118.174 -3.46386 0 0 1.01997e+06 3529.29 0.26 0.07 0.20 -1 -1 0.26 0.0287614 0.0249455 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 5.75 vpr 63.28 MiB -1 -1 0.24 18316 1 0.02 -1 -1 30400 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.3 MiB 0.80 795 12791 5222 5710 1859 63.3 MiB 0.11 0.00 3.72927 -124.319 -3.72927 3.72927 0.69 0.000642652 0.000597184 0.0532818 0.0495481 44 2591 26 6.99608e+06 206020 787024. 2723.27 1.95 0.15546 0.136678 27778 195446 -1 1899 23 1534 2162 165982 36611 3.60141 3.60141 -123.632 -3.60141 0 0 997811. 3452.63 0.26 0.08 0.18 -1 -1 0.26 0.0285564 0.0248507 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.54 vpr 63.21 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.2 MiB 1.19 844 13731 4372 6963 2396 63.2 MiB 0.12 0.00 3.3817 -109.729 -3.3817 3.3817 0.68 0.000651228 0.000604635 0.0536258 0.049803 40 2972 39 6.99608e+06 279598 706193. 2443.58 3.34 0.210864 0.184502 26914 176310 -1 1994 24 1750 2466 236383 60060 3.06321 3.06321 -110.106 -3.06321 0 0 926341. 3205.33 0.24 0.10 0.14 -1 -1 0.24 0.0301618 0.0261913 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.36 vpr 62.68 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30316 -1 -1 17 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.2 MiB 0.51 703 11976 4217 5816 1943 62.7 MiB 0.09 0.00 3.6892 -102.61 -3.6892 3.6892 0.68 0.000586793 0.000545683 0.0452123 0.04203 40 2134 23 6.99608e+06 250167 706193. 2443.58 3.96 0.23387 0.201701 26914 176310 -1 1788 20 1317 1928 212398 44387 3.51816 3.51816 -110.645 -3.51816 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0236136 0.0205335 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 5.51 vpr 63.12 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30396 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.2 MiB 0.76 796 9042 3476 4677 889 63.1 MiB 0.09 0.00 4.23312 -132.968 -4.23312 4.23312 0.71 0.000632875 0.000588264 0.0393155 0.0365005 44 2471 25 6.99608e+06 220735 787024. 2723.27 1.75 0.145968 0.127446 27778 195446 -1 1793 21 1664 2228 177685 38515 3.71386 3.71386 -130.295 -3.71386 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0264488 0.0230325 88 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.73 vpr 63.25 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30188 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.79 932 13524 5742 7441 341 63.3 MiB 0.12 0.00 3.33761 -122.631 -3.33761 3.33761 0.68 0.000661775 0.000614173 0.0565403 0.0525286 46 2602 32 6.99608e+06 206020 828058. 2865.25 3.94 0.265991 0.230251 28066 200906 -1 2009 20 1718 2353 172584 38355 3.51211 3.51211 -128.602 -3.51211 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0266526 0.0232426 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 5.38 vpr 62.69 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30376 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.2 MiB 0.53 734 13911 5021 5993 2897 62.7 MiB 0.12 0.00 4.52238 -122.271 -4.52238 4.52238 0.68 0.000715989 0.000660621 0.0542717 0.0501172 44 2469 50 6.99608e+06 353176 787024. 2723.27 1.95 0.184135 0.160578 27778 195446 -1 1737 22 1226 2079 141220 32771 4.03642 4.03642 -127.786 -4.03642 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0271386 0.0236522 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.97 vpr 63.46 MiB -1 -1 0.18 18352 1 0.03 -1 -1 30456 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.6 MiB 1.17 829 10204 4200 5555 449 63.5 MiB 0.10 0.00 4.50341 -148.643 -4.50341 4.50341 0.68 0.000702203 0.000652403 0.0461568 0.0429482 52 2882 26 6.99608e+06 206020 926341. 3205.33 5.82 0.308354 0.265983 29218 227130 -1 2059 21 1658 2441 183994 42143 3.9837 3.9837 -139.238 -3.9837 0 0 1.14541e+06 3963.36 0.29 0.08 0.23 -1 -1 0.29 0.0293451 0.0256825 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.34 vpr 63.62 MiB -1 -1 0.25 18144 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1083 14606 4862 7486 2258 63.6 MiB 0.14 0.00 5.11069 -165.7 -5.11069 5.11069 0.68 0.000744127 0.000688213 0.065007 0.0603551 44 3460 33 6.99608e+06 250167 787024. 2723.27 3.37 0.226346 0.198104 27778 195446 -1 2572 23 2258 3110 251900 53678 5.12834 5.12834 -169.932 -5.12834 0 0 997811. 3452.63 0.28 0.10 0.17 -1 -1 0.28 0.0333417 0.0290446 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.11 vpr 63.51 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.7 MiB 0.98 1036 9181 3131 4714 1336 63.5 MiB 0.10 0.00 4.33426 -143.87 -4.33426 4.33426 0.71 0.000745672 0.000692504 0.0423756 0.0394432 56 3044 44 6.99608e+06 250167 973134. 3367.25 6.06 0.347236 0.298821 29794 239141 -1 2372 22 2062 2896 252385 53060 4.0145 4.0145 -144.544 -4.0145 0 0 1.19926e+06 4149.71 0.30 0.10 0.22 -1 -1 0.30 0.0322058 0.0281234 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.45 vpr 62.75 MiB -1 -1 0.22 18100 1 0.03 -1 -1 30164 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.3 MiB 0.85 635 9713 3107 4623 1983 62.8 MiB 0.08 0.00 4.08266 -116.386 -4.08266 4.08266 0.68 0.000578989 0.000537771 0.0376978 0.0350579 44 2129 25 6.99608e+06 191304 787024. 2723.27 1.69 0.131355 0.114783 27778 195446 -1 1497 24 1199 1715 131162 28757 3.21021 3.21021 -110.586 -3.21021 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0267396 0.0232279 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.91 vpr 63.38 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30568 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 883 12120 4402 5485 2233 63.4 MiB 0.11 0.00 5.1699 -158.063 -5.1699 5.1699 0.67 0.000721968 0.000671199 0.0536661 0.0498326 48 2922 49 6.99608e+06 264882 865456. 2994.66 4.99 0.349744 0.301395 28354 207349 -1 2248 21 2138 3053 249900 59890 5.1971 5.1971 -167.765 -5.1971 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.030304 0.0264798 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 8.13 vpr 63.16 MiB -1 -1 0.24 18156 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 0.69 788 9374 3088 4347 1939 63.2 MiB 0.09 0.00 4.91711 -144.854 -4.91711 4.91711 0.69 0.000687274 0.000639083 0.0416753 0.0387941 54 2286 40 6.99608e+06 206020 949917. 3286.91 4.31 0.267315 0.230725 29506 232905 -1 1621 19 1321 2164 139952 35343 4.04535 4.04535 -135.966 -4.04535 0 0 1.17392e+06 4061.99 0.30 0.07 0.21 -1 -1 0.30 0.026567 0.0232804 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.22 vpr 63.39 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 340 275 1 196 80 17 17 289 -1 unnamed_device 24.4 MiB 1.08 828 14528 6197 7823 508 63.4 MiB 0.13 0.00 5.0524 -144.146 -5.0524 5.0524 0.68 0.000683269 0.0006346 0.060004 0.0557774 38 3321 44 6.99608e+06 250167 678818. 2348.85 3.25 0.204318 0.179017 26626 170182 -1 2238 25 1699 2500 204991 46682 4.45981 4.45981 -147.934 -4.45981 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0324157 0.0282148 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.82 vpr 63.40 MiB -1 -1 0.25 18240 1 0.03 -1 -1 30036 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 1.34 998 14606 5096 6874 2636 63.4 MiB 0.13 0.00 4.3242 -135.003 -4.3242 4.3242 0.67 0.000719139 0.000668155 0.063099 0.0586206 46 3279 31 6.99608e+06 279598 828058. 2865.25 4.40 0.277742 0.240779 28066 200906 -1 2277 21 2181 2990 217660 49510 4.4295 4.4295 -146.67 -4.4295 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0298567 0.0261268 107 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.04 vpr 63.32 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.3 MiB 1.50 1123 15831 6103 7773 1955 63.3 MiB 0.15 0.00 4.68727 -152.859 -4.68727 4.68727 0.69 0.000724986 0.000673495 0.067514 0.0626748 44 2988 22 6.99608e+06 250167 787024. 2723.27 4.44 0.277239 0.241021 27778 195446 -1 2413 20 1812 2583 214244 43226 4.27741 4.27741 -153.972 -4.27741 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0286897 0.0250656 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.46 vpr 63.50 MiB -1 -1 0.21 18196 1 0.03 -1 -1 30312 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1106 12156 3661 6482 2013 63.5 MiB 0.11 0.00 3.82165 -125.941 -3.82165 3.82165 0.71 0.000713098 0.000661566 0.0522412 0.0485103 38 3242 28 6.99608e+06 294314 678818. 2348.85 3.64 0.208609 0.1823 26626 170182 -1 2602 22 1986 2601 212313 44205 3.85722 3.85722 -135.545 -3.85722 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0308992 0.0269335 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.51 vpr 62.55 MiB -1 -1 0.21 17740 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 24.1 MiB 2.17 497 9529 2774 4777 1978 62.6 MiB 0.07 0.00 3.56099 -102.406 -3.56099 3.56099 0.68 0.000551925 0.000513414 0.0359835 0.0335279 50 1343 28 6.99608e+06 147157 902133. 3121.57 2.47 0.148823 0.129384 28642 213929 -1 1025 26 974 1476 91476 23979 3.21827 3.21827 -98.6875 -3.21827 0 0 1.08113e+06 3740.92 0.28 0.06 0.20 -1 -1 0.28 0.0267765 0.0232479 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.51 vpr 63.46 MiB -1 -1 0.23 18176 1 0.03 -1 -1 30388 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 0.69 934 8831 2712 4206 1913 63.5 MiB 0.09 0.00 5.01054 -157.498 -5.01054 5.01054 0.67 0.000729128 0.000677151 0.0392439 0.0364633 54 2473 24 6.99608e+06 250167 949917. 3286.91 4.75 0.283383 0.244217 29506 232905 -1 2014 23 1966 2770 224036 48219 4.52184 4.52184 -150.566 -4.52184 0 0 1.17392e+06 4061.99 0.30 0.10 0.24 -1 -1 0.30 0.0328562 0.028753 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.06 vpr 63.64 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30280 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.7 MiB 0.90 1037 11456 4156 5041 2259 63.6 MiB 0.11 0.00 4.93306 -166.082 -4.93306 4.93306 0.70 0.000760506 0.000706463 0.0526707 0.0489376 44 3965 44 6.99608e+06 250167 787024. 2723.27 3.09 0.202959 0.177746 27778 195446 -1 2622 24 2664 3735 313256 64961 4.90074 4.90074 -173.084 -4.90074 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0352523 0.0307584 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.24 vpr 62.68 MiB -1 -1 0.17 18068 1 0.03 -1 -1 30300 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.20 644 12241 5168 6711 362 62.7 MiB 0.10 0.00 3.78577 -113.025 -3.78577 3.78577 0.68 0.000587067 0.000538559 0.046738 0.0434737 44 2214 37 6.99608e+06 161872 787024. 2723.27 4.18 0.240027 0.207533 27778 195446 -1 1516 21 1065 1330 98779 22991 3.09311 3.09311 -108.774 -3.09311 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0240878 0.0209928 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.70 vpr 62.78 MiB -1 -1 0.22 17588 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.2 MiB 0.89 467 10956 2929 5982 2045 62.8 MiB 0.08 0.00 3.36359 -99.0047 -3.36359 3.36359 0.75 0.000557263 0.000519207 0.0394894 0.0367793 48 1458 23 6.99608e+06 191304 865456. 2994.66 3.82 0.228087 0.196324 28354 207349 -1 1149 20 1037 1562 107224 27427 2.97667 2.97667 -103.555 -2.97667 0 0 1.05005e+06 3633.38 0.27 0.06 0.18 -1 -1 0.27 0.0220632 0.0191992 57 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 10.82 vpr 63.16 MiB -1 -1 0.24 18192 1 0.03 -1 -1 30416 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.1 MiB 0.85 775 12754 5312 6863 579 63.2 MiB 0.11 0.00 4.29802 -140.072 -4.29802 4.29802 0.68 0.000698643 0.000649637 0.0552815 0.0514174 48 2804 25 6.99608e+06 220735 865456. 2994.66 6.99 0.301877 0.261537 28354 207349 -1 2110 22 1910 2568 220393 52114 4.7131 4.7131 -155.264 -4.7131 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0301788 0.0263432 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.84 vpr 63.21 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 356 289 1 217 79 17 17 289 -1 unnamed_device 24.2 MiB 1.66 1200 10050 2860 5275 1915 63.2 MiB 0.10 0.00 4.58812 -146.135 -4.58812 4.58812 0.68 0.000705137 0.00065402 0.0444481 0.0412489 44 3098 28 6.99608e+06 220735 787024. 2723.27 4.23 0.278932 0.240665 27778 195446 -1 2424 23 1470 2021 162241 32994 4.01671 4.01671 -141.1 -4.01671 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0312084 0.0272185 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.67 vpr 63.31 MiB -1 -1 0.20 18028 1 0.03 -1 -1 30172 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.4 MiB 0.44 875 12156 5059 6582 515 63.3 MiB 0.11 0.00 4.64591 -137.502 -4.64591 4.64591 0.68 0.000714676 0.000664102 0.0523771 0.0487032 40 3001 48 6.99608e+06 250167 706193. 2443.58 4.28 0.230235 0.200903 26914 176310 -1 2413 25 2029 3465 277166 62434 5.02705 5.02705 -153.157 -5.02705 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0340167 0.0295919 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.61 vpr 63.11 MiB -1 -1 0.25 18200 1 0.03 -1 -1 30312 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.2 MiB 2.49 811 12860 4243 6447 2170 63.1 MiB 0.11 0.00 3.96842 -107.825 -3.96842 3.96842 0.68 0.00064619 0.000601724 0.0521514 0.0485206 46 2449 28 6.99608e+06 235451 828058. 2865.25 4.14 0.238832 0.206488 28066 200906 -1 1888 22 1521 2302 187777 40324 3.20841 3.20841 -110.256 -3.20841 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0275544 0.0239894 87 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 13.68 vpr 62.70 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30348 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 23.9 MiB 2.03 489 7669 3106 4069 494 62.7 MiB 0.06 0.00 3.4808 -102.051 -3.4808 3.4808 0.67 0.000549273 0.000511468 0.0290817 0.0270601 38 2144 42 6.99608e+06 220735 678818. 2348.85 8.90 0.277872 0.238007 26626 170182 -1 1355 22 1106 1621 145910 35143 3.53956 3.53956 -112.677 -3.53956 0 0 902133. 3121.57 0.23 0.07 0.10 -1 -1 0.23 0.0238126 0.0206506 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.58 vpr 63.82 MiB -1 -1 0.25 18492 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1332 12186 3960 6618 1608 63.8 MiB 0.13 0.00 4.21393 -148.472 -4.21393 4.21393 0.67 0.000812541 0.000755633 0.0586104 0.054515 46 3802 31 6.99608e+06 264882 828058. 2865.25 3.50 0.229665 0.200567 28066 200906 -1 3098 25 2477 3827 319015 62018 4.29751 4.29751 -154.976 -4.29751 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0385638 0.0336358 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 18.70 vpr 63.29 MiB -1 -1 0.26 18240 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.3 MiB 0.95 986 5756 1263 4208 285 63.3 MiB 0.07 0.00 5.65424 -162.981 -5.65424 5.65424 0.68 0.00071174 0.00066078 0.0264575 0.0245727 40 3074 34 6.99608e+06 250167 706193. 2443.58 14.65 0.325992 0.279852 26914 176310 -1 2702 28 2647 3753 480560 145673 5.2637 5.2637 -178.943 -5.2637 0 0 926341. 3205.33 0.24 0.16 0.16 -1 -1 0.24 0.0369331 0.0320309 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.94 vpr 63.28 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.2 MiB 0.88 966 12030 5173 6617 240 63.3 MiB 0.10 0.00 3.99123 -142.235 -3.99123 3.99123 0.69 0.000657195 0.000610797 0.049849 0.046324 48 2359 23 6.99608e+06 206020 865456. 2994.66 4.10 0.235182 0.203781 28354 207349 -1 2012 20 1550 1970 181291 38605 3.6147 3.6147 -137.523 -3.6147 0 0 1.05005e+06 3633.38 0.28 0.08 0.14 -1 -1 0.28 0.0261626 0.0228043 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.06 vpr 63.29 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.73 812 13768 5924 7391 453 63.3 MiB 0.12 0.00 4.14137 -126.485 -4.14137 4.14137 0.68 0.000663297 0.00061557 0.0563809 0.0523515 46 2566 28 6.99608e+06 220735 828058. 2865.25 2.33 0.201777 0.176678 28066 200906 -1 1927 20 1267 1756 117851 26945 3.76272 3.76272 -126.629 -3.76272 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0267856 0.0234235 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.45 vpr 63.38 MiB -1 -1 0.27 18196 1 0.03 -1 -1 30432 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.3 MiB 2.27 911 12120 4489 5478 2153 63.4 MiB 0.11 0.00 4.14153 -124.204 -4.14153 4.14153 0.76 0.00072954 0.00067399 0.0545074 0.0505658 48 2470 25 6.99608e+06 250167 865456. 2994.66 4.03 0.258929 0.224446 28354 207349 -1 2069 21 1768 2487 183168 40754 3.95662 3.95662 -125.048 -3.95662 0 0 1.05005e+06 3633.38 0.27 0.08 0.21 -1 -1 0.27 0.0308451 0.026968 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.92 vpr 63.41 MiB -1 -1 0.20 18112 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 325 268 1 199 80 17 17 289 -1 unnamed_device 24.5 MiB 1.59 860 13496 5767 7196 533 63.4 MiB 0.11 0.00 3.54615 -113.081 -3.54615 3.54615 0.71 0.000651015 0.000604076 0.0534947 0.0496922 46 2607 47 6.99608e+06 264882 828058. 2865.25 4.40 0.26051 0.225405 28066 200906 -1 1990 23 1472 2372 171331 37082 3.14741 3.14741 -111.674 -3.14741 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0290111 0.0252482 89 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 8.05 vpr 63.16 MiB -1 -1 0.24 18144 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 0.85 937 9042 3197 4114 1731 63.2 MiB 0.09 0.00 4.39601 -145.139 -4.39601 4.39601 0.69 0.000665043 0.00061265 0.0409209 0.0380488 46 3268 28 6.99608e+06 206020 828058. 2865.25 4.27 0.18744 0.16335 28066 200906 -1 2357 20 1918 2884 223863 48793 4.09442 4.09442 -146.658 -4.09442 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0283323 0.0248131 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 17.63 vpr 63.63 MiB -1 -1 0.22 18232 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.7 MiB 2.28 985 11260 4054 5703 1503 63.6 MiB 0.11 0.00 3.75091 -129.281 -3.75091 3.75091 0.67 0.000756134 0.000703416 0.0524962 0.0488218 40 3212 32 6.99608e+06 235451 706193. 2443.58 12.37 0.383026 0.330434 26914 176310 -1 2417 21 2274 3028 261524 58194 3.37457 3.37457 -134.662 -3.37457 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0315338 0.0276357 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 10.57 vpr 62.72 MiB -1 -1 0.24 17892 1 0.03 -1 -1 30368 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.86 580 10345 3835 4839 1671 62.7 MiB 0.09 0.00 4.0374 -114.573 -4.0374 4.0374 0.67 0.000570812 0.000530484 0.0395578 0.0367942 40 1759 25 6.99608e+06 206020 706193. 2443.58 5.85 0.271105 0.232557 26914 176310 -1 1521 22 1454 1851 189965 51937 3.55392 3.55392 -121.421 -3.55392 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0316457 0.0274504 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.64 vpr 62.78 MiB -1 -1 0.19 18216 1 0.04 -1 -1 30460 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.1 MiB 1.01 710 11200 4654 6133 413 62.8 MiB 0.10 0.00 4.05854 -127.727 -4.05854 4.05854 0.70 0.000509247 0.000474329 0.0446975 0.0415623 48 2075 27 6.99608e+06 206020 865456. 2994.66 5.61 0.26847 0.231199 28354 207349 -1 1685 19 1263 1746 156420 35580 3.82726 3.82726 -130.05 -3.82726 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0243056 0.021227 81 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.94 vpr 63.20 MiB -1 -1 0.25 18232 1 0.03 -1 -1 30432 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 326 261 1 192 78 17 17 289 -1 unnamed_device 24.2 MiB 0.71 833 12196 4708 5911 1577 63.2 MiB 0.11 0.00 4.19283 -126.892 -4.19283 4.19283 0.68 0.000665103 0.000618353 0.0512775 0.0476883 44 2512 43 6.99608e+06 220735 787024. 2723.27 4.23 0.292912 0.252919 27778 195446 -1 1898 17 1425 2036 154007 34405 3.80592 3.80592 -132.202 -3.80592 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0236632 0.0207572 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.77 vpr 62.77 MiB -1 -1 0.20 17968 1 0.03 -1 -1 30292 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 1.08 625 8909 3845 4668 396 62.8 MiB 0.07 0.00 3.79267 -110.13 -3.79267 3.79267 0.70 0.000563374 0.000524029 0.0344956 0.0320716 44 1701 25 6.99608e+06 191304 787024. 2723.27 3.78 0.19289 0.166107 27778 195446 -1 1404 23 1155 1449 107406 23865 3.03491 3.03491 -100.612 -3.03491 0 0 997811. 3452.63 0.30 0.06 0.17 -1 -1 0.30 0.0296184 0.0260298 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.28 vpr 62.97 MiB -1 -1 0.18 17928 1 0.03 -1 -1 30048 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.5 MiB 0.75 737 11436 4762 6383 291 63.0 MiB 0.10 0.00 4.0773 -124.169 -4.0773 4.0773 0.71 0.000594457 0.000552967 0.0446979 0.0416084 44 2022 22 6.99608e+06 176588 787024. 2723.27 1.65 0.138339 0.121311 27778 195446 -1 1605 23 1334 1754 130156 28569 3.24121 3.24121 -116.641 -3.24121 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0265702 0.0231258 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.24 vpr 63.39 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30536 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 373 300 1 231 81 17 17 289 -1 unnamed_device 24.6 MiB 0.91 983 14606 5438 6820 2348 63.4 MiB 0.14 0.00 4.38351 -142.434 -4.38351 4.38351 0.69 0.000725894 0.000674055 0.0641048 0.0595201 44 3308 29 6.99608e+06 264882 787024. 2723.27 2.36 0.213655 0.18669 27778 195446 -1 2284 22 2017 2674 212903 46643 3.91555 3.91555 -141.293 -3.91555 0 0 997811. 3452.63 0.25 0.09 0.11 -1 -1 0.25 0.0311565 0.0271865 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.10 vpr 62.73 MiB -1 -1 0.23 17912 1 0.03 -1 -1 30300 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.2 MiB 0.72 724 12236 4456 5440 2340 62.7 MiB 0.10 0.00 3.48012 -106.772 -3.48012 3.48012 0.69 0.00057608 0.000535862 0.0457695 0.0425881 40 2354 32 6.99608e+06 191304 706193. 2443.58 2.48 0.167458 0.145807 26914 176310 -1 1973 27 1536 2142 255746 49653 3.28462 3.28462 -115.252 -3.28462 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0287376 0.0248311 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.00 vpr 63.23 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1045 14275 6069 7825 381 63.2 MiB 0.12 0.00 3.51899 -121.288 -3.51899 3.51899 0.69 0.000544714 0.000501752 0.0599277 0.055626 38 2528 20 6.99608e+06 220735 678818. 2348.85 3.80 0.270041 0.234296 26626 170182 -1 2176 20 1461 1984 153571 32028 3.28376 3.28376 -123.98 -3.28376 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0279358 0.0244569 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 18.68 vpr 63.48 MiB -1 -1 0.26 18220 1 0.04 -1 -1 30288 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 396 325 1 254 83 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1199 11603 3562 6376 1665 63.5 MiB 0.11 0.00 4.92082 -166.246 -4.92082 4.92082 0.68 0.00075591 0.000701995 0.050821 0.0471503 44 3396 49 6.99608e+06 294314 787024. 2723.27 13.78 0.367131 0.316627 27778 195446 -1 2597 20 2345 3296 248918 52068 4.70579 4.70579 -163.224 -4.70579 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0293753 0.025716 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.13 vpr 63.16 MiB -1 -1 0.22 17876 1 0.03 -1 -1 30360 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.3 MiB 1.65 739 9516 3925 5290 301 63.2 MiB 0.08 0.00 3.40734 -116.434 -3.40734 3.40734 0.68 0.000619029 0.000574659 0.0389656 0.0362152 46 2552 39 6.99608e+06 176588 828058. 2865.25 4.56 0.239444 0.206334 28066 200906 -1 1830 20 1531 2042 184445 39904 3.54231 3.54231 -116.338 -3.54231 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0249426 0.0217476 81 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 14.11 vpr 62.83 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30268 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 24.3 MiB 0.72 715 9871 2522 5750 1599 62.8 MiB 0.09 0.00 3.90682 -124.154 -3.90682 3.90682 0.68 0.000607256 0.000565371 0.0402432 0.0374987 38 2484 49 6.99608e+06 161872 678818. 2348.85 10.57 0.34239 0.293311 26626 170182 -1 1619 24 1408 1990 124637 31771 3.35457 3.35457 -120.004 -3.35457 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.028012 0.0243335 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.61 vpr 63.29 MiB -1 -1 0.23 18072 1 0.03 -1 -1 30244 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.4 MiB 1.78 781 10370 4270 5693 407 63.3 MiB 0.09 0.00 4.09738 -127.458 -4.09738 4.09738 0.68 0.000658623 0.000612148 0.0434439 0.0404106 40 2413 31 6.99608e+06 206020 706193. 2443.58 2.92 0.187396 0.163172 26914 176310 -1 1992 23 1736 2478 191462 45425 3.87526 3.87526 -134.613 -3.87526 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0292804 0.0255236 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.20 vpr 63.30 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30224 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.3 MiB 1.62 781 11233 4679 5976 578 63.3 MiB 0.10 0.00 3.78147 -113.144 -3.78147 3.78147 0.68 0.000650158 0.000603902 0.045699 0.0424699 44 2558 43 6.99608e+06 264882 787024. 2723.27 3.59 0.256778 0.221376 27778 195446 -1 1831 23 1313 1886 138551 30777 3.28551 3.28551 -106.486 -3.28551 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0288708 0.0251159 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 20.23 vpr 63.49 MiB -1 -1 0.24 18352 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 393 312 1 234 80 17 17 289 -1 unnamed_device 24.6 MiB 0.62 1091 9196 3199 4253 1744 63.5 MiB 0.10 0.00 5.35159 -170.536 -5.35159 5.35159 0.68 0.000760631 0.000706576 0.043288 0.0401652 38 3606 29 6.99608e+06 235451 678818. 2348.85 16.58 0.340262 0.292921 26626 170182 -1 2963 22 2472 3677 328041 64783 5.08154 5.08154 -176.159 -5.08154 0 0 902133. 3121.57 0.25 0.13 0.15 -1 -1 0.25 0.0363162 0.0319266 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.98 vpr 62.37 MiB -1 -1 0.22 17744 1 0.03 -1 -1 30144 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.8 MiB 1.61 501 10476 4309 5764 403 62.4 MiB 0.08 0.00 3.34663 -90.271 -3.34663 3.34663 0.68 0.000528059 0.000491448 0.0367849 0.0342828 42 1777 25 6.99608e+06 191304 744469. 2576.02 3.47 0.215135 0.185054 27202 183097 -1 1367 22 1037 1615 111926 27569 3.00097 3.00097 -97.4931 -3.00097 0 0 949917. 3286.91 0.25 0.06 0.18 -1 -1 0.25 0.022873 0.0198644 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 17.86 vpr 63.66 MiB -1 -1 0.26 18096 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.7 MiB 1.49 1108 15273 5294 7598 2381 63.7 MiB 0.15 0.00 4.76553 -162.292 -4.76553 4.76553 0.68 0.000774035 0.000718168 0.0702038 0.0650351 44 3594 30 6.99608e+06 294314 787024. 2723.27 13.30 0.34887 0.302507 27778 195446 -1 2463 21 2299 2874 212343 45589 4.8872 4.8872 -169.312 -4.8872 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.032705 0.0286895 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.22 vpr 63.46 MiB -1 -1 0.24 18416 1 0.04 -1 -1 30140 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.6 MiB 0.83 1251 14700 5946 7371 1383 63.5 MiB 0.13 0.00 4.39022 -162.789 -4.39022 4.39022 0.68 0.000710934 0.000659548 0.0633445 0.0588333 46 3165 23 6.99608e+06 235451 828058. 2865.25 4.34 0.281305 0.244623 28066 200906 -1 2578 20 2819 3499 286015 57172 4.20235 4.20235 -164.081 -4.20235 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0253136 0.0223992 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.61 vpr 63.58 MiB -1 -1 0.19 18244 1 0.04 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.6 MiB 1.28 938 11571 4789 6322 460 63.6 MiB 0.11 0.00 3.68917 -121.181 -3.68917 3.68917 0.68 0.000716612 0.000665905 0.0512778 0.0476124 44 2997 38 6.99608e+06 220735 787024. 2723.27 2.41 0.213972 0.186545 27778 195446 -1 2021 22 1573 2077 140143 33620 3.32751 3.32751 -120.003 -3.32751 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0306508 0.0267657 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.29 vpr 63.55 MiB -1 -1 0.25 18152 1 0.03 -1 -1 30352 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.7 MiB 0.83 990 12078 4723 5862 1493 63.6 MiB 0.12 0.00 5.88882 -169.671 -5.88882 5.88882 0.68 0.000778059 0.000723208 0.0584115 0.0542753 46 3428 29 6.99608e+06 220735 828058. 2865.25 5.40 0.224816 0.196993 28066 200906 -1 2131 22 1989 2876 203116 44964 5.2634 5.2634 -163.518 -5.2634 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0335882 0.0294317 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.75 vpr 62.52 MiB -1 -1 0.17 18176 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 24.0 MiB 0.60 491 10769 4564 5875 330 62.5 MiB 0.08 0.00 2.5351 -91.4253 -2.5351 2.5351 0.68 0.000499208 0.000464224 0.0367825 0.0342559 38 1623 24 6.99608e+06 176588 678818. 2348.85 4.30 0.206452 0.177476 26626 170182 -1 1243 20 866 1091 98351 21996 2.47467 2.47467 -92.1644 -2.47467 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0198918 0.0172938 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.14 vpr 62.83 MiB -1 -1 0.23 18148 1 0.02 -1 -1 30444 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.3 MiB 3.12 632 10636 4449 5807 380 62.8 MiB 0.09 0.00 3.79502 -118.311 -3.79502 3.79502 0.71 0.000597636 0.000555722 0.0415653 0.0386466 38 1959 24 6.99608e+06 206020 678818. 2348.85 2.16 0.161454 0.140447 26626 170182 -1 1438 22 1176 1825 151610 32402 3.30746 3.30746 -120.098 -3.30746 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0257568 0.022347 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 5.46 vpr 62.91 MiB -1 -1 0.18 17896 1 0.02 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.3 MiB 0.64 759 10756 3879 5476 1401 62.9 MiB 0.09 0.00 3.9181 -124.027 -3.9181 3.9181 0.68 0.000617146 0.000573688 0.0402216 0.0374136 44 2500 22 6.99608e+06 250167 787024. 2723.27 1.98 0.137472 0.12019 27778 195446 -1 1893 21 1463 2309 206036 42705 3.68966 3.68966 -131.837 -3.68966 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0259138 0.0225344 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.68 vpr 62.46 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30204 -1 -1 16 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.8 MiB 0.78 474 9649 4023 4847 779 62.5 MiB 0.07 0.00 3.40263 -78.2884 -3.40263 3.40263 0.68 0.000474866 0.000442114 0.0317539 0.0295654 42 1483 48 6.99608e+06 235451 744469. 2576.02 3.14 0.191496 0.164254 27202 183097 -1 1174 20 926 1251 89668 21860 2.99582 2.99582 -81.2561 -2.99582 0 0 949917. 3286.91 0.24 0.05 0.14 -1 -1 0.24 0.0191883 0.0166881 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.98 vpr 63.37 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.5 MiB 2.90 1081 13206 5184 6272 1750 63.4 MiB 0.13 0.00 3.9338 -132.793 -3.9338 3.9338 0.68 0.000730385 0.00067751 0.0571743 0.053116 40 3653 23 6.99608e+06 250167 706193. 2443.58 5.09 0.204687 0.17896 26914 176310 -1 3103 24 2274 3382 383840 79750 4.68512 4.68512 -148.279 -4.68512 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0339707 0.0295575 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.84 vpr 63.73 MiB -1 -1 0.26 18232 1 0.03 -1 -1 30236 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.8 MiB 2.09 1014 9872 4028 5433 411 63.7 MiB 0.10 0.00 4.45145 -145.194 -4.45145 4.45145 0.68 0.000765408 0.000710734 0.0454601 0.0422168 46 3229 45 6.99608e+06 279598 828058. 2865.25 4.74 0.313165 0.270312 28066 200906 -1 2235 22 1873 2532 179334 42457 4.32971 4.32971 -151.097 -4.32971 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0331657 0.0290011 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 9.83 vpr 62.91 MiB -1 -1 0.35 18560 14 0.25 -1 -1 32752 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 23.9 MiB 1.55 1186 12542 3264 7587 1691 62.9 MiB 0.13 0.00 8.71839 -177.395 -8.71839 8.71839 0.68 0.000902155 0.000836517 0.067312 0.0624662 38 3483 48 6.79088e+06 242496 678818. 2348.85 4.96 0.285392 0.248338 25966 169698 -1 2756 15 1242 3582 189198 42544 7.79745 7.79745 -167.082 -7.79745 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0305612 0.0270076 129 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.20 vpr 63.02 MiB -1 -1 0.38 18428 14 0.28 -1 -1 32696 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 272 304 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1105 6490 1416 4592 482 63.0 MiB 0.07 0.00 7.86897 -158.546 -7.86897 7.86897 0.67 0.000885688 0.000820619 0.0358813 0.0332967 36 3118 40 6.79088e+06 269440 648988. 2245.63 2.93 0.240351 0.207618 25390 158009 -1 2591 18 1263 3297 200863 45222 7.24659 7.24659 -159.324 -7.24659 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0341861 0.0300535 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 10.00 vpr 62.88 MiB -1 -1 0.33 18212 11 0.22 -1 -1 32564 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 280 312 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.96 1230 6489 1446 4360 683 62.9 MiB 0.07 0.00 7.04868 -149.017 -7.04868 7.04868 0.67 0.000895013 0.000828805 0.0353562 0.0327888 36 3170 20 6.79088e+06 269440 648988. 2245.63 4.90 0.308224 0.264978 25390 158009 -1 2767 17 1179 3648 200212 45111 6.09953 6.09953 -144.627 -6.09953 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0331084 0.0291334 131 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 6.33 vpr 63.10 MiB -1 -1 0.34 18372 12 0.33 -1 -1 32720 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 29 32 275 307 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.10 1098 14175 4215 7544 2416 63.1 MiB 0.14 0.00 7.26911 -142.27 -7.26911 7.26911 0.69 0.000784527 0.000725935 0.0725285 0.0671312 38 3090 27 6.79088e+06 309856 678818. 2348.85 1.89 0.213594 0.187805 25966 169698 -1 2378 18 1247 3554 182390 41617 6.58078 6.58078 -137.462 -6.58078 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0346809 0.0304977 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 10.11 vpr 63.11 MiB -1 -1 0.37 18556 13 0.27 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 302 334 1 233 86 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1390 8591 1959 5860 772 63.1 MiB 0.11 0.00 7.78026 -168.052 -7.78026 7.78026 0.67 0.000985004 0.000908867 0.050319 0.0464829 38 4161 45 6.79088e+06 296384 678818. 2348.85 5.50 0.294349 0.256731 25966 169698 -1 3297 19 1624 4586 266966 57831 6.63466 6.63466 -162.239 -6.63466 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0390722 0.034418 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 10.42 vpr 63.16 MiB -1 -1 0.36 18680 13 0.27 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 292 324 1 217 84 17 17 289 -1 unnamed_device 24.2 MiB 1.37 1328 6672 1413 4852 407 63.2 MiB 0.08 0.00 7.49919 -157.909 -7.49919 7.49919 0.68 0.000931827 0.000862426 0.0377631 0.0349832 46 3288 17 6.79088e+06 269440 828058. 2865.25 5.70 0.32446 0.280025 27406 200422 -1 2768 17 1320 3932 204231 45167 6.38057 6.38057 -147.675 -6.38057 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0346482 0.0305224 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 9.06 vpr 62.34 MiB -1 -1 0.32 18024 12 0.20 -1 -1 32560 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 229 261 1 171 80 17 17 289 -1 unnamed_device 23.8 MiB 1.36 838 8336 2337 5127 872 62.3 MiB 0.08 0.00 6.93882 -125.075 -6.93882 6.93882 0.68 0.000739335 0.000685185 0.0386659 0.0358644 28 2811 29 6.79088e+06 282912 531479. 1839.03 4.70 0.221089 0.190969 23950 126010 -1 2189 19 1390 3147 183913 43797 6.16912 6.16912 -123.368 -6.16912 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0293794 0.0257267 105 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 8.70 vpr 62.33 MiB -1 -1 0.32 18000 12 0.19 -1 -1 32744 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 184 80 17 17 289 -1 unnamed_device 23.8 MiB 1.96 959 11432 3848 5561 2023 62.3 MiB 0.10 0.00 6.08275 -133.062 -6.08275 6.08275 0.71 0.000728749 0.000674089 0.0515168 0.0476935 46 2414 21 6.79088e+06 229024 828058. 2865.25 3.49 0.250423 0.21682 27406 200422 -1 1944 14 950 2584 124538 28780 5.30961 5.30961 -124.482 -5.30961 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0239083 0.021181 104 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.96 vpr 62.36 MiB -1 -1 0.35 18244 12 0.16 -1 -1 32660 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 235 267 1 195 83 17 17 289 -1 unnamed_device 23.8 MiB 3.10 1109 11783 3162 6398 2223 62.4 MiB 0.11 0.00 7.00732 -147.482 -7.00732 7.00732 0.68 0.000759137 0.000702974 0.0516151 0.0477848 38 2960 20 6.79088e+06 269440 678818. 2348.85 2.71 0.177733 0.15595 25966 169698 -1 2417 17 1175 2973 165242 36496 6.1825 6.1825 -143.761 -6.1825 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0276696 0.0243924 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 8.73 vpr 62.47 MiB -1 -1 0.34 17852 13 0.19 -1 -1 32632 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 250 282 1 180 80 17 17 289 -1 unnamed_device 23.9 MiB 1.93 887 9196 2678 4545 1973 62.5 MiB 0.09 0.00 7.40889 -158.515 -7.40889 7.40889 0.68 0.000808633 0.000749498 0.0465039 0.0431074 44 2266 30 6.79088e+06 215552 787024. 2723.27 3.52 0.280405 0.241921 27118 194962 -1 1869 17 903 2328 121876 29786 6.74533 6.74533 -150.155 -6.74533 0 0 997811. 3452.63 0.26 0.07 0.18 -1 -1 0.26 0.0302382 0.0266543 107 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 8.51 vpr 62.33 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32524 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 216 248 1 160 81 17 17 289 -1 unnamed_device 23.6 MiB 1.38 683 10756 3090 5343 2323 62.3 MiB 0.09 0.00 7.23574 -141.324 -7.23574 7.23574 0.78 0.000706493 0.000654479 0.0462039 0.042787 36 2333 41 6.79088e+06 255968 648988. 2245.63 3.83 0.267836 0.231596 25390 158009 -1 1748 15 917 2127 113478 29299 6.44778 6.44778 -140.479 -6.44778 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0239673 0.0211876 97 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 10.35 vpr 62.49 MiB -1 -1 0.29 17940 12 0.15 -1 -1 32728 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 236 268 1 170 80 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1001 7820 2636 3784 1400 62.5 MiB 0.08 0.00 6.03241 -146.623 -6.03241 6.03241 0.68 0.000732438 0.000678477 0.0362 0.0335658 36 3109 40 6.79088e+06 215552 648988. 2245.63 5.35 0.210193 0.182085 25390 158009 -1 2423 16 1077 2911 172059 37799 5.26271 5.26271 -143.485 -5.26271 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0261089 0.0230252 100 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 9.44 vpr 63.25 MiB -1 -1 0.37 18644 13 0.27 -1 -1 32756 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 283 315 1 219 82 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1233 12720 4130 6639 1951 63.2 MiB 0.14 0.00 7.97631 -171.858 -7.97631 7.97631 0.71 0.000912204 0.000845179 0.0728533 0.0674482 38 3289 21 6.79088e+06 242496 678818. 2348.85 4.28 0.367197 0.31771 25966 169698 -1 2546 18 1306 3376 186303 42354 6.66272 6.66272 -157.742 -6.66272 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0349663 0.0307801 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 8.20 vpr 63.18 MiB -1 -1 0.26 18556 14 0.32 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 303 335 1 229 86 17 17 289 -1 unnamed_device 24.3 MiB 1.40 1316 6701 1480 4957 264 63.2 MiB 0.08 0.00 8.93186 -185.128 -8.93186 8.93186 0.68 0.000965431 0.000893012 0.0386777 0.0358164 40 3047 17 6.79088e+06 296384 706193. 2443.58 3.48 0.327552 0.281403 26254 175826 -1 3015 19 1367 3486 219715 48573 7.95051 7.95051 -180.852 -7.95051 0 0 926341. 3205.33 0.25 0.09 0.16 -1 -1 0.25 0.0361497 0.032441 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 7.88 vpr 62.41 MiB -1 -1 0.30 18032 11 0.17 -1 -1 32720 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 29 32 225 257 1 177 82 17 17 289 -1 unnamed_device 23.9 MiB 2.14 908 8626 2180 6066 380 62.4 MiB 0.08 0.00 6.88418 -136.715 -6.88418 6.88418 0.72 0.000724108 0.000669933 0.0379614 0.0351332 34 3042 48 6.79088e+06 282912 618332. 2139.56 2.61 0.212511 0.183897 25102 150614 -1 2376 26 1191 2748 267336 97173 5.91503 5.91503 -133.401 -5.91503 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0363391 0.0316751 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 7.96 vpr 63.04 MiB -1 -1 0.38 18472 12 0.27 -1 -1 32884 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1369 10813 2694 6226 1893 63.0 MiB 0.11 0.00 7.38162 -160.306 -7.38162 7.38162 0.68 0.000976169 0.000903908 0.0580793 0.0538549 38 3708 26 6.79088e+06 323328 678818. 2348.85 3.41 0.265094 0.231212 25966 169698 -1 2967 17 1375 4182 225540 49634 6.53388 6.53388 -153.856 -6.53388 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0365009 0.0322732 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 7.95 vpr 62.96 MiB -1 -1 0.36 18324 14 0.25 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 23.9 MiB 1.79 1236 11613 2985 6550 2078 63.0 MiB 0.12 0.00 8.17676 -170.064 -8.17676 8.17676 0.68 0.000895154 0.000828634 0.0602686 0.0558603 38 3415 19 6.79088e+06 269440 678818. 2348.85 2.86 0.236385 0.206141 25966 169698 -1 2691 18 1293 3341 180323 40261 6.8496 6.8496 -161.568 -6.8496 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0341714 0.0300408 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 9.18 vpr 62.26 MiB -1 -1 0.28 18284 12 0.20 -1 -1 32452 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 227 259 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.71 883 11281 4156 5456 1669 62.3 MiB 0.10 0.00 7.10207 -150.267 -7.10207 7.10207 0.67 0.000749718 0.000694254 0.0514526 0.0475921 38 2409 30 6.79088e+06 229024 678818. 2348.85 4.30 0.322196 0.278203 25966 169698 -1 1894 31 962 2582 283428 126209 5.93857 5.93857 -140.954 -5.93857 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0427003 0.0370227 104 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 6.39 vpr 61.92 MiB -1 -1 0.23 17736 10 0.12 -1 -1 32336 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 175 207 1 131 74 17 17 289 -1 unnamed_device 23.4 MiB 1.68 693 4724 1073 3462 189 61.9 MiB 0.05 0.00 5.04691 -118.984 -5.04691 5.04691 0.67 0.000563675 0.000523981 0.0191994 0.0178743 34 2177 27 6.79088e+06 161664 618332. 2139.56 1.88 0.111431 0.0963873 25102 150614 -1 1767 16 696 1667 107608 23786 4.59685 4.59685 -120.776 -4.59685 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0196663 0.0172295 64 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.37 vpr 62.29 MiB -1 -1 0.34 18060 13 0.19 -1 -1 32640 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 231 263 1 185 81 17 17 289 -1 unnamed_device 23.7 MiB 1.83 1078 7081 1598 4291 1192 62.3 MiB 0.07 0.00 7.44012 -155.367 -7.44012 7.44012 0.68 0.000753367 0.000693114 0.0332091 0.0307679 38 2549 23 6.79088e+06 242496 678818. 2348.85 3.46 0.243032 0.209129 25966 169698 -1 2114 18 1002 2395 111954 26863 6.19723 6.19723 -141.823 -6.19723 0 0 902133. 3121.57 0.24 0.06 0.15 -1 -1 0.24 0.0225209 0.0203014 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 7.76 vpr 63.07 MiB -1 -1 0.30 18572 13 0.28 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 304 336 1 225 85 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1376 8083 2272 5247 564 63.1 MiB 0.09 0.00 7.87531 -169.049 -7.87531 7.87531 0.67 0.000940563 0.000868883 0.0454848 0.042111 40 3383 30 6.79088e+06 282912 706193. 2443.58 2.64 0.248911 0.215851 26254 175826 -1 3149 18 1544 4193 282548 62973 7.01948 7.01948 -163.981 -7.01948 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0368439 0.0324505 142 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 9.22 vpr 62.96 MiB -1 -1 0.38 18352 13 0.29 -1 -1 32464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 288 320 1 217 85 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1366 6595 1403 4488 704 63.0 MiB 0.08 0.00 7.64506 -164.428 -7.64506 7.64506 0.68 0.000938184 0.000864485 0.0379158 0.035124 38 3755 26 6.79088e+06 282912 678818. 2348.85 3.87 0.23603 0.204444 25966 169698 -1 3109 17 1444 4235 254551 55709 6.63122 6.63122 -156.188 -6.63122 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0350236 0.0308965 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.52 vpr 61.90 MiB -1 -1 0.23 17688 9 0.11 -1 -1 32532 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 26 32 152 184 1 121 76 17 17 289 -1 unnamed_device 23.3 MiB 1.06 706 10316 3839 4776 1701 61.9 MiB 0.07 0.00 5.04309 -98.1528 -5.04309 5.04309 0.69 0.000514701 0.000478902 0.0351508 0.0326858 34 1633 17 6.79088e+06 242496 618332. 2139.56 2.61 0.16855 0.145202 25102 150614 -1 1485 15 582 1299 84732 19396 4.11565 4.11565 -91.5069 -4.11565 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0170704 0.0149702 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 7.28 vpr 62.98 MiB -1 -1 0.33 18280 13 0.28 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 287 319 1 211 83 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1125 5843 1079 4624 140 63.0 MiB 0.07 0.00 8.08076 -161.905 -8.08076 8.08076 0.87 0.000921051 0.000853489 0.0336045 0.0311646 38 3541 37 6.79088e+06 255968 678818. 2348.85 2.55 0.202712 0.17527 25966 169698 -1 2774 19 1484 4002 217994 49808 7.04987 7.04987 -155.269 -7.04987 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0367639 0.0322963 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 5.94 vpr 61.84 MiB -1 -1 0.23 17568 8 0.08 -1 -1 32204 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 154 186 1 126 81 17 17 289 -1 unnamed_device 23.3 MiB 1.62 620 6381 1458 4287 636 61.8 MiB 0.06 0.00 3.97346 -91.5032 -3.97346 3.97346 0.69 0.00051107 0.000472799 0.0227777 0.0211477 34 1854 23 6.79088e+06 229024 618332. 2139.56 1.53 0.121409 0.104734 25102 150614 -1 1546 20 734 1509 107953 25155 4.08086 4.08086 -100.889 -4.08086 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.020428 0.017779 63 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 9.02 vpr 62.89 MiB -1 -1 0.32 18316 15 0.29 -1 -1 32756 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 254 286 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1221 6203 1498 4397 308 62.9 MiB 0.07 0.00 8.46989 -175.396 -8.46989 8.46989 0.68 0.0008469 0.000784802 0.0331709 0.0307728 38 3232 21 6.79088e+06 255968 678818. 2348.85 4.06 0.295361 0.25314 25966 169698 -1 2773 18 1360 3837 210322 46659 7.41463 7.41463 -167.004 -7.41463 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0322498 0.0282783 122 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 8.07 vpr 62.70 MiB -1 -1 0.30 18304 13 0.22 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 260 292 1 193 82 17 17 289 -1 unnamed_device 23.8 MiB 1.64 1121 7558 1845 4695 1018 62.7 MiB 0.08 0.00 6.82492 -146.441 -6.82492 6.82492 0.68 0.000850726 0.000789392 0.0393734 0.0365309 40 2852 25 6.79088e+06 242496 706193. 2443.58 3.20 0.223747 0.194248 26254 175826 -1 2698 20 1308 3901 252106 54121 6.0649 6.0649 -143.158 -6.0649 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0351348 0.0307725 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 6.95 vpr 63.06 MiB -1 -1 0.34 18316 13 0.33 -1 -1 32672 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 279 311 1 202 83 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1252 5663 1219 3717 727 63.1 MiB 0.07 0.00 8.11176 -171.626 -8.11176 8.11176 0.67 0.000915592 0.000849441 0.0323924 0.0300846 38 3328 22 6.79088e+06 255968 678818. 2348.85 1.99 0.172875 0.150283 25966 169698 -1 2770 19 1361 4207 221978 49045 7.12472 7.12472 -161.614 -7.12472 0 0 902133. 3121.57 0.23 0.09 0.17 -1 -1 0.23 0.0360087 0.0315879 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 6.93 vpr 62.38 MiB -1 -1 0.31 18028 12 0.20 -1 -1 32612 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.8 MiB 1.82 909 9196 2899 4953 1344 62.4 MiB 0.09 0.00 6.83474 -151.755 -6.83474 6.83474 0.67 0.000752286 0.00069668 0.0432803 0.0400788 40 2458 21 6.79088e+06 215552 706193. 2443.58 1.97 0.190995 0.166078 26254 175826 -1 2162 18 1093 2601 156654 36987 6.27979 6.27979 -148.637 -6.27979 0 0 926341. 3205.33 0.24 0.07 0.16 -1 -1 0.24 0.0288585 0.0253988 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 6.56 vpr 62.17 MiB -1 -1 0.28 17996 11 0.18 -1 -1 32648 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 30 32 213 245 1 162 81 17 17 289 -1 unnamed_device 23.7 MiB 1.84 874 9531 2423 5364 1744 62.2 MiB 0.08 0.00 6.09984 -129.865 -6.09984 6.09984 0.68 0.000680234 0.000630489 0.0398047 0.0369001 36 2648 21 6.79088e+06 255968 648988. 2245.63 1.70 0.144395 0.126241 25390 158009 -1 2057 18 979 2242 129108 29960 5.36338 5.36338 -123.968 -5.36338 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0260797 0.0229117 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 6.98 vpr 62.39 MiB -1 -1 0.32 18060 11 0.17 -1 -1 32764 -1 -1 21 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 28 32 227 259 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.13 945 9706 2749 5392 1565 62.4 MiB 0.09 0.00 6.65573 -132.254 -6.65573 6.65573 0.67 0.000738501 0.00068436 0.0437189 0.0404976 36 2852 44 6.79088e+06 282912 648988. 2245.63 2.80 0.213937 0.185354 25390 158009 -1 2253 17 1028 2705 156034 35206 5.82893 5.82893 -129.747 -5.82893 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0272512 0.0239809 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 9.05 vpr 62.93 MiB -1 -1 0.30 18004 12 0.20 -1 -1 32696 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 274 306 1 208 81 17 17 289 -1 unnamed_device 24.0 MiB 2.02 1298 10581 2710 6410 1461 62.9 MiB 0.11 0.00 7.32069 -168.079 -7.32069 7.32069 0.68 0.000866047 0.000802328 0.0559467 0.051879 46 2887 19 6.79088e+06 229024 828058. 2865.25 3.71 0.293435 0.254094 27406 200422 -1 2463 17 1210 2743 152797 34378 6.36943 6.36943 -157.522 -6.36943 0 0 1.01997e+06 3529.29 0.32 0.08 0.17 -1 -1 0.32 0.031697 0.0279496 117 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 8.85 vpr 62.24 MiB -1 -1 0.28 18116 12 0.16 -1 -1 32604 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.7 MiB 1.90 906 12464 4448 5883 2133 62.2 MiB 0.11 0.00 6.76776 -137.818 -6.76776 6.76776 0.67 0.000744043 0.000689224 0.0566499 0.0524031 36 3090 39 6.79088e+06 229024 648988. 2245.63 3.86 0.228964 0.199614 25390 158009 -1 2201 20 1328 3715 233391 52318 5.95423 5.95423 -138.769 -5.95423 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0309692 0.0271106 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 8.08 vpr 62.29 MiB -1 -1 0.33 18004 10 0.14 -1 -1 32772 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 220 252 1 167 78 17 17 289 -1 unnamed_device 23.8 MiB 0.92 921 7382 1707 5211 464 62.3 MiB 0.07 0.00 5.94728 -131.013 -5.94728 5.94728 0.68 0.000727236 0.000673656 0.0352613 0.0326909 38 2468 29 6.79088e+06 229024 678818. 2348.85 4.06 0.260045 0.224244 25966 169698 -1 2070 17 911 2517 145509 32044 5.07353 5.07353 -123.658 -5.07353 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0268763 0.0237209 101 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.62 vpr 63.20 MiB -1 -1 0.38 18772 13 0.29 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 315 347 1 228 85 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1377 7339 1645 5038 656 63.2 MiB 0.09 0.00 8.22902 -172.723 -8.22902 8.22902 0.68 0.000992821 0.000918066 0.0432912 0.0400641 44 3400 35 6.79088e+06 282912 787024. 2723.27 4.63 0.348934 0.300869 27118 194962 -1 2777 18 1312 3813 206485 45286 7.09671 7.09671 -164.732 -7.09671 0 0 997811. 3452.63 0.30 0.09 0.19 -1 -1 0.30 0.0386834 0.0340599 147 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 9.16 vpr 62.88 MiB -1 -1 0.38 18768 14 0.31 -1 -1 33332 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 282 314 1 224 83 17 17 289 -1 unnamed_device 23.9 MiB 1.52 1265 11423 3369 5757 2297 62.9 MiB 0.12 0.00 7.78618 -171.47 -7.78618 7.78618 0.67 0.000925089 0.000857163 0.0636694 0.0589629 46 3400 17 6.79088e+06 255968 828058. 2865.25 4.15 0.337266 0.292242 27406 200422 -1 2758 20 1410 3910 205662 45475 6.87069 6.87069 -163.476 -6.87069 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0386459 0.0339829 137 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 7.27 vpr 62.26 MiB -1 -1 0.31 17960 12 0.15 -1 -1 32456 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 241 273 1 170 80 17 17 289 -1 unnamed_device 23.8 MiB 1.94 1020 5756 1178 4150 428 62.3 MiB 0.06 0.00 7.06821 -153.603 -7.06821 7.06821 0.68 0.000744932 0.000690059 0.0278447 0.0258204 34 2769 38 6.79088e+06 229024 618332. 2139.56 2.29 0.159895 0.138624 25102 150614 -1 2395 18 1022 2760 176300 38852 6.74523 6.74523 -154.445 -6.74523 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0285209 0.0250456 103 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 7.74 vpr 63.12 MiB -1 -1 0.35 18548 12 0.28 -1 -1 32808 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 307 339 1 223 87 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1316 9879 2556 6613 710 63.1 MiB 0.11 0.00 7.54626 -159.356 -7.54626 7.54626 0.68 0.000978871 0.000906047 0.0542455 0.050229 38 3535 31 6.79088e+06 323328 678818. 2348.85 1.98 0.222686 0.194709 25966 169698 -1 2947 17 1380 3992 211528 47162 6.49016 6.49016 -151.667 -6.49016 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0363897 0.0321084 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 7.17 vpr 63.06 MiB -1 -1 0.36 18708 14 0.34 -1 -1 32824 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 293 325 1 208 86 17 17 289 -1 unnamed_device 24.3 MiB 1.22 1251 5189 1031 3752 406 63.1 MiB 0.06 0.00 8.43595 -166.985 -8.43595 8.43595 0.67 0.000941568 0.00087218 0.0296329 0.0274785 34 3867 46 6.79088e+06 309856 618332. 2139.56 2.65 0.226229 0.195172 25102 150614 -1 3016 22 1734 4891 301159 66213 7.40657 7.40657 -161.983 -7.40657 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0423609 0.0370859 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 10.12 vpr 62.92 MiB -1 -1 0.41 18564 13 0.26 -1 -1 32820 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 276 308 1 214 84 17 17 289 -1 unnamed_device 23.9 MiB 1.89 1271 13626 4763 6275 2588 62.9 MiB 0.14 0.00 8.48106 -170.153 -8.48106 8.48106 0.72 0.000896877 0.000830493 0.0711171 0.0659487 38 3853 46 6.79088e+06 282912 678818. 2348.85 4.70 0.288367 0.25131 25966 169698 -1 2921 25 1426 3817 344015 115253 7.3508 7.3508 -160.521 -7.3508 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0442758 0.0387124 131 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 21.08 vpr 62.95 MiB -1 -1 0.36 18384 13 0.25 -1 -1 32768 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 269 301 1 203 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1222 7823 1713 5702 408 63.0 MiB 0.09 0.00 7.81091 -159.172 -7.81091 7.81091 0.67 0.000879657 0.000814345 0.0416921 0.0386357 38 3516 39 6.79088e+06 269440 678818. 2348.85 16.51 0.44 0.377587 25966 169698 -1 2802 17 1267 3682 219549 47592 6.72962 6.72962 -149.438 -6.72962 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330507 0.0291561 124 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 6.55 vpr 62.66 MiB -1 -1 0.32 18032 12 0.23 -1 -1 32812 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 264 296 1 184 79 17 17 289 -1 unnamed_device 23.8 MiB 1.36 1065 5487 1235 3857 395 62.7 MiB 0.06 0.00 6.67703 -143.122 -6.67703 6.67703 0.68 0.000835448 0.000773745 0.031151 0.0288794 34 2811 41 6.79088e+06 202080 618332. 2139.56 2.00 0.180944 0.156556 25102 150614 -1 2268 14 988 2481 146427 33391 5.86813 5.86813 -136.449 -5.86813 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0266972 0.023561 110 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 8.45 vpr 63.23 MiB -1 -1 0.44 19196 14 0.41 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 324 356 1 243 85 17 17 289 -1 unnamed_device 24.4 MiB 1.08 1554 7897 2063 5110 724 63.2 MiB 0.10 0.00 8.5032 -181.474 -8.5032 8.5032 0.68 0.00103731 0.000959188 0.0489008 0.0452455 40 3897 28 6.79088e+06 282912 706193. 2443.58 3.75 0.279066 0.242753 26254 175826 -1 3723 19 1704 5197 378542 93252 7.3039 7.3039 -174.442 -7.3039 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0423379 0.0372923 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 12.90 vpr 62.73 MiB -1 -1 0.29 17980 11 0.21 -1 -1 32356 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 249 281 1 188 79 17 17 289 -1 unnamed_device 23.9 MiB 1.76 1138 3966 751 3109 106 62.7 MiB 0.05 0.00 6.36587 -138.564 -6.36587 6.36587 0.67 0.000803751 0.000745093 0.0231677 0.0214797 36 3745 42 6.79088e+06 215552 648988. 2245.63 8.02 0.313628 0.269084 25390 158009 -1 2890 20 1493 4258 294609 62197 5.61398 5.61398 -139.411 -5.61398 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0334021 0.0292252 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 9.88 vpr 63.06 MiB -1 -1 0.39 18636 13 0.23 -1 -1 33296 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 284 316 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.09 1227 8868 2138 5562 1168 63.1 MiB 0.10 0.00 8.05648 -168.256 -8.05648 8.05648 0.75 0.000904846 0.000837372 0.0487614 0.04519 36 3070 37 6.79088e+06 282912 648988. 2245.63 5.40 0.369678 0.318053 25390 158009 -1 2589 19 1196 3731 211584 47344 6.96022 6.96022 -156.818 -6.96022 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0366455 0.0320949 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 6.75 vpr 63.07 MiB -1 -1 0.36 18444 12 0.25 -1 -1 32688 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 303 335 1 210 85 17 17 289 -1 unnamed_device 24.0 MiB 1.41 1298 12361 2924 7866 1571 63.1 MiB 0.13 0.00 6.98572 -155.809 -6.98572 6.98572 0.68 0.000960348 0.00088747 0.0678562 0.0627557 38 3592 19 6.79088e+06 282912 678818. 2348.85 1.96 0.217595 0.190633 25966 169698 -1 2849 20 1609 4984 262433 57372 5.91508 5.91508 -148.327 -5.91508 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0401753 0.0352171 145 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 6.59 vpr 62.89 MiB -1 -1 0.33 18236 13 0.24 -1 -1 32712 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 272 304 1 195 84 17 17 289 -1 unnamed_device 24.0 MiB 1.21 1155 7770 1729 5200 841 62.9 MiB 0.08 0.00 7.69291 -164.646 -7.69291 7.69291 0.67 0.000890894 0.000825103 0.0413775 0.0383659 36 2952 19 6.79088e+06 269440 648988. 2245.63 2.21 0.214129 0.185943 25390 158009 -1 2586 17 1154 3000 174478 39827 6.83149 6.83149 -160.017 -6.83149 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0327208 0.0287642 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 10.08 vpr 62.82 MiB -1 -1 0.27 18556 13 0.21 -1 -1 33228 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 271 303 1 213 82 17 17 289 -1 unnamed_device 23.9 MiB 2.13 1245 11296 3823 5504 1969 62.8 MiB 0.11 0.00 7.62172 -162.859 -7.62172 7.62172 0.67 0.000868727 0.000805283 0.058691 0.0543905 44 3263 36 6.79088e+06 242496 787024. 2723.27 4.84 0.330926 0.28597 27118 194962 -1 2597 17 1206 3178 182003 39765 6.63466 6.63466 -152.703 -6.63466 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0353558 0.0314772 123 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 9.53 vpr 63.12 MiB -1 -1 0.37 18532 12 0.25 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 288 320 1 213 86 17 17 289 -1 unnamed_device 24.4 MiB 1.72 1309 8402 2054 5716 632 63.1 MiB 0.09 0.00 7.46308 -161.108 -7.46308 7.46308 0.67 0.000929497 0.000860364 0.0451429 0.0417947 44 3484 26 6.79088e+06 296384 787024. 2723.27 4.49 0.321641 0.276818 27118 194962 -1 2825 18 1239 3984 221614 48189 6.67037 6.67037 -152.367 -6.67037 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.03696 0.0325814 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 9.26 vpr 63.20 MiB -1 -1 0.38 18908 13 0.30 -1 -1 33320 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 306 338 1 225 85 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1275 4735 898 3382 455 63.2 MiB 0.06 0.00 8.09732 -172.599 -8.09732 8.09732 0.70 0.000986659 0.000913785 0.0303704 0.0281843 40 3115 20 6.79088e+06 282912 706193. 2443.58 4.65 0.349691 0.300318 26254 175826 -1 2900 20 1373 3870 305211 93998 6.90978 6.90978 -160.239 -6.90978 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0409193 0.0359345 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.73 vpr 63.00 MiB -1 -1 0.34 18180 14 0.27 -1 -1 32768 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.29 1332 6383 1390 4359 634 63.0 MiB 0.07 0.00 8.35004 -171.056 -8.35004 8.35004 0.67 0.00086328 0.0008003 0.0340564 0.0315964 46 2894 25 6.79088e+06 255968 828058. 2865.25 4.18 0.328645 0.282301 27406 200422 -1 2584 19 1154 3294 165810 37107 7.17517 7.17517 -156.302 -7.17517 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0341166 0.0299677 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 9.12 vpr 63.04 MiB -1 -1 0.34 18288 13 0.24 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 291 323 1 212 84 17 17 289 -1 unnamed_device 24.0 MiB 1.59 1280 6306 1448 4128 730 63.0 MiB 0.07 0.00 8.18011 -164.079 -8.18011 8.18011 0.67 0.000934987 0.000866248 0.0359194 0.0333388 44 3254 31 6.79088e+06 269440 787024. 2723.27 4.24 0.30938 0.26632 27118 194962 -1 2770 17 1302 3567 195331 44666 7.38995 7.38995 -161.099 -7.38995 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0339991 0.0299436 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 19.68 vpr 63.10 MiB -1 -1 0.41 18428 13 0.27 -1 -1 32684 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 302 334 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.55 1301 8083 1880 5114 1089 63.1 MiB 0.09 0.00 7.82203 -169.793 -7.82203 7.82203 0.68 0.000957904 0.000887264 0.0456349 0.0423038 38 3364 33 6.79088e+06 296384 678818. 2348.85 14.63 0.422867 0.363407 25966 169698 -1 2875 19 1442 4033 203579 45890 7.16392 7.16392 -162.446 -7.16392 0 0 902133. 3121.57 0.30 0.09 0.16 -1 -1 0.30 0.0382525 0.0336106 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 6.48 vpr 63.01 MiB -1 -1 0.39 18496 12 0.31 -1 -1 32884 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.2 MiB 1.19 1349 6967 1481 4942 544 63.0 MiB 0.08 0.00 7.58336 -160.336 -7.58336 7.58336 0.68 0.000988356 0.000916482 0.0402369 0.0372616 38 3461 22 6.79088e+06 282912 678818. 2348.85 1.93 0.202868 0.176476 25966 169698 -1 2825 17 1341 3714 193952 43570 6.65918 6.65918 -153.457 -6.65918 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0358625 0.0316352 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 8.44 vpr 62.20 MiB -1 -1 0.23 18144 11 0.13 -1 -1 32620 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 216 248 1 161 78 17 17 289 -1 unnamed_device 23.5 MiB 1.16 854 6552 1491 4896 165 62.2 MiB 0.07 0.00 6.10408 -131.471 -6.10408 6.10408 0.68 0.000692639 0.000641916 0.029647 0.0274593 36 2444 29 6.79088e+06 188608 648988. 2245.63 4.40 0.259656 0.222814 25390 158009 -1 1945 16 889 2176 140210 32931 5.23808 5.23808 -129.554 -5.23808 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.024101 0.0212212 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 8.30 vpr 62.78 MiB -1 -1 0.34 18172 13 0.21 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 254 286 1 196 83 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1125 4583 881 3537 165 62.8 MiB 0.05 0.00 7.79846 -167.848 -7.79846 7.79846 0.68 0.000824744 0.000763847 0.0241521 0.0223916 36 3266 28 6.79088e+06 255968 648988. 2245.63 3.58 0.201277 0.173577 25390 158009 -1 2548 15 1146 2804 171576 37989 6.91332 6.91332 -163.48 -6.91332 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0280936 0.0247287 117 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 10.67 vpr 63.46 MiB -1 -1 0.39 19068 14 0.48 -1 -1 33080 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 338 370 1 252 88 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1553 10618 2680 6617 1321 63.5 MiB 0.12 0.00 9.27313 -184.831 -9.27313 9.27313 0.67 0.00108656 0.00100472 0.0634725 0.0587754 44 4343 46 6.79088e+06 323328 787024. 2723.27 5.94 0.449202 0.388097 27118 194962 -1 3334 17 1642 4998 271773 59529 8.0278 8.0278 -171.471 -8.0278 0 0 997811. 3452.63 0.26 0.11 0.18 -1 -1 0.26 0.0404821 0.0357887 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 7.12 vpr 62.95 MiB -1 -1 0.35 18224 13 0.37 -1 -1 32736 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 271 303 1 215 83 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1263 10343 2759 5468 2116 62.9 MiB 0.11 0.00 7.95077 -174.752 -7.95077 7.95077 0.70 0.000892807 0.000826735 0.0552015 0.051037 38 3631 26 6.79088e+06 255968 678818. 2348.85 2.39 0.204615 0.179511 25966 169698 -1 2958 16 1335 3587 203647 44404 6.89761 6.89761 -163.806 -6.89761 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0316113 0.0278909 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 7.08 vpr 62.42 MiB -1 -1 0.33 18000 11 0.19 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 224 256 1 162 79 17 17 289 -1 unnamed_device 23.6 MiB 0.46 883 7853 1940 5339 574 62.4 MiB 0.07 0.00 6.27294 -133.979 -6.27294 6.27294 0.68 0.000727704 0.000673504 0.0365258 0.0338473 38 2297 16 6.79088e+06 229024 678818. 2348.85 3.53 0.247846 0.213462 25966 169698 -1 1918 13 859 2398 122973 27825 5.57484 5.57484 -132.391 -5.57484 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0230238 0.020539 100 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 9.59 vpr 63.27 MiB -1 -1 0.44 19360 15 0.57 -1 -1 32972 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 351 383 1 260 89 17 17 289 -1 unnamed_device 24.3 MiB 1.03 1559 7217 1529 4884 804 63.3 MiB 0.09 0.00 9.47559 -189.1 -9.47559 9.47559 0.67 0.00111852 0.00103046 0.0453943 0.0419644 44 4250 22 6.79088e+06 336800 787024. 2723.27 4.74 0.378344 0.326392 27118 194962 -1 3350 21 1776 5388 286227 64424 8.2046 8.2046 -181.247 -8.2046 0 0 997811. 3452.63 0.26 0.12 0.17 -1 -1 0.26 0.0485633 0.0426738 180 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 11.02 vpr 63.11 MiB -1 -1 0.36 18304 13 0.31 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 297 329 1 215 84 17 17 289 -1 unnamed_device 24.3 MiB 1.07 1327 11613 3037 7153 1423 63.1 MiB 0.12 0.00 8.35567 -179.275 -8.35567 8.35567 0.68 0.000949374 0.000878156 0.0639538 0.0591726 36 3892 45 6.79088e+06 269440 648988. 2245.63 6.60 0.297212 0.258786 25390 158009 -1 2951 20 1522 4208 254330 56298 7.26121 7.26121 -171.101 -7.26121 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0397923 0.0349071 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 7.75 vpr 62.41 MiB -1 -1 0.28 17768 11 0.13 -1 -1 32692 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 231 263 1 166 78 17 17 289 -1 unnamed_device 23.9 MiB 1.60 913 8544 1751 6687 106 62.4 MiB 0.08 0.00 6.71833 -138.755 -6.71833 6.71833 0.68 0.000728941 0.000675234 0.0403431 0.0374041 36 2680 22 6.79088e+06 188608 648988. 2245.63 3.14 0.249328 0.214559 25390 158009 -1 2048 22 1004 2482 144860 33236 5.57057 5.57057 -137.043 -5.57057 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0321826 0.0281707 95 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 6.72 vpr 63.19 MiB -1 -1 0.37 18448 12 0.29 -1 -1 32896 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 305 337 1 211 84 17 17 289 -1 unnamed_device 24.4 MiB 0.99 1275 5757 1099 4374 284 63.2 MiB 0.07 0.00 8.05812 -164.83 -8.05812 8.05812 0.69 0.000955372 0.000882946 0.0340212 0.0315068 40 3130 19 6.79088e+06 269440 706193. 2443.58 2.32 0.224241 0.193688 26254 175826 -1 2958 18 1330 4151 264505 58696 7.08896 7.08896 -157.183 -7.08896 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.0376882 0.0332003 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 7.24 vpr 62.54 MiB -1 -1 0.31 17980 12 0.19 -1 -1 32736 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 243 275 1 185 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 1063 10572 3521 4821 2230 62.5 MiB 0.10 0.00 7.07212 -150.92 -7.07212 7.07212 0.73 0.000793655 0.000735032 0.0513003 0.0475203 36 3409 40 6.79088e+06 215552 648988. 2245.63 2.80 0.198691 0.173648 25390 158009 -1 2673 17 1278 3195 206345 45647 6.29098 6.29098 -150.366 -6.29098 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0290259 0.0255668 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 7.60 vpr 62.26 MiB -1 -1 0.33 17972 12 0.18 -1 -1 32624 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 30 32 228 260 1 165 80 17 17 289 -1 unnamed_device 23.8 MiB 1.05 1004 11776 3311 6854 1611 62.3 MiB 0.10 0.00 7.78962 -153.98 -7.78962 7.78962 0.68 0.000744951 0.000690219 0.0539214 0.0499133 36 2647 28 6.79088e+06 242496 648988. 2245.63 3.43 0.215088 0.187833 25390 158009 -1 2204 16 865 2541 152000 33758 6.54507 6.54507 -146.067 -6.54507 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0261438 0.0230483 105 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 14.54 vpr 62.89 MiB -1 -1 0.38 18488 12 0.26 -1 -1 33312 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 275 307 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.73 1221 7770 1855 5075 840 62.9 MiB 0.09 0.00 7.43187 -140.251 -7.43187 7.43187 0.69 0.000903114 0.00083569 0.0448755 0.0414659 34 3578 29 6.79088e+06 309856 618332. 2139.56 9.56 0.373779 0.322294 25102 150614 -1 3006 15 1375 3970 281069 58660 6.41972 6.41972 -135.251 -6.41972 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0311527 0.0275071 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 9.01 vpr 63.16 MiB -1 -1 0.38 18456 13 0.35 -1 -1 32788 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 330 362 1 254 87 17 17 289 -1 unnamed_device 24.3 MiB 0.88 1359 13335 4246 7124 1965 63.2 MiB 0.14 0.00 8.15621 -168.312 -8.15621 8.15621 0.67 0.00103322 0.000956564 0.0760791 0.0704473 46 3494 23 6.79088e+06 309856 828058. 2865.25 4.66 0.424573 0.367411 27406 200422 -1 2798 17 1555 4022 186401 43603 7.04638 7.04638 -158.022 -7.04638 0 0 1.01997e+06 3529.29 0.27 0.05 0.14 -1 -1 0.27 0.0237393 0.0215035 159 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 9.55 vpr 62.98 MiB -1 -1 0.36 18536 12 0.26 -1 -1 33072 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 290 322 1 219 83 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1355 8543 2261 5601 681 63.0 MiB 0.10 0.00 8.04027 -168.911 -8.04027 8.04027 0.68 0.000930193 0.000860916 0.0479064 0.044353 46 3186 27 6.79088e+06 255968 828058. 2865.25 5.25 0.370947 0.319107 27406 200422 -1 2643 19 1391 4028 208150 46578 6.74888 6.74888 -158.158 -6.74888 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0376875 0.0332084 138 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 7.50 vpr 62.34 MiB -1 -1 0.34 18032 12 0.17 -1 -1 32800 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 214 246 1 159 80 17 17 289 -1 unnamed_device 23.6 MiB 1.95 863 11260 4224 5242 1794 62.3 MiB 0.10 0.00 7.26107 -147.208 -7.26107 7.26107 0.67 0.000695689 0.000644343 0.0483857 0.0448192 36 2331 19 6.79088e+06 215552 648988. 2245.63 2.59 0.166567 0.146014 25390 158009 -1 1967 15 845 2356 149699 33404 6.41977 6.41977 -139.921 -6.41977 0 0 828058. 2865.25 0.21 0.04 0.13 -1 -1 0.21 0.0139778 0.01267 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 7.34 vpr 62.97 MiB -1 -1 0.35 18252 12 0.24 -1 -1 32420 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 244 276 1 178 83 17 17 289 -1 unnamed_device 24.1 MiB 1.35 1108 3503 656 2559 288 63.0 MiB 0.04 0.00 7.09757 -147.836 -7.09757 7.09757 0.68 0.000793319 0.00072531 0.0183313 0.0170293 34 3269 40 6.79088e+06 269440 618332. 2139.56 2.82 0.179614 0.154729 25102 150614 -1 2705 20 1281 3569 221120 48983 6.56158 6.56158 -148.823 -6.56158 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.038187 0.0333375 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 6.57 vpr 63.21 MiB -1 -1 0.35 18408 11 0.18 -1 -1 32764 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1054 9263 2245 5843 1175 63.2 MiB 0.09 0.00 6.88762 -135.169 -6.88762 6.88762 0.68 0.000868925 0.000804561 0.0482891 0.0447476 38 2945 19 6.79088e+06 282912 678818. 2348.85 2.14 0.216464 0.187615 25966 169698 -1 2413 18 1115 3680 189750 43063 5.99343 5.99343 -130.249 -5.99343 0 0 902133. 3121.57 0.23 0.08 0.10 -1 -1 0.23 0.0341129 0.0299552 126 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 7.59 vpr 62.53 MiB -1 -1 0.28 18052 11 0.19 -1 -1 32796 -1 -1 19 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 28 32 253 285 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 0.80 995 10050 2718 6209 1123 62.5 MiB 0.10 0.00 6.45019 -124.228 -6.45019 6.45019 0.69 0.000808933 0.00075033 0.0512864 0.0474612 38 2647 20 6.79088e+06 255968 678818. 2348.85 3.70 0.274965 0.236967 25966 169698 -1 2249 19 1131 3466 185142 40463 5.64548 5.64548 -120.405 -5.64548 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0332407 0.0291584 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 8.66 vpr 62.68 MiB -1 -1 0.34 18192 13 0.21 -1 -1 32432 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 235 267 1 171 79 17 17 289 -1 unnamed_device 23.9 MiB 1.89 969 10557 2812 6852 893 62.7 MiB 0.10 0.00 7.0265 -142.766 -7.0265 7.0265 0.68 0.00075801 0.00070191 0.0508551 0.0470898 38 2499 22 6.79088e+06 229024 678818. 2348.85 3.55 0.300496 0.259386 25966 169698 -1 2100 19 973 2722 134749 31327 6.40165 6.40165 -139.95 -6.40165 0 0 902133. 3121.57 0.26 0.06 0.15 -1 -1 0.26 0.0289263 0.0257078 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 9.47 vpr 62.91 MiB -1 -1 0.29 18148 12 0.21 -1 -1 32504 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 264 296 1 201 82 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1167 9872 2780 5471 1621 62.9 MiB 0.10 0.00 7.31132 -167.014 -7.31132 7.31132 0.71 0.000843107 0.000779086 0.0511345 0.0471891 44 3012 17 6.79088e+06 242496 787024. 2723.27 4.07 0.29351 0.253789 27118 194962 -1 2549 15 1091 2747 160257 35526 6.38052 6.38052 -155.753 -6.38052 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0280855 0.024901 119 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 8.51 vpr 62.91 MiB -1 -1 0.36 18260 13 0.28 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.07 988 9783 2758 5943 1082 62.9 MiB 0.10 0.00 8.18266 -152.572 -8.18266 8.18266 0.67 0.000902188 0.000832789 0.0517359 0.0477848 36 3345 28 6.79088e+06 282912 648988. 2245.63 4.11 0.336479 0.289584 25390 158009 -1 2527 19 1403 4134 243095 57317 7.38646 7.38646 -147.553 -7.38646 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0363732 0.0319708 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 6.93 vpr 63.04 MiB -1 -1 0.39 18488 14 0.25 -1 -1 32804 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 290 322 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 1.12 1245 13992 4430 7427 2135 63.0 MiB 0.16 0.00 8.45277 -175.285 -8.45277 8.45277 0.67 0.000936131 0.000862844 0.0806802 0.0744656 46 3019 19 6.79088e+06 269440 828058. 2865.25 2.39 0.264003 0.230755 27406 200422 -1 2515 18 1193 3569 171019 38649 7.28928 7.28928 -161.175 -7.28928 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0356605 0.0314153 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 10.39 vpr 62.88 MiB -1 -1 0.32 18876 14 0.30 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 23.9 MiB 1.93 1219 5506 1194 3684 628 62.9 MiB 0.07 0.00 8.08149 -162.851 -8.08149 8.08149 0.68 0.000876103 0.00081255 0.0319223 0.0296174 36 3582 35 6.79088e+06 229024 648988. 2245.63 5.17 0.230053 0.198592 25390 158009 -1 2752 19 1307 3808 241835 52748 6.88531 6.88531 -154.809 -6.88531 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0356616 0.0313141 119 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.13 vpr 63.08 MiB -1 -1 0.40 18796 13 0.33 -1 -1 33152 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 296 328 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.31 1337 14779 4197 8584 1998 63.1 MiB 0.16 0.00 8.4678 -172.702 -8.4678 8.4678 0.67 0.000951092 0.000879265 0.0809981 0.074778 44 3481 24 6.79088e+06 282912 787024. 2723.27 2.20 0.232409 0.204428 27118 194962 -1 2871 17 1274 3846 210355 46091 7.55101 7.55101 -163.887 -7.55101 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0354974 0.0313181 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 11.96 vpr 62.36 MiB -1 -1 0.28 17928 13 0.18 -1 -1 32580 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 234 266 1 174 79 17 17 289 -1 unnamed_device 23.8 MiB 1.61 971 11402 3221 6944 1237 62.4 MiB 0.10 0.00 7.37867 -152.623 -7.37867 7.37867 0.68 0.00074852 0.000692962 0.0531787 0.0492395 30 3089 46 6.79088e+06 229024 556674. 1926.21 7.31 0.318511 0.27464 24526 138013 -1 2347 17 1030 2656 140863 32234 6.66267 6.66267 -147.632 -6.66267 0 0 706193. 2443.58 0.19 0.07 0.13 -1 -1 0.19 0.0277579 0.024406 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 7.36 vpr 63.15 MiB -1 -1 0.39 18756 13 0.41 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 30 32 291 323 1 223 83 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1226 6203 1393 4036 774 63.1 MiB 0.08 0.00 8.37399 -164.454 -8.37399 8.37399 0.70 0.00097633 0.000904932 0.0374934 0.034792 38 3383 21 6.79088e+06 282912 678818. 2348.85 2.48 0.229942 0.19914 25966 169698 -1 2692 19 1392 3870 198202 44973 7.30385 7.30385 -157.208 -7.30385 0 0 902133. 3121.57 0.31 0.09 0.14 -1 -1 0.31 0.0394093 0.0347043 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 18.55 vpr 62.98 MiB -1 -1 0.38 18468 14 0.30 -1 -1 32768 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 274 306 1 201 81 17 17 289 -1 unnamed_device 24.0 MiB 1.51 1220 8831 2339 5185 1307 63.0 MiB 0.10 0.00 8.43664 -177.857 -8.43664 8.43664 0.69 0.000893236 0.000827289 0.0489186 0.0452914 38 3412 29 6.79088e+06 229024 678818. 2348.85 13.53 0.396528 0.341393 25966 169698 -1 2715 23 1368 4033 233965 50066 7.75127 7.75127 -174.096 -7.75127 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0412516 0.0360161 127 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 9.22 vpr 62.82 MiB -1 -1 0.37 18316 13 0.22 -1 -1 32836 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 266 298 1 194 80 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1018 10056 2882 5099 2075 62.8 MiB 0.10 0.00 7.45028 -151.18 -7.45028 7.45028 0.68 0.0008737 0.000809735 0.054141 0.0501753 36 3259 28 6.79088e+06 229024 648988. 2245.63 4.64 0.242382 0.210943 25390 158009 -1 2643 18 1429 3975 253181 55848 6.74528 6.74528 -150.387 -6.74528 0 0 828058. 2865.25 0.22 0.09 0.12 -1 -1 0.22 0.0328096 0.0288072 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 9.70 vpr 62.88 MiB -1 -1 0.32 18644 13 0.21 -1 -1 32872 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 266 298 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1131 8319 2355 4583 1381 62.9 MiB 0.08 0.00 7.49592 -149.558 -7.49592 7.49592 0.68 0.000872501 0.000809089 0.0422323 0.039149 36 3396 30 6.79088e+06 296384 648988. 2245.63 4.92 0.228686 0.198391 25390 158009 -1 2724 15 1255 3390 217318 47668 6.64352 6.64352 -144.455 -6.64352 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.02935 0.0259356 123 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 8.22 vpr 63.32 MiB -1 -1 0.37 18620 14 0.35 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 310 342 1 229 85 17 17 289 -1 unnamed_device 24.5 MiB 1.21 1332 11803 3711 6311 1781 63.3 MiB 0.13 0.00 8.47332 -174.325 -8.47332 8.47332 0.69 0.00100783 0.00093412 0.0681564 0.0631053 40 3627 36 6.79088e+06 282912 706193. 2443.58 3.47 0.267185 0.234025 26254 175826 -1 3319 19 1685 5093 354961 76925 7.38651 7.38651 -167.314 -7.38651 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0399986 0.0351667 152 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 13.43 vpr 62.83 MiB -1 -1 0.39 18404 11 0.27 -1 -1 32748 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 29 32 262 294 1 201 83 17 17 289 -1 unnamed_device 23.9 MiB 1.59 1187 9803 3077 5789 937 62.8 MiB 0.10 0.00 7.32112 -142.904 -7.32112 7.32112 0.69 0.000868369 0.000805298 0.0510584 0.0472973 30 3094 33 6.79088e+06 296384 556674. 1926.21 8.56 0.309381 0.267882 24526 138013 -1 2563 15 1165 3347 160722 37461 6.46667 6.46667 -139.078 -6.46667 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.029914 0.0263897 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 10.75 vpr 62.15 MiB -1 -1 0.26 17748 13 0.19 -1 -1 32644 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 222 254 1 182 79 17 17 289 -1 unnamed_device 23.4 MiB 2.86 1035 5318 1067 4048 203 62.2 MiB 0.06 0.00 6.99248 -161.236 -6.99248 6.99248 0.69 0.000724213 0.000671297 0.0253672 0.0235032 34 3444 42 6.79088e+06 202080 618332. 2139.56 4.84 0.247574 0.212704 25102 150614 -1 2604 22 1228 2959 273887 81898 6.40514 6.40514 -163.936 -6.40514 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0315901 0.0276073 99 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 7.93 vpr 63.04 MiB -1 -1 0.38 18648 14 0.24 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 267 299 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.52 1250 4456 885 3313 258 63.0 MiB 0.06 0.00 8.38045 -174.115 -8.38045 8.38045 0.67 0.000866941 0.000803233 0.0263696 0.0244428 36 3265 43 6.79088e+06 229024 648988. 2245.63 3.21 0.23051 0.198214 25390 158009 -1 2720 18 1249 3337 202574 44403 7.34737 7.34737 -167.601 -7.34737 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0334618 0.0293757 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 22.67 vpr 63.20 MiB -1 -1 0.41 18920 15 0.40 -1 -1 32924 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 334 366 1 250 88 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1484 9253 2259 6050 944 63.2 MiB 0.11 0.00 8.87836 -189.569 -8.87836 8.87836 0.68 0.00107256 0.000992434 0.0550725 0.0508708 38 3870 29 6.79088e+06 323328 678818. 2348.85 17.57 0.494413 0.426471 25966 169698 -1 3149 20 1729 4589 229265 52252 7.67991 7.67991 -179.191 -7.67991 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.044371 0.0390148 164 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 6.22 vpr 62.25 MiB -1 -1 0.17 17960 11 0.17 -1 -1 32692 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 220 252 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.50 863 10916 3769 4696 2451 62.3 MiB 0.10 0.00 6.70603 -139.827 -6.70603 6.70603 0.69 0.000702462 0.000650561 0.0477911 0.0442937 36 2507 19 6.79088e+06 215552 648988. 2245.63 1.68 0.157591 0.137927 25390 158009 -1 2032 20 956 2486 140727 33215 5.82893 5.82893 -135.434 -5.82893 0 0 828058. 2865.25 0.23 0.07 0.13 -1 -1 0.23 0.0294142 0.0258142 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 9.30 vpr 62.45 MiB -1 -1 0.25 17916 12 0.17 -1 -1 33048 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 31 32 244 276 1 191 80 17 17 289 -1 unnamed_device 23.8 MiB 1.43 1084 6788 1723 4832 233 62.4 MiB 0.07 0.00 6.66627 -147.96 -6.66627 6.66627 0.72 0.000749264 0.000691069 0.0339295 0.0314496 44 3079 27 6.79088e+06 229024 787024. 2723.27 4.75 0.271755 0.233703 27118 194962 -1 2449 17 1212 3111 172440 38596 5.99337 5.99337 -141.516 -5.99337 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0287666 0.0252843 110 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 8.66 vpr 63.22 MiB -1 -1 0.35 18540 12 0.29 -1 -1 32728 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 300 332 1 218 83 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1207 11783 4120 5343 2320 63.2 MiB 0.12 0.00 7.30286 -159.953 -7.30286 7.30286 0.68 0.000974644 0.000901968 0.0676891 0.0625909 44 3080 18 6.79088e+06 255968 787024. 2723.27 4.10 0.339212 0.293867 27118 194962 -1 2475 16 1292 3634 177016 41926 6.49812 6.49812 -147.002 -6.49812 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0351594 0.0311127 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 9.59 vpr 63.03 MiB -1 -1 0.36 18340 12 0.24 -1 -1 32952 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 271 303 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 1.70 1287 12503 3462 6480 2561 63.0 MiB 0.13 0.00 7.56098 -155.748 -7.56098 7.56098 0.71 0.000884868 0.000817455 0.0650373 0.0602118 40 3696 38 6.79088e+06 255968 706193. 2443.58 4.39 0.2684 0.233886 26254 175826 -1 3296 33 1534 4492 706599 301301 6.38062 6.38062 -154.578 -6.38062 0 0 926341. 3205.33 0.23 0.23 0.15 -1 -1 0.23 0.0538244 0.0466791 129 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 10.13 vpr 63.40 MiB -1 -1 0.37 18792 14 0.43 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 327 359 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1355 14639 3834 9114 1691 63.4 MiB 0.16 0.00 8.8746 -178.899 -8.8746 8.8746 0.68 0.00106567 0.000984752 0.0872965 0.0806905 44 3437 21 6.79088e+06 296384 787024. 2723.27 4.70 0.430967 0.374812 27118 194962 -1 2971 17 1549 4664 242467 55768 7.78601 7.78601 -168.081 -7.78601 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0395381 0.0349635 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 9.14 vpr 62.80 MiB -1 -1 0.36 18268 12 0.20 -1 -1 32904 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.03 1159 7956 2272 5164 520 62.8 MiB 0.09 0.00 7.18863 -142.1 -7.18863 7.18863 0.68 0.000828464 0.000767607 0.0426387 0.0394984 46 2786 16 6.79088e+06 255968 828058. 2865.25 4.82 0.31521 0.271054 27406 200422 -1 2411 17 1025 3107 160837 35887 6.20488 6.20488 -133.311 -6.20488 0 0 1.01997e+06 3529.29 0.27 0.07 0.18 -1 -1 0.27 0.0312049 0.0275459 120 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 6.13 vpr 62.51 MiB -1 -1 0.31 17852 11 0.18 -1 -1 32716 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 27 32 219 251 1 164 78 17 17 289 -1 unnamed_device 24.0 MiB 1.50 723 8378 2042 5918 418 62.5 MiB 0.08 0.00 7.21752 -126.98 -7.21752 7.21752 0.68 0.000711293 0.000659356 0.038772 0.0358874 30 2453 31 6.79088e+06 255968 556674. 1926.21 1.63 0.137714 0.120577 24526 138013 -1 1858 17 1043 2825 131913 33470 6.28323 6.28323 -126.905 -6.28323 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0264567 0.0233113 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.83 vpr 63.55 MiB -1 -1 0.36 19040 13 0.41 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 380 412 1 275 90 17 17 289 -1 unnamed_device 24.8 MiB 1.70 1657 9537 2520 6357 660 63.5 MiB 0.12 0.00 8.12297 -168.527 -8.12297 8.12297 0.68 0.00116687 0.00107932 0.0608747 0.0562964 40 4417 48 6.79088e+06 350272 706193. 2443.58 4.47 0.348248 0.30231 26254 175826 -1 4056 20 2002 5949 375778 80918 7.01061 7.01061 -160.57 -7.01061 0 0 926341. 3205.33 0.24 0.14 0.12 -1 -1 0.24 0.0525469 0.046617 189 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.79 vpr 62.89 MiB -1 -1 0.39 18516 14 0.23 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 277 309 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.45 1072 7770 1789 5369 612 62.9 MiB 0.08 0.00 8.3779 -165.706 -8.3779 8.3779 0.68 0.000887898 0.000822729 0.0413719 0.0383606 36 3014 34 6.79088e+06 282912 648988. 2245.63 2.08 0.194858 0.169602 25390 158009 -1 2529 17 1112 2992 170582 39422 7.4761 7.4761 -162.537 -7.4761 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0329737 0.0290441 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 8.27 vpr 62.63 MiB -1 -1 0.34 18204 12 0.20 -1 -1 32416 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 229 261 1 176 82 17 17 289 -1 unnamed_device 24.1 MiB 1.27 1078 7914 1805 5400 709 62.6 MiB 0.08 0.00 7.28787 -159.969 -7.28787 7.28787 0.68 0.000749901 0.00069403 0.0361053 0.0334449 36 2782 20 6.79088e+06 242496 648988. 2245.63 3.85 0.190687 0.16584 25390 158009 -1 2255 16 1008 2402 136904 31819 6.14227 6.14227 -150.778 -6.14227 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0263751 0.0234359 107 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 10.42 vpr 62.93 MiB -1 -1 0.36 18204 13 0.27 -1 -1 32912 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 263 295 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1065 10698 4067 5787 844 62.9 MiB 0.11 0.00 7.98061 -163.524 -7.98061 7.98061 0.67 0.000878292 0.000813821 0.054992 0.0509551 36 3909 46 6.79088e+06 269440 648988. 2245.63 5.74 0.359317 0.310019 25390 158009 -1 2692 17 1384 3771 259060 67340 6.79921 6.79921 -153.949 -6.79921 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0323235 0.0284632 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 8.61 vpr 63.26 MiB -1 -1 0.29 18840 13 0.34 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 321 353 1 242 86 17 17 289 -1 unnamed_device 24.3 MiB 1.45 1396 6890 1500 5037 353 63.3 MiB 0.09 0.00 7.43872 -154.496 -7.43872 7.43872 0.68 0.000799407 0.000732586 0.0359659 0.0331326 40 3737 36 6.79088e+06 309856 706193. 2443.58 3.66 0.265057 0.229115 26254 175826 -1 3682 27 2058 6214 669400 215172 6.83487 6.83487 -156.489 -6.83487 0 0 926341. 3205.33 0.24 0.21 0.15 -1 -1 0.24 0.0545296 0.047757 156 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.78 vpr 62.99 MiB -1 -1 0.36 18188 11 0.26 -1 -1 32852 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 287 319 1 199 84 17 17 289 -1 unnamed_device 23.9 MiB 1.30 1110 11613 3419 5918 2276 63.0 MiB 0.12 0.00 7.42892 -141.349 -7.42892 7.42892 0.67 0.000912719 0.000845129 0.0617361 0.0571347 44 2946 38 6.79088e+06 296384 787024. 2723.27 4.13 0.344898 0.298093 27118 194962 -1 2453 17 1258 3801 205331 47706 6.37282 6.37282 -135.511 -6.37282 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0337246 0.0296877 139 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 7.64 vpr 63.09 MiB -1 -1 0.37 18484 15 0.34 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 296 328 1 217 83 17 17 289 -1 unnamed_device 24.0 MiB 1.23 1158 4223 686 3480 57 63.1 MiB 0.06 0.00 8.41622 -176.296 -8.41622 8.41622 0.68 0.000956927 0.000885483 0.0264028 0.0244557 38 3611 49 6.79088e+06 255968 678818. 2348.85 3.02 0.223794 0.193012 25966 169698 -1 2680 20 1426 4396 232365 53103 7.21437 7.21437 -162.943 -7.21437 0 0 902133. 3121.57 0.24 0.10 0.15 -1 -1 0.24 0.0398023 0.034929 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 6.74 vpr 63.02 MiB -1 -1 0.40 18816 13 0.30 -1 -1 32748 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 285 317 1 216 84 17 17 289 -1 unnamed_device 24.0 MiB 1.27 1276 7221 1624 4993 604 63.0 MiB 0.08 0.00 7.85531 -170.15 -7.85531 7.85531 0.68 0.000934689 0.000865442 0.040693 0.0376911 38 3322 23 6.79088e+06 269440 678818. 2348.85 2.05 0.228425 0.197718 25966 169698 -1 2775 19 1297 3768 192177 43619 6.67391 6.67391 -156.024 -6.67391 0 0 902133. 3121.57 0.32 0.09 0.12 -1 -1 0.32 0.0376145 0.0330725 141 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 7.06 vpr 62.51 MiB -1 -1 0.17 17820 12 0.19 -1 -1 32588 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 239 271 1 187 80 17 17 289 -1 unnamed_device 23.9 MiB 1.61 941 12292 3647 6240 2405 62.5 MiB 0.12 0.00 7.84567 -154.348 -7.84567 7.84567 0.69 0.000923716 0.000856755 0.060279 0.0558787 36 3159 47 6.79088e+06 255968 648988. 2245.63 2.41 0.221159 0.193206 25390 158009 -1 2472 21 1302 3079 197616 45139 6.84606 6.84606 -149.622 -6.84606 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.032902 0.0288239 112 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 14.06 vpr 62.61 MiB -1 -1 0.28 18172 11 0.15 -1 -1 32736 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 235 267 1 177 79 17 17 289 -1 unnamed_device 23.9 MiB 2.10 1083 3966 758 3081 127 62.6 MiB 0.05 0.00 6.83947 -148.082 -6.83947 6.83947 0.68 0.000724541 0.000677514 0.0198614 0.0183931 34 3143 44 6.79088e+06 202080 618332. 2139.56 8.97 0.28189 0.241437 25102 150614 -1 2742 18 1192 2985 213870 46281 6.10302 6.10302 -148.662 -6.10302 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280154 0.0245803 99 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 9.29 vpr 63.05 MiB -1 -1 0.24 18300 13 0.31 -1 -1 32724 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 294 326 1 213 84 17 17 289 -1 unnamed_device 24.3 MiB 1.21 1276 7221 1604 4833 784 63.0 MiB 0.08 0.00 8.37916 -162.744 -8.37916 8.37916 0.68 0.000942165 0.000873074 0.040943 0.0379423 38 3408 30 6.79088e+06 282912 678818. 2348.85 4.84 0.383237 0.328874 25966 169698 -1 2832 17 1371 4127 228456 50332 7.06981 7.06981 -151.734 -7.06981 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0357775 0.0316305 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 5.79 vpr 62.23 MiB -1 -1 0.32 18048 10 0.15 -1 -1 33196 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.5 MiB 1.19 808 5722 1225 4266 231 62.2 MiB 0.06 0.00 6.21616 -120.606 -6.21616 6.21616 0.68 0.000709259 0.00065679 0.0272924 0.0253162 30 2732 29 6.79088e+06 229024 556674. 1926.21 1.70 0.123063 0.1073 24526 138013 -1 2028 15 966 2271 122606 29724 5.32762 5.32762 -121.477 -5.32762 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237293 0.0209417 98 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 8.88 vpr 62.46 MiB -1 -1 0.24 18060 14 0.18 -1 -1 32584 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 239 271 1 183 82 17 17 289 -1 unnamed_device 23.8 MiB 2.52 1099 12720 3439 7948 1333 62.5 MiB 0.11 0.00 7.66942 -163.822 -7.66942 7.66942 0.77 0.000763469 0.000707274 0.0578429 0.0535539 36 3025 27 6.79088e+06 242496 648988. 2245.63 3.26 0.223663 0.195439 25390 158009 -1 2555 19 1122 2802 177721 38329 6.67042 6.67042 -157.002 -6.67042 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0306809 0.0269799 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 7.07 vpr 63.04 MiB -1 -1 0.39 18544 13 0.26 -1 -1 32740 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 266 298 1 209 82 17 17 289 -1 unnamed_device 24.0 MiB 1.83 1233 13432 4516 6489 2427 63.0 MiB 0.13 0.00 7.95965 -167.858 -7.95965 7.95965 0.68 0.000877397 0.000814943 0.0700861 0.0650749 44 3075 18 6.79088e+06 255968 787024. 2723.27 1.85 0.196213 0.173199 27118 194962 -1 2559 15 1227 3270 177857 39469 6.87761 6.87761 -158.31 -6.87761 0 0 997811. 3452.63 0.26 0.08 0.13 -1 -1 0.26 0.0293798 0.0259877 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 9.30 vpr 62.17 MiB -1 -1 0.32 18012 12 0.19 -1 -1 32624 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 31 32 225 257 1 171 80 17 17 289 -1 unnamed_device 23.7 MiB 2.94 973 6100 1428 4438 234 62.2 MiB 0.06 0.00 7.06748 -154.36 -7.06748 7.06748 0.67 0.000714426 0.000662013 0.028182 0.0261311 36 2757 20 6.79088e+06 229024 648988. 2245.63 3.32 0.17688 0.153381 25390 158009 -1 2293 14 959 2284 150234 32953 6.25178 6.25178 -149.108 -6.25178 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0232935 0.0206304 96 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 8.55 vpr 62.92 MiB -1 -1 0.36 18284 12 0.20 -1 -1 32772 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 288 320 1 202 82 17 17 289 -1 unnamed_device 23.9 MiB 1.78 1283 13432 3933 7023 2476 62.9 MiB 0.13 0.00 6.994 -152.251 -6.994 6.994 0.76 0.000898033 0.000830041 0.071764 0.0662867 38 3258 45 6.79088e+06 242496 678818. 2348.85 3.42 0.289564 0.251778 25966 169698 -1 2792 20 1289 3786 376231 129036 6.19713 6.19713 -147.635 -6.19713 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0373475 0.0326753 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 15.86 vpr 62.95 MiB -1 -1 0.41 18444 13 0.28 -1 -1 32708 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 282 314 1 210 83 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1255 7103 1784 4908 411 62.9 MiB 0.08 0.00 7.93183 -164.51 -7.93183 7.93183 0.67 0.000919918 0.000852041 0.0402385 0.0372687 34 4320 48 6.79088e+06 269440 618332. 2139.56 11.50 0.412838 0.354288 25102 150614 -1 3155 18 1371 3899 244448 54181 6.88526 6.88526 -161.632 -6.88526 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0356676 0.0313562 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 8.05 vpr 62.39 MiB -1 -1 0.32 18108 11 0.20 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 233 265 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.80 990 7515 1854 5471 190 62.4 MiB 0.08 0.00 6.41871 -149.746 -6.41871 6.41871 0.67 0.000753199 0.000697435 0.0362124 0.0335677 38 3026 47 6.79088e+06 202080 678818. 2348.85 3.11 0.219364 0.189956 25966 169698 -1 2413 21 1194 3250 178371 39313 5.48535 5.48535 -142.68 -5.48535 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0319412 0.0279772 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 10.76 vpr 62.61 MiB -1 -1 0.30 17920 13 0.26 -1 -1 32700 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 23.7 MiB 2.02 917 4473 833 3541 99 62.6 MiB 0.06 0.00 7.87829 -165.569 -7.87829 7.87829 0.70 0.000817958 0.000754792 0.0251284 0.0233088 38 3450 43 6.79088e+06 202080 678818. 2348.85 5.59 0.23063 0.199179 25966 169698 -1 2306 16 1127 3059 160954 38761 7.08558 7.08558 -157.83 -7.08558 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0294855 0.0260119 111 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 13.85 vpr 63.14 MiB -1 -1 0.27 18116 13 0.30 -1 -1 32844 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 285 317 1 216 82 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1260 5600 1161 4083 356 63.1 MiB 0.08 0.00 7.71882 -168.307 -7.71882 7.71882 0.68 0.00091035 0.000843408 0.0335899 0.0311784 38 3737 30 6.79088e+06 242496 678818. 2348.85 9.39 0.37592 0.322918 25966 169698 -1 2953 18 1578 4251 227933 50692 6.83143 6.83143 -163.944 -6.83143 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0352763 0.0309991 135 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 62.73 MiB -1 -1 0.37 18324 11 0.22 -1 -1 33224 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 243 275 1 190 81 17 17 289 -1 unnamed_device 23.9 MiB 1.23 1127 10581 2985 5703 1893 62.7 MiB 0.10 0.00 6.61008 -134.136 -6.61008 6.61008 0.70 0.000801594 0.000742725 0.051665 0.0477378 36 3306 47 6.79088e+06 269440 648988. 2245.63 4.27 0.311399 0.268005 25390 158009 -1 2514 16 1106 3134 199443 43558 5.42613 5.42613 -127.322 -5.42613 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0285216 0.0251113 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 9.96 vpr 63.53 MiB -1 -1 0.40 18752 14 0.35 -1 -1 33324 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 318 350 1 240 87 17 17 289 -1 unnamed_device 24.7 MiB 1.09 1488 8535 2146 5424 965 63.5 MiB 0.10 0.00 8.76875 -186.498 -8.76875 8.76875 0.68 0.00102027 0.000943358 0.0496393 0.045958 38 3684 27 6.79088e+06 309856 678818. 2348.85 5.48 0.401839 0.346238 25966 169698 -1 2955 19 1551 4202 207936 47522 7.68406 7.68406 -173.86 -7.68406 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0411742 0.0362727 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 7.61 vpr 62.24 MiB -1 -1 0.24 17756 12 0.16 -1 -1 32628 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 222 254 1 185 81 17 17 289 -1 unnamed_device 23.8 MiB 2.67 1096 6031 1363 3831 837 62.2 MiB 0.06 0.00 6.47142 -144.358 -6.47142 6.47142 0.68 0.00071128 0.000659464 0.0272798 0.0253111 34 2909 32 6.79088e+06 242496 618332. 2139.56 2.03 0.161286 0.140029 25102 150614 -1 2421 17 1034 2357 151779 34030 5.9596 5.9596 -144.961 -5.9596 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262176 0.0230909 105 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.03 vpr 63.04 MiB -1 -1 0.38 18852 13 0.29 -1 -1 32924 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 282 314 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.23 1347 4043 780 2904 359 63.0 MiB 0.05 0.00 8.02094 -165.56 -8.02094 8.02094 0.68 0.000908565 0.000841013 0.024074 0.022345 36 3935 48 6.79088e+06 255968 648988. 2245.63 5.55 0.246355 0.211949 25390 158009 -1 3170 18 1474 4112 257378 55889 6.75652 6.75652 -156.97 -6.75652 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0352885 0.0309366 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.87 vpr 62.43 MiB -1 -1 0.26 18180 13 0.18 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 238 270 1 179 82 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1085 7914 1906 5077 931 62.4 MiB 0.08 0.00 7.51507 -164.29 -7.51507 7.51507 0.67 0.000757917 0.000698763 0.0365758 0.0338048 36 2804 28 6.79088e+06 242496 648988. 2245.63 3.50 0.232558 0.200617 25390 158009 -1 2373 16 961 2488 145746 32856 6.54507 6.54507 -157.043 -6.54507 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0265495 0.0234344 105 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 9.88 vpr 62.92 MiB -1 -1 0.37 18524 12 0.22 -1 -1 32784 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 269 301 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 1.44 1205 12711 3448 7705 1558 62.9 MiB 0.12 0.00 7.30358 -162.225 -7.30358 7.30358 0.67 0.000882298 0.000815892 0.0649846 0.060116 36 3744 48 6.79088e+06 269440 648988. 2245.63 5.14 0.372466 0.321206 25390 158009 -1 2886 17 1210 3824 230778 49498 6.19718 6.19718 -153.421 -6.19718 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0331 0.0291055 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 10.13 vpr 63.36 MiB -1 -1 0.43 19236 15 0.47 -1 -1 33216 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 1.05 1525 10583 2684 6530 1369 63.4 MiB 0.13 0.00 9.41018 -195.78 -9.41018 9.41018 0.68 0.00114823 0.00105001 0.0660174 0.0607827 44 4431 22 6.79088e+06 336800 787024. 2723.27 5.25 0.419565 0.363013 27118 194962 -1 3549 28 2405 7622 591122 195980 8.89715 8.89715 -187.599 -8.89715 0 0 997811. 3452.63 0.26 0.20 0.18 -1 -1 0.26 0.0610228 0.0532678 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 8.41 vpr 62.07 MiB -1 -1 0.29 17644 10 0.09 -1 -1 32424 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63560 30 32 174 206 1 132 73 17 17 289 -1 unnamed_device 23.5 MiB 1.74 569 10257 4278 5714 265 62.1 MiB 0.08 0.00 4.82946 -112.742 -4.82946 4.82946 0.67 0.000571717 0.000530949 0.0405131 0.0376692 36 2039 50 6.79088e+06 148192 648988. 2245.63 3.77 0.214035 0.184895 25390 158009 -1 1387 19 709 1580 96839 23573 4.50726 4.50726 -111.085 -4.50726 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0221828 0.0194057 64 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.03 vpr 62.45 MiB -1 -1 0.27 18012 13 0.18 -1 -1 32640 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.9 MiB 1.35 1029 5825 1231 4146 448 62.4 MiB 0.06 0.00 7.87321 -160.437 -7.87321 7.87321 0.67 0.000746252 0.000692635 0.028647 0.0265927 34 2956 35 6.79088e+06 229024 618332. 2139.56 2.63 0.161169 0.139928 25102 150614 -1 2528 20 1164 2881 175744 40261 7.08552 7.08552 -160.21 -7.08552 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0308143 0.027062 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.42 vpr 62.80 MiB -1 -1 0.24 18056 12 0.19 -1 -1 32756 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 264 296 1 198 81 17 17 289 -1 unnamed_device 24.0 MiB 1.95 1009 12506 4599 6333 1574 62.8 MiB 0.12 0.00 7.16042 -155.076 -7.16042 7.16042 0.67 0.000846834 0.000784213 0.0636979 0.059008 38 3077 27 6.79088e+06 229024 678818. 2348.85 5.39 0.341043 0.29473 25966 169698 -1 2467 16 1204 3071 181392 41122 6.24752 6.24752 -151.183 -6.24752 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0296557 0.0261222 115 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 5.34 vpr 62.00 MiB -1 -1 0.27 17720 9 0.13 -1 -1 32592 -1 -1 19 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63488 25 32 183 215 1 134 76 17 17 289 -1 unnamed_device 23.3 MiB 0.91 748 10796 2964 6480 1352 62.0 MiB 0.08 0.00 4.9582 -97.454 -4.9582 4.9582 0.68 0.000606661 0.000563493 0.0433642 0.0402688 28 2171 21 6.79088e+06 255968 531479. 1839.03 1.58 0.118158 0.104091 23950 126010 -1 1961 17 814 2175 142079 32307 4.5107 4.5107 -100.849 -4.5107 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0221851 0.0194401 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 7.35 vpr 62.95 MiB -1 -1 0.39 18488 12 0.28 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 300 332 1 227 85 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1301 7897 1769 4878 1250 62.9 MiB 0.09 0.00 7.57033 -160.892 -7.57033 7.57033 0.68 0.000951625 0.000881362 0.0442211 0.0410298 44 3563 24 6.79088e+06 282912 787024. 2723.27 2.68 0.203837 0.177605 27118 194962 -1 2921 15 1380 3916 214785 48155 6.67037 6.67037 -154.996 -6.67037 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0363073 0.0324272 140 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.95 vpr 63.18 MiB -1 -1 0.41 18900 13 0.34 -1 -1 32676 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 290 322 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1277 8535 2081 5648 806 63.2 MiB 0.10 0.00 8.4853 -176.747 -8.4853 8.4853 0.67 0.000948394 0.000878927 0.0463948 0.0428911 34 4014 42 6.79088e+06 323328 618332. 2139.56 3.96 0.270514 0.235223 25102 150614 -1 3168 17 1357 3943 256389 56599 7.3039 7.3039 -168.531 -7.3039 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0353564 0.0311352 146 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.22 vpr 63.13 MiB -1 -1 0.21 18220 1 0.03 -1 -1 30192 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.2 MiB 3.17 992 16773 5017 8446 3310 63.1 MiB 0.16 0.00 5.50182 -160.116 -5.50182 5.50182 0.67 0.000704382 0.000654708 0.0611061 0.0568403 30 2790 25 6.87369e+06 363320 556674. 1926.21 1.09 0.147763 0.130886 25186 138497 -1 2050 21 1426 2321 167960 54826 4.58385 4.58385 -149.725 -4.58385 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0284216 0.0247111 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.93 vpr 63.14 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30476 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 24.2 MiB 2.69 985 11804 3116 7588 1100 63.1 MiB 0.12 0.00 4.6679 -136.949 -4.6679 4.6679 0.67 0.000698711 0.000649229 0.0461198 0.0428568 38 2075 19 6.87369e+06 335372 678818. 2348.85 3.34 0.272743 0.235149 26626 170182 -1 1843 21 1475 2215 137639 32758 3.98296 3.98296 -132.597 -3.98296 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0283609 0.0246534 141 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.30 vpr 62.76 MiB -1 -1 0.12 18148 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.2 MiB 3.08 979 10873 2754 7440 679 62.8 MiB 0.12 0.00 4.36457 -122.364 -4.36457 4.36457 0.71 0.000627398 0.000583509 0.0422022 0.0390559 34 2557 26 6.87369e+06 293451 618332. 2139.56 1.44 0.169366 0.14725 25762 151098 -1 2008 23 1430 1899 131183 31865 3.84576 3.84576 -123.257 -3.84576 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0268597 0.023239 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.41 vpr 62.70 MiB -1 -1 0.22 18240 1 0.03 -1 -1 30276 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.1 MiB 1.11 974 13557 4041 7216 2300 62.7 MiB 0.12 0.00 4.63038 -128.348 -4.63038 4.63038 0.68 0.000639486 0.000594448 0.0447665 0.0416077 34 2407 26 6.87369e+06 405241 618332. 2139.56 1.47 0.171579 0.149198 25762 151098 -1 1961 22 1401 2565 182639 41805 3.8767 3.8767 -124.544 -3.8767 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0264709 0.022935 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.07 vpr 63.13 MiB -1 -1 0.23 18436 1 0.03 -1 -1 30416 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.2 MiB 1.55 1051 17023 5465 9028 2530 63.1 MiB 0.16 0.00 4.52512 -133.724 -4.52512 4.52512 0.67 0.000684116 0.000635964 0.059303 0.0550331 34 2741 27 6.87369e+06 377294 618332. 2139.56 1.60 0.196473 0.171819 25762 151098 -1 2360 24 1773 3437 275466 61389 3.9127 3.9127 -134.692 -3.9127 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0301255 0.0260697 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.90 vpr 63.29 MiB -1 -1 0.22 18268 1 0.03 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1058 17134 5267 9607 2260 63.3 MiB 0.15 0.00 3.34527 -120.073 -3.34527 3.34527 0.70 0.000714989 0.000663366 0.0597775 0.0554787 32 2826 21 6.87369e+06 419215 586450. 2029.24 2.61 0.229859 0.200213 25474 144626 -1 2263 21 1465 2393 192469 43839 3.15781 3.15781 -124.682 -3.15781 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0304034 0.0262988 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.19 vpr 62.47 MiB -1 -1 0.17 17948 1 0.03 -1 -1 30712 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.9 MiB 2.08 666 11532 3128 7372 1032 62.5 MiB 0.09 0.00 3.87934 -105.571 -3.87934 3.87934 0.68 0.000556649 0.000518523 0.0404582 0.0376762 34 1687 23 6.87369e+06 265503 618332. 2139.56 1.34 0.152608 0.132608 25762 151098 -1 1454 23 1227 2083 146465 34887 2.92996 2.92996 -102.338 -2.92996 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238248 0.020563 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.09 vpr 62.74 MiB -1 -1 0.22 17776 1 0.03 -1 -1 30120 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.0 MiB 0.87 977 15431 4363 8928 2140 62.7 MiB 0.13 0.00 3.48795 -106.181 -3.48795 3.48795 0.68 0.000700939 0.000646079 0.0450429 0.0418435 30 2176 24 6.87369e+06 447163 556674. 1926.21 2.43 0.18545 0.161224 25186 138497 -1 1868 21 942 1689 101117 22863 2.58436 2.58436 -98.3935 -2.58436 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0237115 0.0205265 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.66 vpr 62.88 MiB -1 -1 0.21 18360 1 0.02 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.1 MiB 2.44 888 12980 4535 6374 2071 62.9 MiB 0.12 0.00 3.31297 -114.045 -3.31297 3.31297 0.68 0.000635324 0.000590703 0.0500618 0.0465036 34 2335 21 6.87369e+06 237555 618332. 2139.56 1.40 0.172464 0.150318 25762 151098 -1 2046 18 1239 1803 154821 34852 3.09961 3.09961 -119.68 -3.09961 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0230106 0.0199396 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.75 vpr 62.80 MiB -1 -1 0.22 17976 1 0.03 -1 -1 30144 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.56 870 10400 2388 6951 1061 62.8 MiB 0.10 0.00 3.96554 -131.116 -3.96554 3.96554 0.68 0.000624265 0.000579266 0.0394648 0.0367205 34 2168 22 6.87369e+06 223581 618332. 2139.56 1.37 0.155099 0.134941 25762 151098 -1 1797 23 1331 2222 162159 37386 3.08026 3.08026 -125.632 -3.08026 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269283 0.0233443 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.99 vpr 62.73 MiB -1 -1 0.24 18428 1 0.03 -1 -1 30380 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 23.8 MiB 2.89 661 6718 1392 5000 326 62.7 MiB 0.07 0.00 3.87398 -111.275 -3.87398 3.87398 0.67 0.000615578 0.000572582 0.0267068 0.0248695 34 1788 24 6.87369e+06 223581 618332. 2139.56 1.31 0.146631 0.126577 25762 151098 -1 1485 22 1074 1734 115497 27750 2.96596 2.96596 -108.426 -2.96596 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254329 0.022018 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.62 vpr 62.50 MiB -1 -1 0.23 17956 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 2.41 808 7606 1773 5149 684 62.5 MiB 0.08 0.00 3.6704 -113.65 -3.6704 3.6704 0.76 0.000591743 0.000550841 0.0281174 0.0262217 34 2163 24 6.87369e+06 237555 618332. 2139.56 1.33 0.143986 0.124431 25762 151098 -1 1798 17 1055 1503 107396 25939 3.04261 3.04261 -113.8 -3.04261 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0203656 0.0177686 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.12 vpr 63.17 MiB -1 -1 0.20 18128 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 3.56 843 12183 3137 7426 1620 63.2 MiB 0.13 0.00 4.18499 -131.201 -4.18499 4.18499 0.73 0.000696814 0.000648352 0.0453251 0.0420708 36 2671 41 6.87369e+06 321398 648988. 2245.63 2.65 0.202951 0.176481 26050 158493 -1 2062 22 1974 3012 214596 52850 3.52851 3.52851 -128.635 -3.52851 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0289563 0.0251813 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.80 vpr 63.20 MiB -1 -1 0.24 18208 1 0.03 -1 -1 30348 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.3 MiB 2.18 910 14567 3971 8883 1713 63.2 MiB 0.08 0.00 4.81568 -140.871 -4.81568 4.81568 0.71 0.00031632 0.000290659 0.0229807 0.0211161 30 2435 22 6.87369e+06 433189 556674. 1926.21 0.80 0.094068 0.0818193 25186 138497 -1 1932 21 1346 2179 134417 31060 3.80436 3.80436 -134.289 -3.80436 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0281507 0.0243815 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.40 vpr 62.39 MiB -1 -1 0.21 18004 1 0.02 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.8 MiB 1.85 780 9368 2426 5947 995 62.4 MiB 0.08 0.00 3.03342 -94.7718 -3.03342 3.03342 0.68 0.000548571 0.000510279 0.0311932 0.029013 32 2012 24 6.87369e+06 265503 586450. 2029.24 0.85 0.0922037 0.0809222 25474 144626 -1 1689 24 1222 1996 155355 35631 2.89726 2.89726 -98.8151 -2.89726 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0262359 0.0227835 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.83 vpr 63.33 MiB -1 -1 0.25 18320 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.4 MiB 2.03 1098 16273 6888 8626 759 63.3 MiB 0.15 0.00 3.7276 -123.933 -3.7276 3.7276 0.68 0.000719386 0.000667704 0.0584609 0.0539238 34 2949 21 6.87369e+06 335372 618332. 2139.56 2.88 0.232186 0.201385 25762 151098 -1 2326 21 1772 3071 217549 51302 3.27511 3.27511 -125.274 -3.27511 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289735 0.0251131 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.98 vpr 63.13 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 3.67 1093 10315 2797 6648 870 63.1 MiB 0.11 0.00 4.18499 -137.545 -4.18499 4.18499 0.68 0.00066441 0.000614832 0.0401547 0.037318 34 2792 22 6.87369e+06 293451 618332. 2139.56 1.44 0.173376 0.150855 25762 151098 -1 2280 21 1588 2312 178533 39644 3.21661 3.21661 -126.358 -3.21661 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266242 0.0231615 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.17 vpr 62.88 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30444 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.1 MiB 2.28 867 16445 5131 9259 2055 62.9 MiB 0.13 0.00 2.85191 -106.24 -2.85191 2.85191 0.68 0.000644247 0.000597256 0.0530554 0.0491716 30 1915 21 6.87369e+06 391268 556674. 1926.21 2.04 0.211713 0.184099 25186 138497 -1 1643 20 1156 1984 111966 26084 1.93252 1.93252 -95.358 -1.93252 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0248324 0.0215173 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.21 vpr 62.34 MiB -1 -1 0.21 18004 1 0.03 -1 -1 30128 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.6 MiB 0.76 548 9196 3125 4759 1312 62.3 MiB 0.07 0.00 2.38778 -80.5436 -2.38778 2.38778 0.67 0.000495633 0.000461375 0.030218 0.0281211 30 1363 23 6.87369e+06 195634 556674. 1926.21 0.78 0.0904064 0.078897 25186 138497 -1 1117 18 558 803 49612 11779 2.06882 2.06882 -84.1472 -2.06882 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0175915 0.0152437 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.49 vpr 62.54 MiB -1 -1 0.22 18172 1 0.03 -1 -1 30576 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 3.64 940 10406 3145 6506 755 62.5 MiB 0.10 0.00 5.00887 -149.776 -5.00887 5.00887 0.69 0.000617366 0.000574457 0.0379418 0.0352539 30 2234 22 6.87369e+06 265503 556674. 1926.21 2.05 0.186554 0.161147 25186 138497 -1 1813 18 871 1255 70103 17136 3.44261 3.44261 -132.101 -3.44261 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0231751 0.0201729 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.03 vpr 63.13 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30372 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 1.24 1070 16515 4276 10581 1658 63.1 MiB 0.13 0.00 4.18253 -136.483 -4.18253 4.18253 0.68 0.000655978 0.000603576 0.0521776 0.0483573 32 2544 27 6.87369e+06 489084 586450. 2029.24 0.95 0.138962 0.12251 25474 144626 -1 2155 19 1439 2152 176436 39627 3.6371 3.6371 -132.704 -3.6371 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0255905 0.0222301 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.50 vpr 63.23 MiB -1 -1 0.26 18172 1 0.03 -1 -1 30320 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 3.12 1162 10481 3111 6377 993 63.2 MiB 0.11 0.00 4.31025 -134.645 -4.31025 4.31025 0.68 0.000725445 0.000672474 0.042461 0.0393572 34 2905 21 6.87369e+06 307425 618332. 2139.56 1.47 0.183818 0.159778 25762 151098 -1 2438 21 1694 2671 225483 49755 3.71046 3.71046 -133.687 -3.71046 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290667 0.0252763 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.41 vpr 62.30 MiB -1 -1 0.20 18052 1 0.02 -1 -1 30608 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.8 MiB 1.82 352 9555 3939 4800 816 62.3 MiB 0.06 0.00 2.60613 -72.4296 -2.60613 2.60613 0.67 0.000427364 0.00039694 0.0271197 0.0252037 30 1310 31 6.87369e+06 237555 556674. 1926.21 0.86 0.0841033 0.0735524 25186 138497 -1 893 26 691 1039 62560 16373 2.27547 2.27547 -71.0198 -2.27547 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0204564 0.0176048 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.45 vpr 62.67 MiB -1 -1 0.22 17716 1 0.03 -1 -1 30272 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.27 1029 10263 2694 6379 1190 62.7 MiB 0.10 0.00 4.63338 -131.361 -4.63338 4.63338 0.67 0.000616075 0.000572916 0.0349541 0.0324691 34 2410 23 6.87369e+06 321398 618332. 2139.56 1.36 0.156571 0.13564 25762 151098 -1 2071 24 1472 2681 184281 41722 3.7964 3.7964 -126.792 -3.7964 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0274713 0.0237485 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.81 vpr 62.06 MiB -1 -1 0.20 17408 1 0.02 -1 -1 29992 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.4 MiB 0.63 415 9836 3792 4975 1069 62.1 MiB 0.06 0.00 2.58823 -76.4648 -2.58823 2.58823 0.68 0.000419602 0.000388928 0.0270038 0.0250465 34 1145 25 6.87369e+06 167686 618332. 2139.56 2.49 0.145717 0.125304 25762 151098 -1 885 16 568 649 42105 11703 1.91852 1.91852 -73.9266 -1.91852 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0139942 0.0122172 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.86 vpr 62.70 MiB -1 -1 0.18 17884 1 0.03 -1 -1 30008 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.1 MiB 1.00 1004 15430 3940 9856 1634 62.7 MiB 0.13 0.00 4.64012 -131.611 -4.64012 4.64012 0.68 0.000636394 0.000591511 0.0479135 0.0445233 32 2393 20 6.87369e+06 419215 586450. 2029.24 0.91 0.131351 0.116122 25474 144626 -1 1946 21 1053 1702 124165 28883 3.7541 3.7541 -122.23 -3.7541 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0256998 0.0223166 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.13 vpr 62.88 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 0.92 1073 17591 5429 9856 2306 62.9 MiB 0.15 0.00 3.58631 -114.754 -3.58631 3.58631 0.68 0.000633839 0.000589456 0.0534782 0.0496494 34 2373 20 6.87369e+06 433189 618332. 2139.56 1.34 0.172547 0.151042 25762 151098 -1 2028 19 1130 2110 126575 29957 2.92126 2.92126 -109.204 -2.92126 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0238248 0.0208172 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.16 vpr 63.07 MiB -1 -1 0.18 18360 1 0.03 -1 -1 30424 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.1 MiB 1.66 1004 15824 5333 7131 3360 63.1 MiB 0.13 0.00 4.74578 -132.154 -4.74578 4.74578 0.68 0.000679159 0.000630318 0.0540281 0.0501897 34 2495 24 6.87369e+06 391268 618332. 2139.56 1.64 0.180509 0.157849 25762 151098 -1 2006 23 1429 2568 184000 43320 3.81646 3.81646 -126.442 -3.81646 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291877 0.0252525 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.18 vpr 62.45 MiB -1 -1 0.23 17944 1 0.03 -1 -1 30112 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.8 MiB 1.08 894 11776 3852 5929 1995 62.4 MiB 0.10 0.00 3.01142 -109.398 -3.01142 3.01142 0.68 0.000599953 0.000557996 0.0430425 0.0400158 34 1983 21 6.87369e+06 223581 618332. 2139.56 1.31 0.158586 0.13806 25762 151098 -1 1738 19 935 1554 112505 25755 2.78496 2.78496 -110.254 -2.78496 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240186 0.020922 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.53 vpr 62.51 MiB -1 -1 0.21 17960 1 0.03 -1 -1 30184 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.9 MiB 1.19 686 13738 3515 8195 2028 62.5 MiB 0.11 0.00 3.22907 -99.998 -3.22907 3.22907 0.68 0.000565102 0.000526 0.0422447 0.0392769 32 1791 21 6.87369e+06 363320 586450. 2029.24 2.53 0.181196 0.156751 25474 144626 -1 1519 21 966 1551 138665 31664 3.03361 3.03361 -102.154 -3.03361 0 0 744469. 2576.02 0.20 0.06 0.13 -1 -1 0.20 0.0224106 0.0193687 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.78 vpr 62.54 MiB -1 -1 0.18 17948 1 0.03 -1 -1 30120 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 1.16 760 11698 3432 6949 1317 62.5 MiB 0.10 0.00 3.46101 -100.103 -3.46101 3.46101 0.68 0.000554332 0.000515978 0.0406475 0.0378532 32 2253 27 6.87369e+06 251529 586450. 2029.24 0.93 0.110831 0.0973545 25474 144626 -1 1755 23 1204 2187 187934 42549 3.07756 3.07756 -104.944 -3.07756 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0241065 0.0207758 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.76 vpr 62.34 MiB -1 -1 0.20 17652 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 1.35 766 11106 2788 6396 1922 62.3 MiB 0.09 0.00 3.84524 -116.411 -3.84524 3.84524 0.68 0.000563594 0.000524364 0.0375314 0.0348968 34 1889 24 6.87369e+06 237555 618332. 2139.56 2.63 0.174361 0.150832 25762 151098 -1 1686 21 1144 1880 136805 31506 2.90826 2.90826 -111.82 -2.90826 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0230891 0.0200567 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.97 vpr 62.57 MiB -1 -1 0.23 17872 1 0.03 -1 -1 30156 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.9 MiB 0.92 707 5831 1162 4318 351 62.6 MiB 0.06 0.00 3.52097 -104.958 -3.52097 3.52097 0.73 0.000588057 0.00054797 0.0188054 0.0174813 26 2268 25 6.87369e+06 363320 503264. 1741.40 2.24 0.158031 0.135507 24322 120374 -1 1908 24 1432 2460 211794 50111 3.34816 3.34816 -113.514 -3.34816 0 0 618332. 2139.56 0.17 0.08 0.11 -1 -1 0.17 0.0264176 0.0228381 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.10 vpr 62.78 MiB -1 -1 0.23 17972 1 0.03 -1 -1 30388 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.9 MiB 2.72 703 8591 2001 5849 741 62.8 MiB 0.08 0.00 3.08002 -96.8082 -3.08002 3.08002 0.68 0.000601655 0.000559454 0.0288173 0.0267798 32 2079 29 6.87369e+06 349346 586450. 2029.24 2.59 0.176386 0.151656 25474 144626 -1 1673 21 1230 1792 142577 34533 2.40547 2.40547 -97.8315 -2.40547 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0238204 0.0205642 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.13 vpr 63.22 MiB -1 -1 0.23 18244 1 0.03 -1 -1 30560 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.2 MiB 3.18 1195 18160 4666 11113 2381 63.2 MiB 0.16 0.00 4.16289 -124.14 -4.16289 4.16289 0.71 0.000746007 0.000694158 0.0570407 0.0529152 32 3261 23 6.87369e+06 558954 586450. 2029.24 0.98 0.150215 0.132827 25474 144626 -1 2610 22 1638 3229 246794 56458 4.1243 4.1243 -129.916 -4.1243 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0310284 0.0270493 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.28 vpr 63.30 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30276 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 2.83 1033 17476 4934 10272 2270 63.3 MiB 0.16 0.00 3.9888 -134.401 -3.9888 3.9888 0.68 0.000756573 0.000703205 0.0576117 0.0534326 34 2352 21 6.87369e+06 531006 618332. 2139.56 1.41 0.201459 0.17592 25762 151098 -1 2021 19 1552 2502 154132 36441 3.07746 3.07746 -120.734 -3.07746 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.0247457 0.0218959 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.20 vpr 62.62 MiB -1 -1 0.22 18252 1 0.03 -1 -1 30100 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 2.97 827 12506 3647 6930 1929 62.6 MiB 0.11 0.00 4.12999 -122.522 -4.12999 4.12999 0.68 0.000590156 0.000549401 0.0441175 0.0410609 34 2129 21 6.87369e+06 251529 618332. 2139.56 1.44 0.158351 0.137893 25762 151098 -1 1834 20 1281 1931 143544 34065 3.45621 3.45621 -119.844 -3.45621 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0228831 0.0198592 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.95 vpr 63.20 MiB -1 -1 0.21 18204 1 0.03 -1 -1 30396 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.47 986 12959 4044 6276 2639 63.2 MiB 0.13 0.00 3.77586 -121.787 -3.77586 3.77586 0.68 0.000724787 0.0006733 0.0496512 0.046134 34 2740 27 6.87369e+06 363320 618332. 2139.56 1.62 0.197711 0.172343 25762 151098 -1 2242 22 1647 2835 204711 47759 3.12956 3.12956 -121.716 -3.12956 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0300106 0.0260471 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.26 vpr 63.44 MiB -1 -1 0.26 18300 1 0.04 -1 -1 30308 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.6 MiB 4.23 1219 10033 2675 6590 768 63.4 MiB 0.11 0.00 5.67608 -170.361 -5.67608 5.67608 0.68 0.000722478 0.000670848 0.0395092 0.036644 34 3445 48 6.87369e+06 349346 618332. 2139.56 2.04 0.202387 0.175197 25762 151098 -1 2683 23 2323 3428 293108 64897 4.86379 4.86379 -170.23 -4.86379 0 0 787024. 2723.27 0.23 0.10 0.13 -1 -1 0.23 0.0313154 0.0271942 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.57 vpr 63.38 MiB -1 -1 0.21 18120 1 0.03 -1 -1 30336 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 4.15 920 11145 2994 7135 1016 63.4 MiB 0.12 0.00 5.24874 -155.932 -5.24874 5.24874 0.68 0.000735526 0.000680931 0.0431513 0.0400527 34 2724 30 6.87369e+06 377294 618332. 2139.56 1.48 0.161389 0.140879 25762 151098 -1 2074 21 1789 2709 186218 47251 4.63715 4.63715 -156.683 -4.63715 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.0295929 0.025709 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.61 vpr 63.31 MiB -1 -1 0.26 18148 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 2.75 890 9058 2302 6004 752 63.3 MiB 0.10 0.00 4.13563 -126.898 -4.13563 4.13563 0.67 0.000702066 0.000653405 0.0345729 0.0321418 32 3034 27 6.87369e+06 349346 586450. 2029.24 0.98 0.122263 0.10712 25474 144626 -1 2241 19 1631 2733 219947 53339 3.29421 3.29421 -122.325 -3.29421 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0259918 0.0226546 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.11 vpr 62.74 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30352 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.2 MiB 2.72 1007 14907 5613 7321 1973 62.7 MiB 0.13 0.00 4.35225 -119.373 -4.35225 4.35225 0.68 0.000622218 0.000578949 0.0530697 0.0492775 34 2610 26 6.87369e+06 279477 618332. 2139.56 1.47 0.174865 0.152682 25762 151098 -1 2183 24 1390 2007 154868 35799 3.95806 3.95806 -125.287 -3.95806 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0276729 0.0239482 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.88 vpr 63.41 MiB -1 -1 0.28 18524 1 0.03 -1 -1 30376 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.5 MiB 2.89 1243 16762 4798 10410 1554 63.4 MiB 0.17 0.00 4.91341 -161.214 -4.91341 4.91341 0.68 0.000978414 0.000917071 0.0647767 0.0601687 32 3317 36 6.87369e+06 531006 586450. 2029.24 2.97 0.331074 0.286072 25474 144626 -1 2723 16 1683 2742 221851 50536 4.03776 4.03776 -154.055 -4.03776 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0280091 0.0244342 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.62 vpr 62.68 MiB -1 -1 0.22 18060 1 0.03 -1 -1 30152 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 24.1 MiB 1.97 672 7339 1576 4955 808 62.7 MiB 0.07 0.00 3.55895 -103.04 -3.55895 3.55895 0.68 0.000574282 0.000527795 0.024652 0.0228603 32 1962 22 6.87369e+06 307425 586450. 2029.24 0.88 0.0923815 0.0804406 25474 144626 -1 1649 22 1252 2135 162207 38995 2.88796 2.88796 -104.481 -2.88796 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0236273 0.0203868 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.65 vpr 63.18 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 2.80 1158 13127 3358 8192 1577 63.2 MiB 0.13 0.00 4.80948 -147.413 -4.80948 4.80948 0.68 0.000696787 0.000646086 0.0504144 0.0466302 30 3059 23 6.87369e+06 321398 556674. 1926.21 0.98 0.121277 0.107209 25186 138497 -1 2479 20 1353 2038 146343 31929 3.92376 3.92376 -138.461 -3.92376 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0263198 0.0228793 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.93 vpr 62.96 MiB -1 -1 0.22 18352 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1064 11703 2949 7949 805 63.0 MiB 0.11 0.00 3.7235 -118.87 -3.7235 3.7235 0.68 0.000689282 0.00064066 0.039135 0.0363276 28 2710 26 6.87369e+06 447163 531479. 1839.03 3.33 0.203477 0.176117 24610 126494 -1 2453 23 1578 2751 231219 51613 3.38641 3.38641 -125.641 -3.38641 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0295038 0.0255373 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.24 vpr 62.71 MiB -1 -1 0.16 17732 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.1 MiB 1.02 984 6120 1199 4615 306 62.7 MiB 0.07 0.00 4.14049 -128.002 -4.14049 4.14049 0.67 0.000627342 0.000583804 0.0216244 0.0200746 32 2790 25 6.87369e+06 363320 586450. 2029.24 1.31 0.118435 0.102609 25474 144626 -1 2197 22 1532 2815 214696 50708 3.5868 3.5868 -125.637 -3.5868 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0260472 0.0225608 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.56 vpr 63.14 MiB -1 -1 0.23 18204 1 0.03 -1 -1 30360 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.2 MiB 3.06 1135 13883 3973 8209 1701 63.1 MiB 0.14 0.00 4.95345 -149.04 -4.95345 4.95345 0.70 0.000692527 0.000642226 0.0532851 0.0494736 34 2680 19 6.87369e+06 307425 618332. 2139.56 1.59 0.185467 0.162048 25762 151098 -1 2300 18 1333 1762 130570 29977 3.8404 3.8404 -137.578 -3.8404 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0248861 0.0217367 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.07 vpr 63.19 MiB -1 -1 0.22 18312 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 2.70 887 17835 5720 8884 3231 63.2 MiB 0.15 0.00 3.78934 -120.114 -3.78934 3.78934 0.68 0.000710885 0.000661064 0.0601625 0.0557891 36 2335 23 6.87369e+06 447163 648988. 2245.63 3.48 0.262018 0.227582 26050 158493 -1 1838 16 1140 2130 129087 32042 3.31711 3.31711 -116.549 -3.31711 0 0 828058. 2865.25 0.22 0.06 0.11 -1 -1 0.22 0.0230091 0.0200932 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.42 vpr 63.25 MiB -1 -1 0.24 18248 1 0.04 -1 -1 30364 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.72 937 16971 4971 8753 3247 63.3 MiB 0.16 0.00 4.12873 -132.442 -4.12873 4.12873 0.68 0.000737514 0.000683883 0.0568908 0.0527661 34 2718 26 6.87369e+06 489084 618332. 2139.56 1.72 0.206077 0.179821 25762 151098 -1 2066 22 1668 2690 198901 47188 3.31716 3.31716 -120.864 -3.31716 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0305059 0.0264305 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.25 vpr 62.97 MiB -1 -1 0.20 18160 1 0.03 -1 -1 30260 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.1 MiB 0.89 950 11863 2938 8144 781 63.0 MiB 0.10 0.00 4.28779 -126.336 -4.28779 4.28779 0.68 0.000620441 0.000573592 0.0361995 0.0335706 32 2445 24 6.87369e+06 461137 586450. 2029.24 2.58 0.226615 0.195306 25474 144626 -1 2085 21 1314 2365 183655 42268 3.6921 3.6921 -124.78 -3.6921 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0256517 0.0222615 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.11 vpr 63.33 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30072 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.69 982 14072 3725 8207 2140 63.3 MiB 0.14 0.00 4.76758 -137.763 -4.76758 4.76758 0.71 0.000655318 0.00060949 0.0512595 0.0476823 34 2626 24 6.87369e+06 307425 618332. 2139.56 1.44 0.181268 0.15819 25762 151098 -1 2196 25 1842 2696 197778 45492 3.8247 3.8247 -129.883 -3.8247 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0304702 0.0263237 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.09 vpr 63.29 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.4 MiB 2.63 1107 16267 4807 9259 2201 63.3 MiB 0.16 0.00 4.75448 -144.408 -4.75448 4.75448 0.68 0.000741007 0.000688477 0.0651869 0.0604959 34 3196 22 6.87369e+06 307425 618332. 2139.56 2.50 0.20833 0.182507 25762 151098 -1 2511 24 1945 3198 270338 61028 4.16936 4.16936 -144.077 -4.16936 0 0 787024. 2723.27 0.21 0.10 0.16 -1 -1 0.21 0.0321353 0.0278372 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.17 vpr 63.37 MiB -1 -1 0.25 18188 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.4 MiB 2.75 1063 9385 2579 6271 535 63.4 MiB 0.10 0.00 4.4085 -135.318 -4.4085 4.4085 0.68 0.000746669 0.000693582 0.03993 0.0370947 34 3018 23 6.87369e+06 293451 618332. 2139.56 1.54 0.184496 0.160327 25762 151098 -1 2545 21 1704 3056 247319 56220 3.8237 3.8237 -136.367 -3.8237 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0296867 0.0257365 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 7.59 vpr 62.48 MiB -1 -1 0.22 17932 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 23.8 MiB 0.90 618 7457 1687 5261 509 62.5 MiB 0.06 0.00 3.47695 -100.633 -3.47695 3.47695 0.73 0.000416283 0.000381758 0.0181156 0.0166174 28 1979 29 6.87369e+06 307425 531479. 1839.03 3.95 0.173146 0.147954 24610 126494 -1 1725 19 1119 1757 142622 35883 2.81396 2.81396 -104.891 -2.81396 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0208845 0.0180036 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.53 vpr 62.92 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.1 MiB 2.02 945 13432 4185 7036 2211 62.9 MiB 0.13 0.00 3.78256 -132.968 -3.78256 3.78256 0.69 0.000673854 0.000621018 0.0528005 0.04901 34 2610 20 6.87369e+06 251529 618332. 2139.56 1.60 0.181555 0.158454 25762 151098 -1 2258 24 1858 2665 241814 53754 3.4618 3.4618 -134.64 -3.4618 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298908 0.0258763 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.40 vpr 63.50 MiB -1 -1 0.21 18208 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.6 MiB 3.19 1267 11983 3302 6304 2377 63.5 MiB 0.14 0.00 5.48208 -158.647 -5.48208 5.48208 0.68 0.000761176 0.000706949 0.0494481 0.0459916 34 3774 46 6.87369e+06 335372 618332. 2139.56 2.32 0.194918 0.17014 25762 151098 -1 2816 20 2121 3257 267636 63434 4.8824 4.8824 -161.854 -4.8824 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0296652 0.025876 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.52 vpr 63.14 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 2.73 1044 14048 3802 8919 1327 63.1 MiB 0.13 0.00 4.31147 -138.674 -4.31147 4.31147 0.69 0.000694144 0.000645666 0.0450878 0.0418235 28 2441 22 6.87369e+06 475111 531479. 1839.03 0.93 0.127557 0.112442 24610 126494 -1 2295 23 1620 2678 202128 45280 3.09026 3.09026 -127.972 -3.09026 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297182 0.0257321 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.06 vpr 62.56 MiB -1 -1 0.17 18088 1 0.03 -1 -1 30348 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.76 638 14295 3167 9759 1369 62.6 MiB 0.11 0.00 3.573 -107.747 -3.573 3.573 0.72 0.000563598 0.000513999 0.0458283 0.0424914 28 2093 49 6.87369e+06 349346 531479. 1839.03 1.50 0.139318 0.121894 24610 126494 -1 1708 23 1291 2042 156044 38519 3.09756 3.09756 -114.089 -3.09756 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0252833 0.0217777 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.60 vpr 63.54 MiB -1 -1 0.26 18588 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 5.23 1345 13553 3739 8295 1519 63.5 MiB 0.15 0.00 5.88501 -174.993 -5.88501 5.88501 0.68 0.00085638 0.000798453 0.061175 0.0570393 36 3244 24 6.87369e+06 349346 648988. 2245.63 2.34 0.232528 0.204278 26050 158493 -1 2821 22 2283 3476 317566 69187 4.6476 4.6476 -163.711 -4.6476 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0342328 0.0296948 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.61 vpr 63.13 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30444 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 2.78 991 19023 5843 10714 2466 63.1 MiB 0.16 0.00 4.60102 -140.95 -4.60102 4.60102 0.70 0.000681381 0.000633124 0.0587824 0.054399 28 2347 24 6.87369e+06 489084 531479. 1839.03 0.92 0.141682 0.125268 24610 126494 -1 2160 21 1572 2552 174583 41140 3.7901 3.7901 -135.578 -3.7901 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0281868 0.0246058 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.35 vpr 62.54 MiB -1 -1 0.16 17792 1 0.02 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 24.0 MiB 0.83 773 11398 3057 7257 1084 62.5 MiB 0.10 0.00 3.5954 -103.22 -3.5954 3.5954 0.68 0.000543986 0.000505651 0.033707 0.0313759 34 1951 23 6.87369e+06 335372 618332. 2139.56 2.78 0.216464 0.186333 25762 151098 -1 1568 17 903 1512 100341 24273 2.92426 2.92426 -99.3986 -2.92426 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0181227 0.0157398 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.26 vpr 63.22 MiB -1 -1 0.23 18420 1 0.03 -1 -1 30224 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1100 15611 4394 9181 2036 63.2 MiB 0.13 0.00 5.24422 -137.452 -5.24422 5.24422 0.68 0.000698116 0.000646806 0.0485642 0.0449604 30 2517 25 6.87369e+06 517032 556674. 1926.21 2.35 0.207577 0.180399 25186 138497 -1 2066 19 1062 2224 129406 29709 4.11965 4.11965 -128.758 -4.11965 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0258582 0.0225143 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.19 vpr 62.48 MiB -1 -1 0.14 17764 1 0.03 -1 -1 30096 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 806 14303 4874 7080 2349 62.5 MiB 0.11 0.00 3.43775 -108.88 -3.43775 3.43775 0.68 0.000553673 0.000515194 0.0458059 0.0425873 30 1962 20 6.87369e+06 265503 556674. 1926.21 2.39 0.174122 0.151251 25186 138497 -1 1661 19 1041 1865 115410 26078 2.85796 2.85796 -108.295 -2.85796 0 0 706193. 2443.58 0.26 0.05 0.12 -1 -1 0.26 0.019971 0.0176693 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.81 vpr 62.80 MiB -1 -1 0.23 17884 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 24.1 MiB 2.12 844 16959 4603 10486 1870 62.8 MiB 0.13 0.00 3.87934 -115.346 -3.87934 3.87934 0.67 0.000600714 0.00055189 0.0483101 0.0447585 28 1981 18 6.87369e+06 475111 531479. 1839.03 0.86 0.116378 0.10291 24610 126494 -1 1929 24 1355 2462 170836 39582 3.10226 3.10226 -115.695 -3.10226 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0260062 0.0223703 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.26 vpr 63.27 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30280 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.3 MiB 3.83 1009 14221 4548 7033 2640 63.3 MiB 0.14 0.00 4.12353 -122.981 -4.12353 4.12353 0.68 0.000683781 0.000634246 0.0551157 0.0511588 34 2595 24 6.87369e+06 335372 618332. 2139.56 1.50 0.191664 0.167208 25762 151098 -1 2283 23 1888 2879 220409 50981 3.35291 3.35291 -119.962 -3.35291 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298703 0.0258741 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.57 vpr 63.20 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.3 MiB 2.21 979 14964 4132 9262 1570 63.2 MiB 0.14 0.00 4.41935 -144.511 -4.41935 4.41935 0.68 0.000706729 0.000655872 0.0543983 0.0504752 34 2262 22 6.87369e+06 363320 618332. 2139.56 1.43 0.191052 0.166856 25762 151098 -1 1874 21 1397 2097 141545 33476 3.96296 3.96296 -136.55 -3.96296 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0284126 0.0247064 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 6.14 vpr 63.09 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1060 12943 3369 8335 1239 63.1 MiB 0.12 0.00 4.82683 -144.882 -4.82683 4.82683 0.68 0.000702655 0.000653332 0.0467404 0.0434579 32 2771 40 6.87369e+06 377294 586450. 2029.24 1.02 0.137942 0.121375 25474 144626 -1 2341 21 1610 2888 258610 57275 3.91576 3.91576 -141.496 -3.91576 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0281934 0.0244633 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.62 vpr 62.55 MiB -1 -1 0.19 17828 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.8 MiB 3.45 898 11233 2898 7220 1115 62.6 MiB 0.11 0.00 4.78272 -135.094 -4.78272 4.78272 0.69 0.000594035 0.000551682 0.0422344 0.0392441 34 2238 25 6.87369e+06 209608 618332. 2139.56 1.40 0.156663 0.13652 25762 151098 -1 1856 19 949 1318 98854 22515 3.2292 3.2292 -118.065 -3.2292 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219241 0.0190591 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.09 vpr 63.03 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30416 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.2 MiB 2.65 852 9712 2603 6178 931 63.0 MiB 0.10 0.00 3.7214 -119.25 -3.7214 3.7214 0.68 0.000632907 0.000587674 0.0379732 0.0353089 34 2440 41 6.87369e+06 237555 618332. 2139.56 1.58 0.174949 0.151409 25762 151098 -1 1987 23 1447 2180 181291 41758 3.2835 3.2835 -120.806 -3.2835 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.027652 0.0238713 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 63.09 MiB -1 -1 0.24 18328 1 0.03 -1 -1 30540 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.1 MiB 2.20 924 12798 3409 8384 1005 63.1 MiB 0.11 0.00 3.48905 -102.127 -3.48905 3.48905 0.68 0.000664528 0.000612011 0.0402141 0.0372691 28 2301 21 6.87369e+06 475111 531479. 1839.03 2.69 0.204275 0.176341 24610 126494 -1 2051 21 1207 2406 163683 38026 2.93926 2.93926 -104.1 -2.93926 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0260724 0.0225632 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.13 vpr 62.73 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30352 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 24.0 MiB 1.60 881 17159 5393 9230 2536 62.7 MiB 0.13 0.00 4.16979 -108.643 -4.16979 4.16979 0.68 0.00058376 0.000542967 0.0480838 0.0445905 26 2324 34 6.87369e+06 489084 503264. 1741.40 2.61 0.195101 0.168923 24322 120374 -1 2062 24 1373 2548 261583 55392 3.966 3.966 -116.28 -3.966 0 0 618332. 2139.56 0.18 0.13 0.11 -1 -1 0.18 0.0354222 0.0303985 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.66 vpr 62.83 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 317 269 1 156 79 17 17 289 -1 unnamed_device 23.9 MiB 3.08 809 13092 4770 6917 1405 62.8 MiB 0.12 0.00 3.85608 -118.614 -3.85608 3.85608 0.69 0.000634158 0.000590002 0.0509338 0.0473378 34 2175 21 6.87369e+06 237555 618332. 2139.56 2.79 0.233375 0.201417 25762 151098 -1 1788 21 1434 2513 188244 43098 3.10226 3.10226 -117.833 -3.10226 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0253672 0.021971 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.29 vpr 63.05 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1036 10756 3215 6482 1059 63.1 MiB 0.11 0.00 3.6884 -127.691 -3.6884 3.6884 0.70 0.00066583 0.000618837 0.04257 0.0395456 34 2701 19 6.87369e+06 237555 618332. 2139.56 1.52 0.168557 0.146568 25762 151098 -1 2296 20 1527 2272 197567 44265 3.28591 3.28591 -130.033 -3.28591 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0257007 0.0223275 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.82 vpr 62.82 MiB -1 -1 0.23 17696 1 0.03 -1 -1 30352 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.2 MiB 1.00 1012 10744 2561 7474 709 62.8 MiB 0.10 0.00 4.55512 -132.128 -4.55512 4.55512 0.69 0.000629233 0.00058506 0.0344327 0.0318623 30 2480 24 6.87369e+06 433189 556674. 1926.21 2.94 0.222734 0.191578 25186 138497 -1 2052 22 1079 2002 143467 30775 3.3592 3.3592 -119.088 -3.3592 0 0 706193. 2443.58 0.23 0.07 0.13 -1 -1 0.23 0.0259427 0.0224646 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.85 vpr 63.18 MiB -1 -1 0.19 18132 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 3.51 991 16023 4565 8930 2528 63.2 MiB 0.16 0.00 4.82048 -149.465 -4.82048 4.82048 0.73 0.00070126 0.000651225 0.0607351 0.0564352 34 3392 28 6.87369e+06 321398 618332. 2139.56 2.37 0.210672 0.184507 25762 151098 -1 2503 23 2181 3291 278560 65633 4.13006 4.13006 -148.675 -4.13006 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.0302059 0.0262055 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.03 vpr 63.21 MiB -1 -1 0.25 18316 1 0.03 -1 -1 30448 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 3.86 978 12164 2681 7945 1538 63.2 MiB 0.10 0.00 5.314 -155.075 -5.314 5.314 0.68 0.000742831 0.000688045 0.0412832 0.0382202 30 2902 25 6.87369e+06 503058 556674. 1926.21 1.31 0.135055 0.11854 25186 138497 -1 2004 20 1329 2376 136001 33949 4.02235 4.02235 -142.136 -4.02235 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0284559 0.0247495 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.76 vpr 63.22 MiB -1 -1 0.23 18248 1 0.03 -1 -1 30380 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.2 MiB 2.79 1071 14431 4037 9367 1027 63.2 MiB 0.13 0.00 4.54908 -143.401 -4.54908 4.54908 0.68 0.000750495 0.000694561 0.0459664 0.0425483 26 3450 43 6.87369e+06 572927 503264. 1741.40 5.95 0.252996 0.218881 24322 120374 -1 2750 24 2085 3776 389607 85971 4.2086 4.2086 -148.799 -4.2086 0 0 618332. 2139.56 0.17 0.12 0.11 -1 -1 0.17 0.0330358 0.0285818 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.72 vpr 62.63 MiB -1 -1 0.21 18104 1 0.03 -1 -1 30228 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.38 839 13261 4339 6686 2236 62.6 MiB 0.12 0.00 3.89188 -120.186 -3.89188 3.89188 0.73 0.000587206 0.000546836 0.047605 0.0442736 34 2030 23 6.87369e+06 237555 618332. 2139.56 1.32 0.161395 0.140898 25762 151098 -1 1732 20 1092 1954 136878 32517 2.84696 2.84696 -109.404 -2.84696 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0223645 0.0193902 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.84 vpr 63.06 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30572 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 3.47 1044 13260 3550 8119 1591 63.1 MiB 0.13 0.00 4.61482 -143.823 -4.61482 4.61482 0.68 0.000684435 0.000626984 0.0546954 0.0508043 34 2567 22 6.87369e+06 307425 618332. 2139.56 1.48 0.193877 0.169212 25762 151098 -1 2198 21 1641 2564 203753 44634 3.8886 3.8886 -139.378 -3.8886 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0289228 0.0251167 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.82 vpr 63.19 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30384 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 2.37 1037 9111 2097 6458 556 63.2 MiB 0.10 0.00 5.22106 -152.651 -5.22106 5.22106 0.68 0.000688829 0.000640009 0.0344685 0.032026 34 2776 30 6.87369e+06 321398 618332. 2139.56 1.58 0.175514 0.152151 25762 151098 -1 2362 23 1709 2786 230735 51614 4.07176 4.07176 -144.258 -4.07176 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0290968 0.0252376 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.72 vpr 63.17 MiB -1 -1 0.27 18244 1 0.03 -1 -1 30152 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.2 MiB 2.84 1053 16207 5040 8570 2597 63.2 MiB 0.15 0.00 5.4124 -149.797 -5.4124 5.4124 0.68 0.000677248 0.000628475 0.0563039 0.0523153 34 2846 23 6.87369e+06 391268 618332. 2139.56 1.82 0.192 0.167989 25762 151098 -1 2223 21 1638 2564 188756 44603 4.66515 4.66515 -146.332 -4.66515 0 0 787024. 2723.27 0.28 0.08 0.16 -1 -1 0.28 0.0273165 0.023715 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.21 vpr 63.32 MiB -1 -1 0.27 18160 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 24.4 MiB 3.13 925 12903 3392 7693 1818 63.3 MiB 0.13 0.00 4.69758 -137.96 -4.69758 4.69758 0.68 0.000721015 0.000669541 0.0465402 0.043175 28 2649 21 6.87369e+06 433189 531479. 1839.03 1.14 0.131352 0.115644 24610 126494 -1 2191 19 1414 2329 179999 42937 3.46156 3.46156 -129.767 -3.46156 0 0 648988. 2245.63 0.22 0.08 0.11 -1 -1 0.22 0.0264394 0.0231716 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.77 vpr 63.14 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.3 MiB 2.33 1052 9943 2760 6470 713 63.1 MiB 0.11 0.00 4.73658 -142.26 -4.73658 4.73658 0.68 0.000713465 0.000663409 0.039867 0.0370309 34 2918 23 6.87369e+06 293451 618332. 2139.56 1.56 0.179407 0.155779 25762 151098 -1 2375 24 1836 3219 237418 55210 4.11106 4.11106 -143.911 -4.11106 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.032063 0.0277727 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.58 vpr 63.22 MiB -1 -1 0.25 18164 1 0.03 -1 -1 30300 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.3 MiB 2.31 985 14361 3761 8676 1924 63.2 MiB 0.13 0.00 4.09163 -124.793 -4.09163 4.09163 0.68 0.000709716 0.00065878 0.0532011 0.0493953 30 2131 23 6.87369e+06 405241 556674. 1926.21 2.37 0.22016 0.191287 25186 138497 -1 1690 18 1078 1813 98061 23508 2.93501 2.93501 -111.204 -2.93501 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0251997 0.021913 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.48 vpr 62.25 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.7 MiB 1.16 780 9356 2513 5902 941 62.2 MiB 0.09 0.00 3.99928 -120.309 -3.99928 3.99928 0.68 0.000553544 0.00051528 0.031255 0.0290981 34 1813 21 6.87369e+06 237555 618332. 2139.56 2.60 0.186308 0.160406 25762 151098 -1 1604 20 854 1316 101333 23397 2.87996 2.87996 -108.612 -2.87996 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0213742 0.0185258 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.16 vpr 63.17 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30452 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.2 MiB 4.09 1081 10898 2607 7262 1029 63.2 MiB 0.11 0.00 4.62608 -141.152 -4.62608 4.62608 0.69 0.000718102 0.000665773 0.0373017 0.0344662 28 2708 23 6.87369e+06 475111 531479. 1839.03 3.20 0.209986 0.181448 24610 126494 -1 2458 22 1693 2867 224205 50600 3.8954 3.8954 -141.192 -3.8954 0 0 648988. 2245.63 0.22 0.09 0.11 -1 -1 0.22 0.0297305 0.0257572 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.99 vpr 63.24 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.4 MiB 4.15 999 9013 2093 6314 606 63.2 MiB 0.11 0.00 4.56982 -152.894 -4.56982 4.56982 0.74 0.000756423 0.000700366 0.0394179 0.0366564 34 2775 24 6.87369e+06 293451 618332. 2139.56 1.83 0.190139 0.165048 25762 151098 -1 2295 20 1844 3015 218749 51049 3.7934 3.7934 -148.97 -3.7934 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291613 0.0253648 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.82 vpr 62.55 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.9 MiB 2.65 750 8508 2024 5759 725 62.6 MiB 0.08 0.00 4.48134 -122.374 -4.48134 4.48134 0.67 0.000580881 0.000540449 0.030513 0.0283995 34 2152 23 6.87369e+06 223581 618332. 2139.56 1.38 0.145589 0.12615 25762 151098 -1 1715 18 1028 1348 88426 23124 3.3655 3.3655 -115.562 -3.3655 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0209141 0.0181967 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 6.37 vpr 62.38 MiB -1 -1 0.21 17760 1 0.03 -1 -1 30384 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 1.09 827 12143 3533 6628 1982 62.4 MiB 0.10 0.00 3.95118 -117.571 -3.95118 3.95118 0.69 0.000549377 0.000510809 0.0387672 0.0360585 30 2035 24 6.87369e+06 279477 556674. 1926.21 2.51 0.177022 0.153266 25186 138497 -1 1786 21 1044 1832 114076 25448 2.88196 2.88196 -110.159 -2.88196 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222564 0.0192789 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.78 vpr 63.27 MiB -1 -1 0.23 18172 1 0.03 -1 -1 30492 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.3 MiB 3.13 991 14871 5387 7142 2342 63.3 MiB 0.14 0.00 4.73658 -148.901 -4.73658 4.73658 0.68 0.000700503 0.000651466 0.0566351 0.0526074 34 3440 28 6.87369e+06 321398 618332. 2139.56 1.73 0.172067 0.150917 25762 151098 -1 2472 23 2154 2974 246206 55991 4.48946 4.48946 -149.449 -4.48946 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.030061 0.0260471 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.46 vpr 63.26 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.3 MiB 2.89 1154 11923 3090 8152 681 63.3 MiB 0.12 0.00 5.18474 -149.968 -5.18474 5.18474 0.68 0.000704281 0.000654355 0.0433649 0.0402673 34 3034 41 6.87369e+06 377294 618332. 2139.56 1.71 0.195493 0.169657 25762 151098 -1 2254 22 1523 2265 155197 40705 4.52365 4.52365 -151.721 -4.52365 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0298115 0.0259289 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.19 vpr 63.38 MiB -1 -1 0.24 18024 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.4 MiB 0.87 1048 20284 6297 10335 3652 63.4 MiB 0.17 0.00 5.33542 -146.763 -5.33542 5.33542 0.68 0.000715214 0.000665313 0.0650109 0.0603753 34 3116 28 6.87369e+06 503058 618332. 2139.56 3.42 0.292975 0.254563 25762 151098 -1 2452 22 1878 3312 278955 63395 4.70785 4.70785 -145.786 -4.70785 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0298897 0.0259579 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.55 vpr 63.16 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30424 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.3 MiB 2.18 934 17397 5220 9797 2380 63.2 MiB 0.14 0.00 3.59195 -107.694 -3.59195 3.59195 0.67 0.000638872 0.000594107 0.0528954 0.0490932 30 2081 23 6.87369e+06 475111 556674. 1926.21 2.54 0.218371 0.189874 25186 138497 -1 1768 19 973 1696 95345 22746 2.80666 2.80666 -101.502 -2.80666 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0234817 0.020346 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.01 vpr 62.46 MiB -1 -1 0.19 18020 1 0.03 -1 -1 30472 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 0.96 647 12980 4064 8068 848 62.5 MiB 0.10 0.00 3.48275 -97.807 -3.48275 3.48275 0.69 0.000558891 0.000513841 0.0431362 0.0400553 34 1699 22 6.87369e+06 293451 618332. 2139.56 1.29 0.14936 0.129868 25762 151098 -1 1429 20 1057 1601 114649 26035 2.72966 2.72966 -93.4311 -2.72966 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0211418 0.0182592 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.57 vpr 63.51 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 3.89 1306 7108 1644 4961 503 63.5 MiB 0.09 0.00 4.4536 -142.144 -4.4536 4.4536 0.68 0.000800999 0.000743875 0.0317303 0.0294991 34 3921 24 6.87369e+06 335372 618332. 2139.56 1.78 0.191537 0.165746 25762 151098 -1 3133 21 2077 3410 276995 63575 4.57546 4.57546 -154.017 -4.57546 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0325163 0.028297 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.25 vpr 63.18 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30280 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 4.85 1071 15151 5059 7758 2334 63.2 MiB 0.14 0.00 5.62787 -168.296 -5.62787 5.62787 0.69 0.000712746 0.000660951 0.0599967 0.0556867 36 2526 36 6.87369e+06 307425 648988. 2245.63 3.41 0.273236 0.237138 26050 158493 -1 2113 21 1551 2426 157015 37447 4.59085 4.59085 -154.24 -4.59085 0 0 828058. 2865.25 0.23 0.08 0.14 -1 -1 0.23 0.0288573 0.0253487 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.25 vpr 63.08 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 331 280 1 185 81 17 17 289 -1 unnamed_device 24.2 MiB 5.01 884 8831 2130 6252 449 63.1 MiB 0.09 0.00 4.48255 -144.515 -4.48255 4.48255 0.68 0.000655917 0.000609636 0.0351412 0.0326518 34 2511 25 6.87369e+06 237555 618332. 2139.56 1.39 0.165822 0.143645 25762 151098 -1 2085 20 1422 2107 158928 37458 3.98026 3.98026 -143.093 -3.98026 0 0 787024. 2723.27 0.21 0.08 0.18 -1 -1 0.21 0.025527 0.0221893 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.07 vpr 63.05 MiB -1 -1 0.23 18144 1 0.03 -1 -1 30372 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.1 MiB 1.26 978 12751 2883 8925 943 63.1 MiB 0.12 0.00 4.92341 -136.221 -4.92341 4.92341 0.67 0.000665951 0.000618505 0.0402187 0.0371988 32 2844 25 6.87369e+06 461137 586450. 2029.24 0.96 0.121896 0.106955 25474 144626 -1 2202 24 1453 2365 203989 46275 3.7844 3.7844 -126.569 -3.7844 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0295125 0.0255315 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.81 vpr 63.30 MiB -1 -1 0.26 18252 1 0.03 -1 -1 30572 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.4 MiB 1.88 994 11641 2686 8324 631 63.3 MiB 0.11 0.00 4.45728 -128.707 -4.45728 4.45728 0.67 0.000734917 0.000676913 0.0404082 0.0374916 26 2822 32 6.87369e+06 475111 503264. 1741.40 1.08 0.137336 0.120316 24322 120374 -1 2420 24 1643 2677 211161 49524 4.10046 4.10046 -136.732 -4.10046 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0326618 0.0283152 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 5.95 vpr 63.14 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30064 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.3 MiB 1.89 790 16473 4651 9095 2727 63.1 MiB 0.14 0.00 3.6935 -103.107 -3.6935 3.6935 0.68 0.000649109 0.000603739 0.0534658 0.0496364 30 2610 40 6.87369e+06 433189 556674. 1926.21 1.22 0.153162 0.134586 25186 138497 -1 1665 19 1172 2092 115397 30397 2.83221 2.83221 -100.063 -2.83221 0 0 706193. 2443.58 0.19 0.06 0.09 -1 -1 0.19 0.0243877 0.0212037 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.28 vpr 63.20 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 3.84 1285 14639 4463 8795 1381 63.2 MiB 0.15 0.00 4.87673 -155.976 -4.87673 4.87673 0.69 0.000710212 0.000651665 0.0571651 0.0529002 36 3172 31 6.87369e+06 307425 648988. 2245.63 1.52 0.175022 0.153344 26050 158493 -1 2654 21 1778 2884 251542 53356 4.19495 4.19495 -148.621 -4.19495 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0284244 0.0246878 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.94 vpr 63.24 MiB -1 -1 0.22 18264 1 0.03 -1 -1 30072 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 2.92 1114 17964 5405 9806 2753 63.2 MiB 0.17 0.00 4.14663 -137.433 -4.14663 4.14663 0.68 0.000753346 0.000699339 0.060474 0.0561057 28 3006 33 6.87369e+06 503058 531479. 1839.03 3.20 0.279492 0.242408 24610 126494 -1 2459 21 1688 2717 206629 48333 3.48446 3.48446 -134.388 -3.48446 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0297263 0.0258313 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.63 vpr 62.49 MiB -1 -1 0.22 17952 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 1.76 708 14184 4108 7835 2241 62.5 MiB 0.11 0.00 3.90218 -115.978 -3.90218 3.90218 0.71 0.00057833 0.000538187 0.0488418 0.0454451 28 1736 21 6.87369e+06 265503 531479. 1839.03 2.10 0.197649 0.17148 24610 126494 -1 1548 18 1133 1639 120489 27801 3.16076 3.16076 -114.916 -3.16076 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0207101 0.0180267 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 62.86 MiB -1 -1 0.23 18232 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 310 266 1 175 81 17 17 289 -1 unnamed_device 24.3 MiB 1.93 963 14081 4182 8130 1769 62.9 MiB 0.13 0.00 3.97822 -122.829 -3.97822 3.97822 0.70 0.000628603 0.000583045 0.0525321 0.0487055 34 2188 24 6.87369e+06 237555 618332. 2139.56 1.40 0.176415 0.153853 25762 151098 -1 1967 18 1248 1705 141947 30974 3.3007 3.3007 -124.41 -3.3007 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0223471 0.0194054 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 9.08 vpr 63.10 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30508 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.2 MiB 1.49 880 19380 5710 10605 3065 63.1 MiB 0.16 0.00 4.54717 -125.702 -4.54717 4.54717 0.68 0.000668051 0.000612413 0.0562088 0.0519367 28 2476 25 6.87369e+06 544980 531479. 1839.03 4.81 0.222719 0.193515 24610 126494 -1 2103 21 1460 2605 205764 46881 4.4682 4.4682 -129.602 -4.4682 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0266325 0.0230917 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.99 vpr 62.49 MiB -1 -1 0.21 17944 1 0.03 -1 -1 30388 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.46 859 10916 2514 7778 624 62.5 MiB 0.10 0.00 4.61538 -122.043 -4.61538 4.61538 0.70 0.000564069 0.000524851 0.0375621 0.0349508 34 2080 22 6.87369e+06 265503 618332. 2139.56 2.77 0.207574 0.178687 25762 151098 -1 1752 23 1110 1432 97234 23995 3.57416 3.57416 -114.879 -3.57416 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0242386 0.020896 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.00 vpr 62.47 MiB -1 -1 0.22 18064 1 0.03 -1 -1 30040 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.8 MiB 3.36 890 13092 3761 8015 1316 62.5 MiB 0.11 0.00 3.89598 -125.954 -3.89598 3.89598 0.67 0.000605263 0.000563775 0.0479907 0.0446773 30 2147 21 6.87369e+06 209608 556674. 1926.21 2.86 0.188003 0.163408 25186 138497 -1 1826 22 1154 1910 142563 30699 2.86266 2.86266 -114.625 -2.86266 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0249425 0.0215988 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.22 vpr 63.17 MiB -1 -1 0.26 18192 1 0.03 -1 -1 30116 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 2.66 1030 11700 3258 7456 986 63.2 MiB 0.11 0.00 3.94428 -127.758 -3.94428 3.94428 0.68 0.000724386 0.000672941 0.0392103 0.0363534 28 2447 27 6.87369e+06 517032 531479. 1839.03 2.58 0.219635 0.19053 24610 126494 -1 2173 19 1608 2521 177586 41218 3.09026 3.09026 -122.565 -3.09026 0 0 648988. 2245.63 0.20 0.08 0.13 -1 -1 0.20 0.0271408 0.0236371 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.97 vpr 62.58 MiB -1 -1 0.23 18080 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 23.9 MiB 2.79 763 6616 1499 4719 398 62.6 MiB 0.06 0.00 3.6942 -114.024 -3.6942 3.6942 0.71 0.000433155 0.000398338 0.0212557 0.0196624 34 2136 24 6.87369e+06 237555 618332. 2139.56 1.35 0.134502 0.115828 25762 151098 -1 1636 20 1101 1571 107353 27112 3.19991 3.19991 -110.054 -3.19991 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022843 0.0198017 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.94 vpr 63.15 MiB -1 -1 0.19 18176 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 2.73 991 15431 4685 8411 2335 63.2 MiB 0.13 0.00 3.75634 -117.047 -3.75634 3.75634 0.71 0.000690882 0.000642314 0.0516048 0.047966 28 2561 28 6.87369e+06 433189 531479. 1839.03 1.33 0.140791 0.124221 24610 126494 -1 2292 23 1283 2119 183686 40418 3.15881 3.15881 -116.2 -3.15881 0 0 648988. 2245.63 0.18 0.08 0.13 -1 -1 0.18 0.0295352 0.0255474 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.82 vpr 63.21 MiB -1 -1 0.21 18272 1 0.03 -1 -1 30288 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 2.99 969 16511 5526 8195 2790 63.2 MiB 0.14 0.00 3.7606 -125.402 -3.7606 3.7606 0.68 0.000748381 0.000695233 0.0592408 0.0549725 30 2175 23 6.87369e+06 447163 556674. 1926.21 0.87 0.148511 0.131266 25186 138497 -1 1707 22 1533 2185 119272 29204 2.85691 2.85691 -118.154 -2.85691 0 0 706193. 2443.58 0.27 0.06 0.14 -1 -1 0.27 0.0258664 0.0225131 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.17 vpr 63.10 MiB -1 -1 0.20 17952 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.2 MiB 2.08 763 5412 1083 3998 331 63.1 MiB 0.06 0.00 3.46595 -107.951 -3.46595 3.46595 0.68 0.000623409 0.000580347 0.0214591 0.0199533 34 2023 20 6.87369e+06 223581 618332. 2139.56 1.33 0.13963 0.120267 25762 151098 -1 1758 19 1028 1626 127152 30410 3.12476 3.12476 -114.292 -3.12476 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0231757 0.0200857 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.14 vpr 62.79 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.2 MiB 1.94 878 7202 1691 5055 456 62.8 MiB 0.08 0.00 4.13079 -127.98 -4.13079 4.13079 0.68 0.000608897 0.000566757 0.0265478 0.0247082 34 2496 23 6.87369e+06 251529 618332. 2139.56 1.42 0.145907 0.126152 25762 151098 -1 2073 22 1468 2194 182182 42188 3.22191 3.22191 -125.177 -3.22191 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0255867 0.0221699 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.53 vpr 63.08 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30192 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.1 MiB 3.16 1100 9914 2382 6266 1266 63.1 MiB 0.10 0.00 4.82651 -140.217 -4.82651 4.82651 0.68 0.000657206 0.000611371 0.036452 0.0338882 34 2714 26 6.87369e+06 307425 618332. 2139.56 1.54 0.167465 0.145383 25762 151098 -1 2273 23 1641 2291 162066 37556 4.02506 4.02506 -136.33 -4.02506 0 0 787024. 2723.27 0.22 0.04 0.15 -1 -1 0.22 0.0157331 0.0138203 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.79 vpr 62.87 MiB -1 -1 0.20 18340 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.0 MiB 2.48 896 9336 2254 6420 662 62.9 MiB 0.09 0.00 4.11363 -114.181 -4.11363 4.11363 0.68 0.000651218 0.000606732 0.0321799 0.0299321 32 2343 29 6.87369e+06 405241 586450. 2029.24 2.50 0.229231 0.197118 25474 144626 -1 1909 23 1104 1920 137359 32910 3.23561 3.23561 -112.659 -3.23561 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0274895 0.0238243 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.06 vpr 63.28 MiB -1 -1 0.26 18208 1 0.03 -1 -1 30496 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.3 MiB 3.50 1101 15395 4526 8609 2260 63.3 MiB 0.16 0.00 5.22906 -166.389 -5.22906 5.22906 0.68 0.000755315 0.000702341 0.0643249 0.0597423 34 2846 21 6.87369e+06 307425 618332. 2139.56 1.61 0.207991 0.182101 25762 151098 -1 2432 21 1761 2709 230464 50254 4.17706 4.17706 -157.262 -4.17706 0 0 787024. 2723.27 0.21 0.09 0.16 -1 -1 0.21 0.030121 0.0261709 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.98 vpr 62.68 MiB -1 -1 0.22 17780 1 0.02 -1 -1 30060 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.1 MiB 1.07 761 7992 2192 5273 527 62.7 MiB 0.07 0.00 3.42155 -104.71 -3.42155 3.42155 0.68 0.000527832 0.000492182 0.0261445 0.0243233 28 1923 21 6.87369e+06 237555 531479. 1839.03 2.21 0.175979 0.151187 24610 126494 -1 1756 15 866 1350 103447 23875 3.05556 3.05556 -108.436 -3.05556 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0168032 0.0146386 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.25 vpr 63.30 MiB -1 -1 0.25 18196 1 0.03 -1 -1 30240 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1080 17883 4895 11214 1774 63.3 MiB 0.16 0.00 4.44135 -148.747 -4.44135 4.44135 0.68 0.000773656 0.000717189 0.0628337 0.0582391 34 2607 20 6.87369e+06 489084 618332. 2139.56 1.45 0.208375 0.182292 25762 151098 -1 2257 21 1628 2285 170577 39284 4.02096 4.02096 -147.829 -4.02096 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0304992 0.0264297 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.19 vpr 63.05 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30040 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.88 879 12808 3950 7474 1384 63.1 MiB 0.12 0.00 3.59615 -129.411 -3.59615 3.59615 0.68 0.00070828 0.000656942 0.0549948 0.0510585 34 2239 23 6.87369e+06 223581 618332. 2139.56 1.39 0.194014 0.169188 25762 151098 -1 1862 21 1602 2312 183384 40198 2.87886 2.87886 -123.177 -2.87886 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283847 0.0245994 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.83 vpr 63.20 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.3 MiB 2.65 1029 16083 4329 9310 2444 63.2 MiB 0.14 0.00 4.14663 -128.65 -4.14663 4.14663 0.71 0.000703662 0.000653243 0.0541845 0.0502824 32 2440 18 6.87369e+06 447163 586450. 2029.24 1.25 0.153462 0.13493 25474 144626 -1 2064 21 1193 1878 143364 33256 3.24961 3.24961 -117.981 -3.24961 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0243451 0.0213208 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.49 vpr 63.40 MiB -1 -1 0.24 18528 1 0.03 -1 -1 30492 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 4.31 1256 15335 4173 9820 1342 63.4 MiB 0.17 0.00 5.90839 -177.511 -5.90839 5.90839 0.70 0.000768307 0.000713306 0.0624686 0.0577041 34 3251 23 6.87369e+06 349346 618332. 2139.56 3.20 0.29183 0.253044 25762 151098 -1 2604 22 2027 3067 244222 57410 4.9762 4.9762 -169.067 -4.9762 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323605 0.0281827 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.47 vpr 62.36 MiB -1 -1 0.14 17972 1 0.03 -1 -1 30064 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.8 MiB 1.58 720 11161 3070 6702 1389 62.4 MiB 0.08 0.00 3.01346 -96.0966 -3.01346 3.01346 0.67 0.00049744 0.000463118 0.035693 0.0332146 34 1704 20 6.87369e+06 209608 618332. 2139.56 1.24 0.131918 0.114823 25762 151098 -1 1500 26 993 1332 109947 25100 2.57366 2.57366 -98.2805 -2.57366 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240196 0.0207071 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.76 vpr 62.45 MiB -1 -1 0.23 17936 1 0.03 -1 -1 30300 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.7 MiB 1.06 777 9706 2580 6483 643 62.5 MiB 0.09 0.00 3.91444 -121.772 -3.91444 3.91444 0.68 0.000598948 0.000557536 0.0350695 0.0325695 30 1783 33 6.87369e+06 265503 556674. 1926.21 0.85 0.115237 0.100737 25186 138497 -1 1503 20 912 1424 85348 19767 2.94916 2.94916 -112.049 -2.94916 0 0 706193. 2443.58 0.26 0.06 0.12 -1 -1 0.26 0.0231061 0.0200262 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.08 vpr 62.67 MiB -1 -1 0.22 18052 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.0 MiB 1.25 823 13719 4254 8151 1314 62.7 MiB 0.12 0.00 3.44891 -115.299 -3.44891 3.44891 0.67 0.00062491 0.000579923 0.0469355 0.0434427 32 2354 28 6.87369e+06 321398 586450. 2029.24 0.93 0.12523 0.110099 25474 144626 -1 1959 22 1404 2460 214166 49660 3.07456 3.07456 -119.964 -3.07456 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0257761 0.0222871 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.26 vpr 62.25 MiB -1 -1 0.21 18068 1 0.03 -1 -1 30240 -1 -1 29 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.7 MiB 0.76 469 11804 3249 6587 1968 62.2 MiB 0.08 0.00 3.45495 -79.1828 -3.45495 3.45495 0.68 0.000475847 0.000441709 0.0312348 0.0289079 30 1311 22 6.87369e+06 405241 556674. 1926.21 1.80 0.141557 0.121201 25186 138497 -1 979 19 618 1125 61942 15499 2.93926 2.93926 -76.5502 -2.93926 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0177172 0.015353 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.28 vpr 63.15 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 2.73 967 14724 4258 8138 2328 63.1 MiB 0.14 0.00 4.3826 -128.252 -4.3826 4.3826 0.68 0.000728381 0.00067686 0.0609742 0.0566685 34 2869 26 6.87369e+06 279477 618332. 2139.56 1.63 0.205681 0.179859 25762 151098 -1 2467 20 1544 2645 204924 48842 3.93806 3.93806 -132.192 -3.93806 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0278083 0.0241601 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.15 vpr 63.35 MiB -1 -1 0.22 18108 1 0.03 -1 -1 30284 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.4 MiB 2.73 1004 17347 4956 10888 1503 63.3 MiB 0.17 0.00 4.17399 -136.544 -4.17399 4.17399 0.68 0.000769371 0.000713735 0.0644426 0.0597195 34 2399 24 6.87369e+06 433189 618332. 2139.56 1.47 0.22127 0.193248 25762 151098 -1 2014 19 1684 2595 166650 40129 3.01531 3.01531 -120.867 -3.01531 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283922 0.0247102 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.49 vpr 63.03 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30060 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1064 11788 3543 6827 1418 63.0 MiB 0.12 0.00 5.46377 -156.517 -5.46377 5.46377 0.67 0.000700948 0.000651814 0.044689 0.0415076 34 2863 36 6.89349e+06 338252 618332. 2139.56 1.60 0.171952 0.149893 25762 151098 -1 2132 21 1793 2659 168525 41192 4.70325 4.70325 -148.177 -4.70325 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0274503 0.0240988 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.64 vpr 62.98 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30344 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 24.1 MiB 1.98 1124 13738 3850 8296 1592 63.0 MiB 0.14 0.00 4.83304 -147.244 -4.83304 4.83304 0.68 0.000710429 0.00066045 0.052054 0.0483623 34 2963 23 6.89349e+06 366440 618332. 2139.56 2.79 0.243585 0.211039 25762 151098 -1 2412 24 2103 3099 213515 50520 4.35719 4.35719 -147.275 -4.35719 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0313003 0.0271085 158 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.41 vpr 62.39 MiB -1 -1 0.24 17884 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.9 MiB 2.04 986 10315 2668 7087 560 62.4 MiB 0.10 0.00 4.28303 -120.803 -4.28303 4.28303 0.74 0.000625518 0.000582311 0.0366485 0.0340526 34 2543 23 6.89349e+06 295971 618332. 2139.56 1.50 0.159535 0.138481 25762 151098 -1 2116 19 1277 1735 126865 29234 3.6343 3.6343 -119.864 -3.6343 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0231766 0.020109 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.12 vpr 62.50 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30312 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1020 7153 1669 4959 525 62.5 MiB 0.08 0.00 4.81208 -129.448 -4.81208 4.81208 0.68 0.000629593 0.000584445 0.0260277 0.0241825 36 2388 20 6.89349e+06 338252 648988. 2245.63 2.79 0.218131 0.18688 26050 158493 -1 2075 18 1238 2046 156652 33509 3.6654 3.6654 -116.643 -3.6654 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0230202 0.0200177 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.48 vpr 63.20 MiB -1 -1 0.24 18316 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1107 14679 4819 7580 2280 63.2 MiB 0.14 0.00 5.27653 -151.244 -5.27653 5.27653 0.68 0.000683471 0.000634937 0.054302 0.0504273 38 2778 26 6.89349e+06 324158 678818. 2348.85 4.51 0.313245 0.270701 26626 170182 -1 2374 21 1936 3505 253868 55492 4.19779 4.19779 -144.222 -4.19779 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0273029 0.0237135 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 9.08 vpr 63.16 MiB -1 -1 0.20 18216 1 0.03 -1 -1 30236 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.2 MiB 2.46 1135 18523 5440 10042 3041 63.2 MiB 0.17 0.00 3.8789 -124.315 -3.8789 3.8789 0.68 0.000718763 0.00066721 0.0625587 0.0579835 36 2957 47 6.89349e+06 465097 648988. 2245.63 3.62 0.294096 0.254714 26050 158493 -1 2462 34 2089 3697 334723 100094 3.61635 3.61635 -126.916 -3.61635 0 0 828058. 2865.25 0.22 0.14 0.14 -1 -1 0.22 0.0424555 0.0365164 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.34 vpr 62.38 MiB -1 -1 0.20 17876 1 0.02 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 27 32 259 221 1 159 80 17 17 289 -1 unnamed_device 23.8 MiB 1.23 817 10228 2968 5692 1568 62.4 MiB 0.08 0.00 4.18543 -114.153 -4.18543 4.18543 0.68 0.000557515 0.000519437 0.0345069 0.0321018 34 1818 19 6.89349e+06 295971 618332. 2139.56 1.34 0.139454 0.120833 25762 151098 -1 1628 19 1216 1762 136661 30771 3.06791 3.06791 -104.44 -3.06791 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208683 0.0180953 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.14 vpr 62.36 MiB -1 -1 0.18 17708 1 0.03 -1 -1 30244 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.74 946 10895 2711 7214 970 62.4 MiB 0.09 0.00 3.35428 -101.445 -3.35428 3.35428 0.75 0.00061033 0.000562904 0.0315946 0.0293088 34 2155 20 6.89349e+06 451003 618332. 2139.56 2.55 0.22153 0.190315 25762 151098 -1 1873 16 929 1621 103965 24171 2.61751 2.61751 -96.334 -2.61751 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0191383 0.016651 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.23 vpr 62.66 MiB -1 -1 0.22 18332 1 0.02 -1 -1 30140 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 24.0 MiB 1.96 1055 11652 3009 7126 1517 62.7 MiB 0.12 0.00 3.67955 -123.605 -3.67955 3.67955 0.67 0.000635783 0.000591545 0.0435909 0.0405143 34 2608 23 6.89349e+06 267783 618332. 2139.56 1.37 0.141979 0.124114 25762 151098 -1 2206 19 1445 1973 164904 35471 2.98246 2.98246 -120.289 -2.98246 0 0 787024. 2723.27 0.22 0.07 0.16 -1 -1 0.22 0.0236838 0.0205713 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.80 vpr 62.59 MiB -1 -1 0.23 18060 1 0.03 -1 -1 30060 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 1.56 837 7202 1579 5230 393 62.6 MiB 0.08 0.00 4.04458 -129.952 -4.04458 4.04458 0.67 0.000622578 0.000579455 0.0270632 0.0251889 34 2391 27 6.89349e+06 253689 618332. 2139.56 1.41 0.149449 0.12909 25762 151098 -1 1910 20 1366 1796 129797 30654 3.2385 3.2385 -122.793 -3.2385 0 0 787024. 2723.27 0.23 0.08 0.13 -1 -1 0.23 0.0261919 0.0231063 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.35 vpr 62.88 MiB -1 -1 0.17 18240 1 0.03 -1 -1 30364 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 23.9 MiB 2.08 927 14123 4163 7804 2156 62.9 MiB 0.12 0.00 4.49997 -130.748 -4.49997 4.49997 0.68 0.000616293 0.000573001 0.0501201 0.0465669 34 2305 38 6.89349e+06 295971 618332. 2139.56 1.48 0.156817 0.13727 25762 151098 -1 1923 20 1284 1698 124692 28790 3.4872 3.4872 -123.184 -3.4872 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0238086 0.0206455 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.67 vpr 62.31 MiB -1 -1 0.18 17980 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.46 952 13206 3625 8328 1253 62.3 MiB 0.12 0.00 3.6917 -113.924 -3.6917 3.6917 0.71 0.000731693 0.00067887 0.0508404 0.047314 34 2324 21 6.89349e+06 239595 618332. 2139.56 1.48 0.163331 0.142729 25762 151098 -1 1923 19 1033 1405 106174 24328 2.93851 2.93851 -112.281 -2.93851 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219008 0.0190045 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.27 vpr 62.89 MiB -1 -1 0.23 18376 1 0.03 -1 -1 30328 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1112 16791 5058 9343 2390 62.9 MiB 0.16 0.00 4.10168 -134.349 -4.10168 4.10168 0.68 0.000691001 0.000642519 0.0628519 0.0584317 36 2698 22 6.89349e+06 324158 648988. 2245.63 3.46 0.249827 0.217352 26050 158493 -1 2404 21 1507 2341 203029 43277 3.18756 3.18756 -125.041 -3.18756 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275841 0.0239431 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.98 vpr 63.25 MiB -1 -1 0.20 18324 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.3 MiB 2.40 1080 16663 5045 8811 2807 63.2 MiB 0.16 0.00 5.63697 -160.415 -5.63697 5.63697 0.70 0.000705609 0.000651359 0.0627434 0.0582355 34 3263 37 6.89349e+06 338252 618332. 2139.56 1.69 0.18867 0.165623 25762 151098 -1 2346 21 1863 2593 189943 44204 4.44739 4.44739 -150.221 -4.44739 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0286455 0.0248791 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.44 vpr 62.55 MiB -1 -1 0.18 17924 1 0.03 -1 -1 30380 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.0 MiB 1.42 852 11909 3160 6915 1834 62.5 MiB 0.09 0.00 3.19582 -98.8741 -3.19582 3.19582 0.67 0.000539581 0.000502468 0.039886 0.0371267 34 1998 28 6.89349e+06 253689 618332. 2139.56 1.31 0.150561 0.130811 25762 151098 -1 1744 19 990 1363 98877 22900 2.88911 2.88911 -99.3738 -2.88911 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.020186 0.0174834 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.42 vpr 63.06 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.2 MiB 2.62 1298 15493 4676 9050 1767 63.1 MiB 0.15 0.00 4.1661 -138.014 -4.1661 4.1661 0.70 0.000722605 0.000671266 0.0602376 0.0559801 34 3382 50 6.89349e+06 338252 618332. 2139.56 1.89 0.230834 0.2009 25762 151098 -1 2818 21 2116 3346 245686 55521 3.72535 3.72535 -140.74 -3.72535 0 0 787024. 2723.27 0.22 0.09 0.14 -1 -1 0.22 0.0290734 0.0252862 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.76 vpr 62.80 MiB -1 -1 0.25 18216 1 0.03 -1 -1 30096 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1059 14450 4622 7260 2568 62.8 MiB 0.13 0.00 4.13204 -133.409 -4.13204 4.13204 0.69 0.000681738 0.000632868 0.0543446 0.0504722 34 2659 50 6.89349e+06 310065 618332. 2139.56 1.91 0.217044 0.188758 25762 151098 -1 2275 19 1487 2177 187547 40425 3.10146 3.10146 -121.303 -3.10146 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0272505 0.0238081 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.91 vpr 62.95 MiB -1 -1 0.20 18152 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.1 MiB 2.27 1220 14965 4341 8910 1714 62.9 MiB 0.14 0.00 3.67155 -130.035 -3.67155 3.67155 0.68 0.000653994 0.000608431 0.0540854 0.0502053 34 2727 43 6.89349e+06 295971 618332. 2139.56 1.71 0.201817 0.175775 25762 151098 -1 2283 21 1426 1856 144371 32637 2.81996 2.81996 -120.618 -2.81996 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260416 0.0225771 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.79 vpr 62.08 MiB -1 -1 0.17 18044 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.3 MiB 1.36 773 8390 2474 4676 1240 62.1 MiB 0.08 0.00 2.65863 -91.3953 -2.65863 2.65863 0.71 0.000501933 0.00046746 0.0323928 0.0300414 30 1654 19 6.89349e+06 211408 556674. 1926.21 1.71 0.128438 0.111296 25186 138497 -1 1419 17 650 748 54641 12715 2.06407 2.06407 -89.984 -2.06407 0 0 706193. 2443.58 0.19 0.04 0.14 -1 -1 0.19 0.016971 0.0147677 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.83 vpr 62.37 MiB -1 -1 0.12 18292 1 0.03 -1 -1 30280 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.7 MiB 2.49 980 13254 3823 7828 1603 62.4 MiB 0.12 0.00 4.85214 -146.508 -4.85214 4.85214 0.68 0.000609402 0.000567375 0.0468354 0.0435593 34 2311 44 6.89349e+06 267783 618332. 2139.56 1.65 0.149064 0.130504 25762 151098 -1 2002 19 1214 1946 154611 34571 3.434 3.434 -128.976 -3.434 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0228054 0.0197992 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.99 vpr 62.92 MiB -1 -1 0.17 18380 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1134 18323 5038 11357 1928 62.9 MiB 0.16 0.00 4.77763 -150.944 -4.77763 4.77763 0.68 0.000749038 0.000689339 0.0582688 0.0541068 34 2697 21 6.89349e+06 479191 618332. 2139.56 1.52 0.19101 0.1672 25762 151098 -1 2339 24 1570 2408 208449 46358 3.91014 3.91014 -143.319 -3.91014 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0307158 0.0266676 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.40 vpr 63.16 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1226 16023 5263 8066 2694 63.2 MiB 0.15 0.00 4.5284 -136.451 -4.5284 4.5284 0.67 0.000551913 0.000505938 0.0617808 0.0572799 36 2809 22 6.89349e+06 324158 648988. 2245.63 3.67 0.262304 0.227769 26050 158493 -1 2359 21 1619 2528 181970 39402 3.8927 3.8927 -135.308 -3.8927 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0292507 0.0254405 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.44 vpr 62.09 MiB -1 -1 0.21 17960 1 0.02 -1 -1 30644 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 23.5 MiB 1.24 418 9996 4130 4980 886 62.1 MiB 0.07 0.00 2.70371 -73.8386 -2.70371 2.70371 0.75 0.00042811 0.000397695 0.0277146 0.0256876 34 1435 48 6.89349e+06 253689 618332. 2139.56 1.37 0.11371 0.0986784 25762 151098 -1 992 15 616 732 54609 13861 2.01835 2.01835 -68.0094 -2.01835 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.013553 0.0118176 75 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.49 vpr 62.41 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.09 1067 12375 3267 7751 1357 62.4 MiB 0.12 0.00 4.54727 -128.116 -4.54727 4.54727 0.68 0.000615163 0.000572356 0.041655 0.0387203 34 2366 30 6.89349e+06 324158 618332. 2139.56 1.59 0.168974 0.146926 25762 151098 -1 2096 19 1286 2385 179552 39922 3.6391 3.6391 -122.053 -3.6391 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0226701 0.0196808 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.33 vpr 61.96 MiB -1 -1 0.20 17444 1 0.02 -1 -1 29932 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.3 MiB 0.50 403 9836 3145 4361 2330 62.0 MiB 0.07 0.00 2.34152 -71.3945 -2.34152 2.34152 0.68 0.000507688 0.000471829 0.0278647 0.0258026 32 1221 23 6.89349e+06 169126 586450. 2029.24 1.15 0.0939301 0.0819733 25474 144626 -1 935 22 680 881 63446 17592 2.01306 2.01306 -72.7771 -2.01306 0 0 744469. 2576.02 0.21 0.05 0.13 -1 -1 0.21 0.0199442 0.0172881 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.95 vpr 62.45 MiB -1 -1 0.21 17884 1 0.03 -1 -1 30012 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.7 MiB 1.62 984 14175 4702 7220 2253 62.4 MiB 0.13 0.00 4.89708 -136.259 -4.89708 4.89708 0.68 0.000633104 0.000588508 0.0509934 0.0474266 34 2464 24 6.89349e+06 281877 618332. 2139.56 1.45 0.174902 0.152671 25762 151098 -1 1959 18 1130 1661 120876 27312 3.76256 3.76256 -122.693 -3.76256 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0228572 0.0199043 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 6.25 vpr 62.55 MiB -1 -1 0.16 17780 1 0.04 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.9 MiB 0.77 988 16079 4364 9917 1798 62.5 MiB 0.15 0.00 3.39295 -107.482 -3.39295 3.39295 0.68 0.000631697 0.000586032 0.0489328 0.0453866 28 2520 24 6.89349e+06 436909 531479. 1839.03 2.72 0.198849 0.172906 24610 126494 -1 2310 22 1455 2525 183042 43297 2.94641 2.94641 -112.319 -2.94641 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0263421 0.0228177 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.71 vpr 63.25 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1111 15639 4885 7776 2978 63.3 MiB 0.15 0.00 4.89143 -136.037 -4.89143 4.89143 0.68 0.000678027 0.000629555 0.0573649 0.0533216 38 2557 22 6.89349e+06 324158 678818. 2348.85 3.48 0.243355 0.211189 26626 170182 -1 2201 21 1376 2078 155445 32828 3.67726 3.67726 -123.649 -3.67726 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0271453 0.0235824 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.28 vpr 62.55 MiB -1 -1 0.21 18096 1 0.03 -1 -1 30228 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.8 MiB 2.09 990 13381 4491 7116 1774 62.6 MiB 0.12 0.00 3.64535 -123.731 -3.64535 3.64535 0.68 0.000605037 0.000562914 0.0479057 0.0445699 34 2272 22 6.89349e+06 239595 618332. 2139.56 1.41 0.165404 0.144136 25762 151098 -1 1932 21 1182 1772 132877 30221 3.01066 3.01066 -119.775 -3.01066 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240615 0.0208376 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.45 vpr 62.35 MiB -1 -1 0.22 17956 1 0.03 -1 -1 30140 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.8 MiB 1.71 909 12754 4731 6611 1412 62.3 MiB 0.11 0.00 4.01762 -117.054 -4.01762 4.01762 0.68 0.000564602 0.000525133 0.0444365 0.0413298 34 2214 31 6.89349e+06 239595 618332. 2139.56 1.89 0.163972 0.142817 25762 151098 -1 1810 31 1254 2280 302828 126933 3.3027 3.3027 -110.07 -3.3027 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0310817 0.0267393 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.45 vpr 62.25 MiB -1 -1 0.23 17948 1 0.03 -1 -1 30264 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.7 MiB 1.79 829 10744 2823 7309 612 62.2 MiB 0.09 0.00 4.27226 -119.167 -4.27226 4.27226 0.69 0.000560271 0.000521936 0.0365333 0.0340184 34 2243 35 6.89349e+06 281877 618332. 2139.56 1.89 0.147802 0.12824 25762 151098 -1 1746 16 1011 1667 124248 27774 3.45175 3.45175 -114.697 -3.45175 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0181403 0.0157563 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 8.44 vpr 62.38 MiB -1 -1 0.17 17776 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 1.27 714 11106 3926 4953 2227 62.4 MiB 0.10 0.00 3.82748 -115.489 -3.82748 3.82748 0.68 0.000565218 0.000526284 0.0375549 0.0349464 30 2318 26 6.89349e+06 239595 556674. 1926.21 4.47 0.19943 0.172161 25186 138497 -1 1775 21 1230 2035 152867 35481 3.02446 3.02446 -116.652 -3.02446 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0226439 0.0195866 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.04 vpr 62.48 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30208 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.67 960 14081 4470 7746 1865 62.5 MiB 0.12 0.00 3.58045 -113.742 -3.58045 3.58045 0.68 0.000585011 0.000545042 0.0488242 0.0454684 34 2228 27 6.89349e+06 253689 618332. 2139.56 1.53 0.166762 0.145473 25762 151098 -1 1952 22 1147 1743 143098 31691 2.80601 2.80601 -107.332 -2.80601 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0240254 0.0207667 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 8.42 vpr 62.42 MiB -1 -1 0.20 18048 1 0.03 -1 -1 30544 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 24.0 MiB 2.37 955 13763 4007 8316 1440 62.4 MiB 0.12 0.00 3.50915 -107.043 -3.50915 3.50915 0.72 0.000591962 0.000550009 0.0472016 0.0438427 36 2068 25 6.89349e+06 310065 648988. 2245.63 3.24 0.211772 0.183067 26050 158493 -1 1863 22 1037 1440 101893 22703 2.57556 2.57556 -101.163 -2.57556 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0255165 0.0221493 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.42 vpr 63.06 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1344 6623 1379 4726 518 63.1 MiB 0.08 0.00 4.57545 -133.188 -4.57545 4.57545 0.68 0.000732458 0.000679884 0.0265834 0.0247109 36 2931 18 6.89349e+06 352346 648988. 2245.63 2.10 0.167681 0.145233 26050 158493 -1 2509 19 1364 2352 169188 37207 3.89416 3.89416 -129.763 -3.89416 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271702 0.0236731 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 9.08 vpr 63.20 MiB -1 -1 0.25 18332 1 0.03 -1 -1 30204 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1314 15103 4520 8282 2301 63.2 MiB 0.15 0.00 4.62597 -154.671 -4.62597 4.62597 0.67 0.000750008 0.000696475 0.0606448 0.0563162 38 2891 23 6.89349e+06 338252 678818. 2348.85 3.81 0.293115 0.253875 26626 170182 -1 2554 24 2212 3209 243302 52794 3.76655 3.76655 -142.691 -3.76655 0 0 902133. 3121.57 0.23 0.10 0.16 -1 -1 0.23 0.0332743 0.0288308 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.18 vpr 62.26 MiB -1 -1 0.23 18168 1 0.03 -1 -1 30108 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.7 MiB 1.67 891 12681 4633 6140 1908 62.3 MiB 0.11 0.00 4.00748 -121.286 -4.00748 4.00748 0.73 0.000596253 0.000554269 0.044775 0.0416583 34 2241 20 6.89349e+06 253689 618332. 2139.56 1.61 0.15832 0.137925 25762 151098 -1 1909 20 958 1482 148975 31008 3.08205 3.08205 -114.277 -3.08205 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0227721 0.0197303 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.27 vpr 63.16 MiB -1 -1 0.25 18256 1 0.03 -1 -1 30396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1219 12958 3345 8411 1202 63.2 MiB 0.13 0.00 4.38103 -136.881 -4.38103 4.38103 0.68 0.000713808 0.000661923 0.0497197 0.0461472 34 3233 38 6.89349e+06 352346 618332. 2139.56 1.82 0.207209 0.179896 25762 151098 -1 2633 17 1526 2281 168204 37222 3.963 3.963 -135.949 -3.963 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280102 0.024469 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.93 vpr 63.21 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30260 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.64 1259 16858 6134 8135 2589 63.2 MiB 0.17 0.00 5.51507 -165.9 -5.51507 5.51507 0.68 0.000725395 0.000673981 0.0650918 0.0604636 34 3658 48 6.89349e+06 352346 618332. 2139.56 2.28 0.229225 0.199983 25762 151098 -1 2837 19 1954 2862 268934 54976 4.90688 4.90688 -164.555 -4.90688 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0234363 0.0206451 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.12 vpr 63.21 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30440 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.3 MiB 2.72 1190 15688 5780 7361 2547 63.2 MiB 0.16 0.00 5.54088 -167.719 -5.54088 5.54088 0.68 0.000734386 0.000681619 0.0611678 0.0567721 36 2845 29 6.89349e+06 352346 648988. 2245.63 3.49 0.286157 0.247754 26050 158493 -1 2560 21 1818 2649 192963 43117 4.66028 4.66028 -159.451 -4.66028 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0296369 0.0257912 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.12 MiB -1 -1 0.21 18252 1 0.04 -1 -1 30380 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1192 10071 2510 6717 844 63.1 MiB 0.11 0.00 4.12652 -128.326 -4.12652 4.12652 0.69 0.000649418 0.00060208 0.0387345 0.0359498 34 3003 29 6.89349e+06 338252 618332. 2139.56 1.53 0.152768 0.133075 25762 151098 -1 2411 19 1685 2497 182458 40756 3.06536 3.06536 -118.85 -3.06536 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259266 0.0225637 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.85 vpr 62.36 MiB -1 -1 0.18 18000 1 0.03 -1 -1 30272 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1042 13992 4713 7020 2259 62.4 MiB 0.12 0.00 4.55135 -122.838 -4.55135 4.55135 0.68 0.000613868 0.000570758 0.0488231 0.0454177 36 2449 22 6.89349e+06 281877 648988. 2245.63 3.44 0.21916 0.18986 26050 158493 -1 2067 17 1068 1504 111942 24821 3.83 3.83 -120.094 -3.83 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0211019 0.0183784 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.93 vpr 63.35 MiB -1 -1 0.21 18396 1 0.03 -1 -1 30356 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.5 MiB 2.78 1364 18239 5649 8664 3926 63.3 MiB 0.19 0.00 5.39684 -169.798 -5.39684 5.39684 0.68 0.00086251 0.000802413 0.0755015 0.0701178 38 3436 29 6.89349e+06 436909 678818. 2348.85 4.13 0.34774 0.301296 26626 170182 -1 2763 22 2303 3425 225653 53510 4.45139 4.45139 -158.876 -4.45139 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.036251 0.0314897 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.16 vpr 62.52 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30152 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 1.96 847 14606 5701 6811 2094 62.5 MiB 0.12 0.00 3.7437 -110.885 -3.7437 3.7437 0.68 0.000565259 0.000525414 0.0488786 0.0454299 34 2267 24 6.89349e+06 253689 618332. 2139.56 1.37 0.160294 0.13974 25762 151098 -1 1904 18 1147 1538 109956 25270 3.04966 3.04966 -107.803 -3.04966 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0235335 0.020571 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.35 vpr 63.06 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30136 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1157 11993 3200 7722 1071 63.1 MiB 0.12 0.00 4.79572 -144.196 -4.79572 4.79572 0.68 0.00068494 0.000637252 0.0451303 0.0419244 30 2885 23 6.89349e+06 324158 556674. 1926.21 0.93 0.127296 0.112214 25186 138497 -1 2325 20 1370 2211 156865 34337 3.9931 3.9931 -137.075 -3.9931 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0261842 0.0227687 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.15 vpr 62.93 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30236 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.0 MiB 2.38 1255 9111 2360 6068 683 62.9 MiB 0.10 0.00 4.32959 -133.247 -4.32959 4.32959 0.72 0.000699444 0.000649619 0.0346275 0.03215 34 3300 43 6.89349e+06 324158 618332. 2139.56 1.81 0.19002 0.164221 25762 151098 -1 2606 22 1582 2655 192368 43364 3.5174 3.5174 -127.286 -3.5174 0 0 787024. 2723.27 0.21 0.08 0.10 -1 -1 0.21 0.0289087 0.0250544 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.35 vpr 62.50 MiB -1 -1 0.20 17680 1 0.03 -1 -1 30004 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.8 MiB 0.87 980 8934 2029 6214 691 62.5 MiB 0.09 0.00 4.26729 -129.015 -4.26729 4.26729 0.70 0.000638873 0.000594436 0.0298312 0.0277303 32 2710 19 6.89349e+06 366440 586450. 2029.24 2.64 0.181822 0.157018 25474 144626 -1 2224 21 1333 2551 219755 47788 3.5072 3.5072 -124.725 -3.5072 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0248425 0.0214912 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.09 vpr 63.06 MiB -1 -1 0.25 18420 1 0.03 -1 -1 30464 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1059 12951 4043 6051 2857 63.1 MiB 0.15 0.00 4.45401 -129.14 -4.45401 4.45401 0.68 0.000820725 0.000755051 0.0536426 0.0496478 36 2779 21 6.89349e+06 324158 648988. 2245.63 2.21 0.189248 0.165094 26050 158493 -1 2152 20 1610 2295 178017 39817 3.10276 3.10276 -115.251 -3.10276 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.028703 0.0254789 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.38 vpr 63.01 MiB -1 -1 0.24 18236 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.1 MiB 2.50 1253 16468 4636 10263 1569 63.0 MiB 0.15 0.00 4.19329 -135.481 -4.19329 4.19329 0.68 0.000712295 0.00066122 0.0621044 0.057614 36 3187 25 6.89349e+06 338252 648988. 2245.63 1.98 0.196369 0.171498 26050 158493 -1 2602 20 1650 2573 193342 42638 3.59435 3.59435 -129.638 -3.59435 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0275182 0.0239212 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.17 vpr 63.14 MiB -1 -1 0.25 18392 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 382 305 1 243 89 17 17 289 -1 unnamed_device 24.2 MiB 2.36 1372 15929 5275 8784 1870 63.1 MiB 0.18 0.00 4.08378 -136.371 -4.08378 4.08378 0.68 0.000580891 0.000533851 0.0582564 0.0538942 34 3362 24 6.89349e+06 352346 618332. 2139.56 1.83 0.204431 0.178222 25762 151098 -1 2766 19 1860 2580 210207 46305 3.09876 3.09876 -128.874 -3.09876 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0281805 0.0246046 162 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.15 vpr 62.55 MiB -1 -1 0.22 18368 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 1.57 1045 14593 4202 8807 1584 62.6 MiB 0.13 0.00 4.52205 -134.216 -4.52205 4.52205 0.71 0.000638346 0.000593628 0.0521411 0.0484786 34 2490 46 6.89349e+06 295971 618332. 2139.56 1.67 0.200604 0.174821 25762 151098 -1 2130 21 1363 2223 147926 34667 3.74036 3.74036 -127.635 -3.74036 0 0 787024. 2723.27 0.24 0.07 0.15 -1 -1 0.24 0.0262391 0.0228307 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.33 vpr 62.81 MiB -1 -1 0.21 18344 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.93 987 13883 3666 8021 2196 62.8 MiB 0.13 0.00 4.84598 -138.838 -4.84598 4.84598 0.68 0.000652181 0.000606766 0.0502547 0.0467309 34 2558 31 6.89349e+06 310065 618332. 2139.56 1.47 0.186785 0.162651 25762 151098 -1 2181 19 1428 2105 149429 34251 3.7003 3.7003 -129.472 -3.7003 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0243279 0.0211554 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.60 vpr 63.18 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30420 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 373 299 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 2.16 1211 14828 4402 8079 2347 63.2 MiB 0.15 0.00 4.74072 -143.031 -4.74072 4.74072 0.68 0.000720572 0.000669856 0.0587761 0.0545739 36 3108 20 6.89349e+06 324158 648988. 2245.63 3.50 0.258406 0.223992 26050 158493 -1 2499 22 1859 2953 201173 44890 3.8508 3.8508 -134.377 -3.8508 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.030632 0.0266387 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.15 vpr 63.41 MiB -1 -1 0.26 18216 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1258 10979 3006 7476 497 63.4 MiB 0.12 0.00 4.38808 -134.784 -4.38808 4.38808 0.68 0.000735755 0.000683128 0.0432488 0.0401098 34 3563 33 6.89349e+06 352346 618332. 2139.56 3.56 0.282841 0.243426 25762 151098 -1 2828 18 1981 2913 201286 46276 3.89396 3.89396 -136.54 -3.89396 0 0 787024. 2723.27 0.22 0.06 0.14 -1 -1 0.22 0.0233739 0.0205403 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.91 vpr 62.27 MiB -1 -1 0.22 18124 1 0.03 -1 -1 30512 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.32 732 6839 1674 4948 217 62.3 MiB 0.07 0.00 3.52919 -107.237 -3.52919 3.52919 0.69 0.000537311 0.000497782 0.024177 0.0224721 30 2067 32 6.89349e+06 211408 556674. 1926.21 2.86 0.16305 0.140161 25186 138497 -1 1612 19 901 1393 89815 21726 2.59451 2.59451 -100.794 -2.59451 0 0 706193. 2443.58 0.19 0.05 0.08 -1 -1 0.19 0.020611 0.0178854 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.99 vpr 63.03 MiB -1 -1 0.24 18092 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.1 MiB 1.64 1174 13260 4046 7113 2101 63.0 MiB 0.13 0.00 4.29355 -148.609 -4.29355 4.29355 0.67 0.000670162 0.000623326 0.0505395 0.0469619 36 2755 25 6.89349e+06 281877 648988. 2245.63 3.41 0.236418 0.204825 26050 158493 -1 2310 19 1602 2184 177150 37060 3.48465 3.48465 -140.596 -3.48465 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0248545 0.0215813 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.36 vpr 63.11 MiB -1 -1 0.18 18416 1 0.03 -1 -1 30296 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1358 17711 6857 9017 1837 63.1 MiB 0.19 0.00 5.47492 -162.011 -5.47492 5.47492 0.68 0.000763814 0.000709031 0.0707719 0.0657043 36 3307 24 6.89349e+06 352346 648988. 2245.63 3.54 0.301061 0.261431 26050 158493 -1 2710 21 1821 2824 198903 44515 4.51965 4.51965 -153.16 -4.51965 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0304579 0.0264908 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.73 vpr 63.00 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.2 MiB 2.02 1178 13694 4056 7919 1719 63.0 MiB 0.14 0.00 4.47216 -142.443 -4.47216 4.47216 0.68 0.000684126 0.000635414 0.0520104 0.0483357 34 2809 24 6.89349e+06 310065 618332. 2139.56 1.79 0.162562 0.14262 25762 151098 -1 2332 18 1519 2197 170175 37027 3.02241 3.02241 -123.52 -3.02241 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0245036 0.021335 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.74 vpr 62.57 MiB -1 -1 0.23 18084 1 0.03 -1 -1 30336 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.45 951 12563 3271 8399 893 62.6 MiB 0.11 0.00 4.13238 -126.06 -4.13238 4.13238 0.68 0.000588611 0.000547406 0.0393814 0.036535 34 2327 25 6.89349e+06 380534 618332. 2139.56 1.42 0.156734 0.135762 25762 151098 -1 2025 22 1297 2018 167340 37083 3.77555 3.77555 -130.14 -3.77555 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0246053 0.0212908 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 9.70 vpr 63.22 MiB -1 -1 0.26 18412 1 0.03 -1 -1 30336 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.2 MiB 3.24 1567 13555 4048 7346 2161 63.2 MiB 0.16 0.00 6.44359 -187.4 -6.44359 6.44359 0.68 0.000824925 0.000766822 0.057727 0.0536022 36 3996 24 6.89349e+06 380534 648988. 2245.63 3.35 0.229504 0.200317 26050 158493 -1 3297 22 2374 3728 349639 71806 5.33889 5.33889 -177.809 -5.33889 0 0 828058. 2865.25 0.22 0.12 0.14 -1 -1 0.22 0.034248 0.0297209 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.85 vpr 62.86 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30548 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1067 14035 3934 8096 2005 62.9 MiB 0.13 0.00 4.72832 -145.11 -4.72832 4.72832 0.67 0.000684339 0.000636541 0.0538183 0.0500717 34 2595 24 6.89349e+06 295971 618332. 2139.56 1.52 0.192845 0.168887 25762 151098 -1 2235 22 1787 2518 195167 43859 3.9007 3.9007 -137.409 -3.9007 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0285362 0.0247791 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.92 vpr 62.34 MiB -1 -1 0.22 17748 1 0.02 -1 -1 30456 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.67 695 14713 4314 8460 1939 62.3 MiB 0.12 0.00 3.6346 -100.535 -3.6346 3.6346 0.72 0.000533681 0.000497103 0.0457832 0.0424758 28 1921 19 6.89349e+06 338252 531479. 1839.03 2.49 0.186986 0.161801 24610 126494 -1 1691 22 1132 2010 173636 39630 2.82941 2.82941 -100.021 -2.82941 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0220061 0.0189868 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.71 vpr 62.94 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30136 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.0 MiB 1.92 1217 14679 5443 7869 1367 62.9 MiB 0.15 0.00 5.41897 -143.636 -5.41897 5.41897 0.69 0.000702053 0.000651353 0.0558585 0.0518406 34 3127 23 6.89349e+06 324158 618332. 2139.56 1.89 0.165319 0.145314 25762 151098 -1 2493 23 1492 2833 239730 50744 4.52875 4.52875 -141.093 -4.52875 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0303435 0.0263084 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.18 vpr 62.27 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30080 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.90 843 14303 4411 8253 1639 62.3 MiB 0.11 0.00 3.54325 -111.744 -3.54325 3.54325 0.69 0.000563977 0.000524428 0.0457911 0.0425501 34 2087 30 6.89349e+06 267783 618332. 2139.56 1.49 0.160965 0.140319 25762 151098 -1 1778 19 1107 1988 160160 33986 2.69866 2.69866 -106.27 -2.69866 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0204975 0.0177587 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.13 vpr 62.55 MiB -1 -1 0.24 18004 1 0.03 -1 -1 30376 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.9 MiB 1.40 773 9160 2547 5968 645 62.5 MiB 0.09 0.00 4.07968 -116.565 -4.07968 4.07968 0.82 0.00047108 0.000434854 0.0252048 0.0231701 36 2054 21 6.89349e+06 281877 648988. 2245.63 1.80 0.1392 0.119851 26050 158493 -1 1793 19 1139 1633 120373 28155 3.23906 3.23906 -112.268 -3.23906 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0218469 0.0189473 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.78 vpr 62.89 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30296 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 23.9 MiB 3.06 1139 8919 2183 6102 634 62.9 MiB 0.10 0.00 4.48897 -131.496 -4.48897 4.48897 0.69 0.000688926 0.000640412 0.0340907 0.0316632 34 3051 27 6.89349e+06 366440 618332. 2139.56 1.84 0.178061 0.153818 25762 151098 -1 2534 20 1630 2380 194289 42924 3.74455 3.74455 -127.937 -3.74455 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0266561 0.0231533 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.71 vpr 63.02 MiB -1 -1 0.24 18160 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.2 MiB 2.22 1122 9158 2488 6122 548 63.0 MiB 0.10 0.00 4.88804 -152.378 -4.88804 4.88804 0.68 0.000713617 0.000655436 0.0372018 0.0344225 36 3060 23 6.89349e+06 310065 648988. 2245.63 3.53 0.234516 0.201796 26050 158493 -1 2572 21 1939 2826 207505 46566 4.20505 4.20505 -147.248 -4.20505 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0282949 0.0246008 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.89 vpr 63.23 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.3 MiB 1.97 1252 12951 3653 7742 1556 63.2 MiB 0.15 0.00 5.47602 -157.843 -5.47602 5.47602 0.77 0.000702719 0.000653522 0.0566845 0.0526397 36 3028 40 6.89349e+06 324158 648988. 2245.63 1.88 0.213571 0.186251 26050 158493 -1 2626 23 1726 2584 195995 43414 4.44939 4.44939 -152.134 -4.44939 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0300566 0.026074 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.24 vpr 62.34 MiB -1 -1 0.23 18100 1 0.03 -1 -1 30072 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.7 MiB 1.67 881 10726 3077 6717 932 62.3 MiB 0.10 0.00 4.53843 -126.576 -4.53843 4.53843 0.68 0.000591756 0.000550915 0.0394419 0.0367284 34 2186 24 6.89349e+06 211408 618332. 2139.56 2.78 0.20737 0.179025 25762 151098 -1 1901 14 900 1276 93884 21447 3.19321 3.19321 -115.532 -3.19321 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0174521 0.0152694 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.51 vpr 62.87 MiB -1 -1 0.24 18148 1 0.03 -1 -1 30444 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1053 14483 4664 7716 2103 62.9 MiB 0.13 0.00 3.74261 -124.975 -3.74261 3.74261 0.68 0.000635653 0.000591189 0.0528967 0.0491263 36 2563 23 6.89349e+06 281877 648988. 2245.63 1.81 0.155402 0.136284 26050 158493 -1 2164 22 1485 2076 149242 33231 3.09511 3.09511 -121.194 -3.09511 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0270726 0.0234689 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.43 vpr 62.77 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 23.9 MiB 2.04 1173 16273 5377 8794 2102 62.8 MiB 0.15 0.00 3.817 -113.195 -3.817 3.817 0.68 0.000651254 0.000604879 0.0565428 0.0524856 34 2618 31 6.89349e+06 366440 618332. 2139.56 1.50 0.16599 0.145502 25762 151098 -1 2167 19 1424 2168 148471 34334 3.03691 3.03691 -109.432 -3.03691 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0247654 0.0215489 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.60 vpr 62.45 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30524 -1 -1 23 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.27 909 14123 3958 8851 1314 62.4 MiB 0.12 0.00 4.4511 -113.819 -4.4511 4.4511 0.67 0.000466434 0.000428603 0.0476618 0.0443241 34 2337 28 6.89349e+06 324158 618332. 2139.56 1.50 0.162636 0.141612 25762 151098 -1 1901 21 1023 1801 147034 33072 3.68256 3.68256 -111.515 -3.68256 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0234144 0.020225 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.14 vpr 62.43 MiB -1 -1 0.16 18384 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 23.9 MiB 1.88 979 14663 6207 7722 734 62.4 MiB 0.13 0.00 4.62158 -135.813 -4.62158 4.62158 0.67 0.00064396 0.000598312 0.0539029 0.0500773 36 2485 25 6.89349e+06 295971 648988. 2245.63 3.46 0.232779 0.201587 26050 158493 -1 2130 21 1831 2535 203191 44657 3.68864 3.68864 -131.093 -3.68864 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0254535 0.0220585 131 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.35 vpr 63.04 MiB -1 -1 0.24 18140 1 0.03 -1 -1 30304 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.1 MiB 1.69 1197 9966 2574 6122 1270 63.0 MiB 0.10 0.00 4.03794 -140.884 -4.03794 4.03794 0.68 0.000666655 0.000619238 0.0383891 0.0356724 34 2973 29 6.89349e+06 281877 618332. 2139.56 1.81 0.153971 0.133933 25762 151098 -1 2572 20 1685 2314 206518 44032 3.1324 3.1324 -129.633 -3.1324 0 0 787024. 2723.27 0.21 0.08 0.16 -1 -1 0.21 0.0257458 0.0223676 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.66 vpr 62.44 MiB -1 -1 0.23 17524 1 0.03 -1 -1 30320 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.8 MiB 0.81 933 8827 1959 6407 461 62.4 MiB 0.09 0.00 4.68742 -132.125 -4.68742 4.68742 0.68 0.000647852 0.0006034 0.0287044 0.0266218 30 2469 28 6.89349e+06 436909 556674. 1926.21 1.03 0.113236 0.0987556 25186 138497 -1 1985 21 973 1855 124155 27575 3.7575 3.7575 -123.081 -3.7575 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0258281 0.0225127 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.70 vpr 63.12 MiB -1 -1 0.24 18108 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 2.04 993 15063 4441 7937 2685 63.1 MiB 0.15 0.00 4.79682 -147.448 -4.79682 4.79682 0.68 0.00067811 0.000626997 0.0577457 0.0536543 34 3341 42 6.89349e+06 324158 618332. 2139.56 2.60 0.203813 0.178452 25762 151098 -1 2507 20 1793 2731 251308 57180 3.9366 3.9366 -137.622 -3.9366 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0280953 0.0243904 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.88 vpr 63.18 MiB -1 -1 0.25 18208 1 0.03 -1 -1 30280 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 385 308 1 244 90 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1227 14562 3938 8589 2035 63.2 MiB 0.15 0.00 5.38159 -164.838 -5.38159 5.38159 0.73 0.000746778 0.000694098 0.0567133 0.0527023 36 3243 27 6.89349e+06 366440 648988. 2245.63 3.67 0.269728 0.234607 26050 158493 -1 2568 22 2110 2989 235894 51836 4.67469 4.67469 -163.039 -4.67469 0 0 828058. 2865.25 0.24 0.07 0.15 -1 -1 0.24 0.0226463 0.0197547 163 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.67 vpr 63.19 MiB -1 -1 0.20 18204 1 0.03 -1 -1 30320 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.2 MiB 2.07 1249 15366 4699 7930 2737 63.2 MiB 0.16 0.00 4.52977 -146.574 -4.52977 4.52977 0.68 0.000768098 0.000714055 0.0597117 0.0554454 38 3101 27 6.89349e+06 366440 678818. 2348.85 3.65 0.281103 0.243655 26626 170182 -1 2575 23 1733 2651 221947 45896 3.99995 3.99995 -142.366 -3.99995 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0320862 0.0278723 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.45 vpr 62.51 MiB -1 -1 0.19 17964 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.9 MiB 1.97 905 12323 3823 7116 1384 62.5 MiB 0.12 0.00 4.24433 -127.173 -4.24433 4.24433 0.68 0.000609576 0.000566346 0.0437906 0.0406898 34 2274 35 6.89349e+06 295971 618332. 2139.56 1.66 0.1688 0.146539 25762 151098 -1 1900 18 1130 1599 128112 27804 3.10946 3.10946 -111.538 -3.10946 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208135 0.0180779 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.41 vpr 63.06 MiB -1 -1 0.22 18132 1 0.03 -1 -1 30372 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 24.1 MiB 2.85 1252 13143 3283 8520 1340 63.1 MiB 0.14 0.00 5.23091 -159.91 -5.23091 5.23091 0.68 0.000725079 0.000673819 0.0521396 0.0484364 34 3195 38 6.89349e+06 352346 618332. 2139.56 1.66 0.209046 0.182099 25762 151098 -1 2683 19 1969 2727 216393 49027 4.70289 4.70289 -164.912 -4.70289 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0268991 0.0234204 161 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.70 vpr 62.95 MiB -1 -1 0.17 18204 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.1 MiB 1.15 1135 15255 4537 8764 1954 63.0 MiB 0.15 0.00 5.17695 -153.732 -5.17695 5.17695 0.68 0.000693742 0.000645377 0.0578766 0.0538123 34 2919 21 6.89349e+06 324158 618332. 2139.56 1.62 0.192767 0.168741 25762 151098 -1 2433 22 1711 2956 258805 55965 4.1143 4.1143 -143.928 -4.1143 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.028325 0.0245556 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.63 vpr 63.09 MiB -1 -1 0.24 18312 1 0.03 -1 -1 30216 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.2 MiB 2.18 1193 13505 4546 7143 1816 63.1 MiB 0.14 0.00 5.02824 -144.831 -5.02824 5.02824 0.71 0.00069036 0.000641068 0.0525096 0.0488141 36 2814 25 6.89349e+06 324158 648988. 2245.63 1.56 0.157897 0.138522 26050 158493 -1 2418 20 1423 2236 198439 41166 4.31415 4.31415 -140.912 -4.31415 0 0 828058. 2865.25 0.22 0.08 0.10 -1 -1 0.22 0.0263508 0.0228884 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.60 vpr 63.10 MiB -1 -1 0.19 18320 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1197 15103 4411 8230 2462 63.1 MiB 0.15 0.00 4.851 -140.164 -4.851 4.851 0.68 0.000719371 0.000668375 0.0580069 0.0538626 36 2863 21 6.89349e+06 366440 648988. 2245.63 2.04 0.202959 0.177377 26050 158493 -1 2495 20 1595 2287 181696 38931 3.88729 3.88729 -134.431 -3.88729 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0277246 0.0240826 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.36 vpr 62.91 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.0 MiB 2.51 1204 16599 6004 7939 2656 62.9 MiB 0.17 0.00 5.44287 -158.373 -5.44287 5.44287 0.68 0.00071785 0.000666572 0.064359 0.0597539 34 3283 32 6.89349e+06 324158 618332. 2139.56 1.94 0.214044 0.187206 25762 151098 -1 2597 23 1963 2925 216361 49453 4.61969 4.61969 -154.947 -4.61969 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0306821 0.0266176 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.98 vpr 63.17 MiB -1 -1 0.26 18196 1 0.03 -1 -1 30304 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1306 12535 3228 8012 1295 63.2 MiB 0.12 0.00 4.60117 -137.507 -4.60117 4.60117 0.67 0.000711608 0.000660821 0.0460842 0.0427905 36 2897 26 6.89349e+06 422815 648988. 2245.63 1.79 0.188848 0.16409 26050 158493 -1 2382 22 1487 2016 135818 31245 3.54206 3.54206 -127.169 -3.54206 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0297229 0.0257588 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.62 vpr 62.16 MiB -1 -1 0.21 17764 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.6 MiB 1.08 733 12331 3194 7563 1574 62.2 MiB 0.10 0.00 4.02268 -117.682 -4.02268 4.02268 0.68 0.000553956 0.000516118 0.0406898 0.0378723 34 1915 37 6.89349e+06 239595 618332. 2139.56 2.74 0.209324 0.180742 25762 151098 -1 1583 17 919 1489 101979 24094 2.86616 2.86616 -105.485 -2.86616 0 0 787024. 2723.27 0.22 0.05 0.15 -1 -1 0.22 0.018417 0.0161591 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.02 vpr 63.13 MiB -1 -1 0.24 18080 1 0.03 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1366 14741 4940 7308 2493 63.1 MiB 0.14 0.00 5.7749 -170.888 -5.7749 5.7749 0.67 0.000724666 0.000672068 0.0564156 0.0523254 38 2766 20 6.89349e+06 352346 678818. 2348.85 2.07 0.196831 0.172375 26626 170182 -1 2489 21 1542 2193 169330 36565 4.41358 4.41358 -149.332 -4.41358 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0293593 0.0255638 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.27 vpr 63.31 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.3 MiB 2.82 1405 14543 3790 8651 2102 63.3 MiB 0.15 0.00 5.38563 -174.831 -5.38563 5.38563 0.68 0.000589778 0.000540273 0.0569682 0.0527492 36 3143 23 6.89349e+06 352346 648988. 2245.63 3.59 0.267477 0.231869 26050 158493 -1 2788 23 2224 3211 255670 54788 4.79045 4.79045 -171.521 -4.79045 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0332501 0.0289401 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.17 vpr 62.36 MiB -1 -1 0.22 17856 1 0.03 -1 -1 30356 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.8 MiB 2.10 852 8626 2126 6029 471 62.4 MiB 0.08 0.00 4.14342 -115.954 -4.14342 4.14342 0.68 0.000578217 0.000538435 0.0300715 0.0279852 34 2167 20 6.89349e+06 253689 618332. 2139.56 1.32 0.140381 0.121565 25762 151098 -1 1869 21 1272 1680 114108 27008 3.08576 3.08576 -107.616 -3.08576 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0232508 0.0201319 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.75 vpr 62.30 MiB -1 -1 0.17 17872 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.7 MiB 0.93 843 11783 3233 6725 1825 62.3 MiB 0.10 0.00 3.90644 -115.807 -3.90644 3.90644 0.62 0.000551823 0.00051362 0.0382537 0.0356391 26 2165 23 6.89349e+06 281877 503264. 1741.40 2.10 0.160227 0.138939 24322 120374 -1 1999 20 1253 2044 176217 38787 2.84601 2.84601 -111.426 -2.84601 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.021057 0.0182075 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.23 vpr 63.01 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1150 8727 2018 5615 1094 63.0 MiB 0.10 0.00 4.64652 -149.201 -4.64652 4.64652 0.77 0.000703572 0.000653539 0.0343992 0.0319982 36 2852 22 6.89349e+06 324158 648988. 2245.63 3.32 0.228654 0.197115 26050 158493 -1 2401 21 1728 2486 197683 41996 3.7788 3.7788 -141.038 -3.7788 0 0 828058. 2865.25 0.29 0.05 0.14 -1 -1 0.29 0.015374 0.0135936 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.74 vpr 63.05 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1167 15639 4762 8859 2018 63.0 MiB 0.15 0.00 4.99039 -145.722 -4.99039 4.99039 0.69 0.00070699 0.000656391 0.0601118 0.055841 36 2585 21 6.89349e+06 324158 648988. 2245.63 1.77 0.196287 0.171915 26050 158493 -1 2196 19 1312 1916 134550 31443 4.22525 4.22525 -139.154 -4.22525 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0259131 0.022542 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.62 vpr 62.98 MiB -1 -1 0.21 18044 1 0.03 -1 -1 30232 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.63 1179 13092 3559 8453 1080 63.0 MiB 0.14 0.00 5.17121 -146.734 -5.17121 5.17121 0.67 0.000724033 0.000673575 0.043706 0.0404953 30 2906 22 6.89349e+06 507378 556674. 1926.21 1.13 0.128477 0.113126 25186 138497 -1 2340 25 1609 3088 192920 45460 4.11249 4.11249 -141.088 -4.11249 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0330255 0.0286262 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.98 vpr 62.79 MiB -1 -1 0.24 18224 1 0.03 -1 -1 30356 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1065 7191 1699 5079 413 62.8 MiB 0.08 0.00 3.88834 -114.437 -3.88834 3.88834 0.68 0.000621353 0.000575627 0.0260267 0.0242019 34 2645 26 6.89349e+06 352346 618332. 2139.56 1.68 0.152243 0.13158 25762 151098 -1 2237 20 1738 2562 187968 42121 2.95776 2.95776 -105.775 -2.95776 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0247213 0.0214314 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.60 vpr 62.34 MiB -1 -1 0.19 17952 1 0.02 -1 -1 30436 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.7 MiB 1.49 671 12416 5195 5941 1280 62.3 MiB 0.09 0.00 4.39223 -112.843 -4.39223 4.39223 0.68 0.000544952 0.00050697 0.041701 0.0388089 38 1671 32 6.89349e+06 281877 678818. 2348.85 3.37 0.198927 0.171543 26626 170182 -1 1407 17 1024 1491 107563 26317 3.6986 3.6986 -109.598 -3.6986 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0187226 0.0161985 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.57 vpr 63.44 MiB -1 -1 0.27 18668 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.6 MiB 3.51 1558 16615 4500 10327 1788 63.4 MiB 0.18 0.00 4.61521 -148.623 -4.61521 4.61521 0.69 0.000806058 0.000748595 0.0687869 0.0638458 36 3673 23 6.89349e+06 380534 648988. 2245.63 3.05 0.233238 0.20437 26050 158493 -1 3191 24 2272 3571 278292 59853 4.16294 4.16294 -150.154 -4.16294 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0359058 0.031144 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.34 vpr 63.10 MiB -1 -1 0.26 18228 1 0.03 -1 -1 30292 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1047 15639 5809 6811 3019 63.1 MiB 0.15 0.00 5.48492 -159.854 -5.48492 5.48492 0.68 0.000638086 0.000586154 0.05956 0.0552828 36 3015 30 6.89349e+06 338252 648988. 2245.63 2.35 0.207634 0.18124 26050 158493 -1 2282 21 1981 2827 183364 45738 4.50245 4.50245 -153.354 -4.50245 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0284792 0.0247485 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.78 vpr 62.78 MiB -1 -1 0.23 18220 1 0.03 -1 -1 30396 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 331 280 1 221 84 17 17 289 -1 unnamed_device 24.0 MiB 2.35 998 16737 6124 7825 2788 62.8 MiB 0.15 0.00 4.30139 -136.522 -4.30139 4.30139 0.68 0.000657095 0.000610133 0.0625288 0.0581267 36 2611 25 6.89349e+06 281877 648988. 2245.63 3.51 0.246328 0.213896 26050 158493 -1 2181 19 1550 2018 174734 37539 3.6675 3.6675 -136.623 -3.6675 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0244123 0.0212339 136 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.53 vpr 62.78 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30356 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 24.0 MiB 2.10 1090 9571 2534 6373 664 62.8 MiB 0.10 0.00 5.23032 -144.251 -5.23032 5.23032 0.68 0.000672451 0.000625545 0.0366806 0.0341122 30 2676 38 6.89349e+06 295971 556674. 1926.21 2.67 0.206907 0.178958 25186 138497 -1 2130 21 1071 1615 102090 23111 3.50786 3.50786 -126.051 -3.50786 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0266376 0.0231422 134 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.27 vpr 63.05 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30512 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1202 13751 3835 8049 1867 63.0 MiB 0.14 0.00 4.46995 -129.311 -4.46995 4.46995 0.72 0.000733751 0.000681657 0.0532819 0.0494446 34 3036 19 6.89349e+06 366440 618332. 2139.56 1.41 0.183002 0.159883 25762 151098 -1 2515 20 1830 2785 182795 43219 3.97726 3.97726 -130.915 -3.97726 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283912 0.0246721 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.60 vpr 62.85 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30264 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.0 MiB 2.22 1079 13505 3291 8862 1352 62.9 MiB 0.12 0.00 4.22645 -118.107 -4.22645 4.22645 0.68 0.000658376 0.000611311 0.0490903 0.0456641 36 2650 30 6.89349e+06 338252 648988. 2245.63 3.43 0.239116 0.206749 26050 158493 -1 2237 22 1376 2100 160748 37276 3.5733 3.5733 -114.748 -3.5733 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0271366 0.0235148 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.30 vpr 62.90 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 2.60 1201 14828 4491 8253 2084 62.9 MiB 0.15 0.00 4.92758 -154.781 -4.92758 4.92758 0.68 0.000711 0.000660463 0.0577055 0.0535713 36 2974 20 6.89349e+06 310065 648988. 2245.63 2.76 0.197585 0.173761 26050 158493 -1 2570 23 1760 2903 286164 58396 3.9208 3.9208 -138.75 -3.9208 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0298533 0.0259172 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.19 vpr 63.28 MiB -1 -1 0.24 18436 1 0.03 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1278 15969 5302 7451 3216 63.3 MiB 0.15 0.00 4.11194 -136.871 -4.11194 4.11194 0.69 0.000754931 0.000693029 0.0623208 0.0572571 34 3529 33 6.89349e+06 366440 618332. 2139.56 1.86 0.219574 0.191002 25762 151098 -1 2607 21 1935 2630 187376 44216 3.44175 3.44175 -130.508 -3.44175 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.029924 0.025999 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.31 vpr 62.44 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.25 628 7956 1799 5721 436 62.4 MiB 0.08 0.00 4.24503 -122.739 -4.24503 4.24503 0.68 0.000577792 0.000537405 0.0279715 0.0260318 34 1772 23 6.89349e+06 281877 618332. 2139.56 1.33 0.140267 0.121316 25762 151098 -1 1416 20 1270 1714 104194 26944 3.11671 3.11671 -110.381 -3.11671 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.022399 0.0193707 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.45 vpr 62.34 MiB -1 -1 0.23 18324 1 0.03 -1 -1 30484 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 310 266 1 198 83 17 17 289 -1 unnamed_device 23.9 MiB 1.72 1048 12863 3756 7750 1357 62.3 MiB 0.12 0.00 4.21989 -132.438 -4.21989 4.21989 0.68 0.00063304 0.000587992 0.0471189 0.0438255 34 2769 27 6.89349e+06 267783 618332. 2139.56 1.80 0.156939 0.13715 25762 151098 -1 2297 22 1779 2470 220677 46955 3.55295 3.55295 -130.18 -3.55295 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0260268 0.0224859 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.17 vpr 62.89 MiB -1 -1 0.17 18468 1 0.02 -1 -1 30368 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 1.55 1137 13477 4102 7180 2195 62.9 MiB 0.13 0.00 4.87863 -139.519 -4.87863 4.87863 0.69 0.000662513 0.000616046 0.050165 0.0466426 34 2786 29 6.89349e+06 310065 618332. 2139.56 1.80 0.186528 0.162588 25762 151098 -1 2336 20 1569 2472 202216 45007 3.8758 3.8758 -132.732 -3.8758 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0258052 0.0224146 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.75 vpr 62.16 MiB -1 -1 0.24 17940 1 0.03 -1 -1 30464 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 2.15 741 7132 1582 5226 324 62.2 MiB 0.07 0.00 4.21347 -110.205 -4.21347 4.21347 0.68 0.000560647 0.00052249 0.025201 0.0234548 36 1970 26 6.89349e+06 267783 648988. 2245.63 2.79 0.195558 0.167558 26050 158493 -1 1708 21 1033 1418 102366 24026 2.9515 2.9515 -101.659 -2.9515 0 0 828058. 2865.25 0.28 0.03 0.16 -1 -1 0.28 0.0123082 0.0108121 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.47 vpr 62.51 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30068 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.89 990 11652 3107 7306 1239 62.5 MiB 0.10 0.00 4.18333 -131.846 -4.18333 4.18333 0.75 0.000594153 0.000552461 0.0404096 0.0375923 34 2497 36 6.89349e+06 253689 618332. 2139.56 1.77 0.168554 0.146456 25762 151098 -1 2108 20 1418 1990 164645 35637 3.33911 3.33911 -125.551 -3.33911 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0229957 0.0199521 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.73 vpr 63.17 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30536 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 237 90 17 17 289 -1 unnamed_device 24.3 MiB 2.02 1223 15366 4453 8707 2206 63.2 MiB 0.15 0.00 4.62897 -148.141 -4.62897 4.62897 0.68 0.00072715 0.000675673 0.0578551 0.0537528 34 3088 26 6.89349e+06 380534 618332. 2139.56 1.75 0.203785 0.178024 25762 151098 -1 2624 21 2025 2784 225288 48923 3.81065 3.81065 -141.55 -3.81065 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290103 0.0252398 161 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.11 vpr 62.41 MiB -1 -1 0.23 17980 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.76 784 6616 1386 4941 289 62.4 MiB 0.07 0.00 3.61555 -111.527 -3.61555 3.61555 0.68 0.000566529 0.000526025 0.0235755 0.0218991 34 2257 32 6.89349e+06 239595 618332. 2139.56 1.48 0.143365 0.123283 25762 151098 -1 1840 21 1118 1559 126902 29314 2.80111 2.80111 -102.063 -2.80111 0 0 787024. 2723.27 0.21 0.06 0.15 -1 -1 0.21 0.0228764 0.0197898 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.79 vpr 63.03 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30024 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.1 MiB 2.19 1232 13883 4397 7250 2236 63.0 MiB 0.14 0.00 4.30445 -129.833 -4.30445 4.30445 0.70 0.000700537 0.000651543 0.0537901 0.049988 34 3088 24 6.89349e+06 310065 618332. 2139.56 1.63 0.190284 0.165962 25762 151098 -1 2505 20 1424 2090 159741 35454 3.49095 3.49095 -126.618 -3.49095 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0269363 0.0234426 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 9.62 vpr 63.19 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.2 MiB 2.68 1374 16127 5335 8292 2500 63.2 MiB 0.18 0.00 4.99104 -161.962 -4.99104 4.99104 0.69 0.000741467 0.000686837 0.0633813 0.0587501 38 3351 24 6.89349e+06 366440 678818. 2348.85 3.84 0.28385 0.24585 26626 170182 -1 2835 21 2331 3297 257631 54905 4.08179 4.08179 -152.863 -4.08179 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0298115 0.0258956 167 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.52 vpr 62.81 MiB -1 -1 0.22 18072 1 0.03 -1 -1 30428 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.3 MiB 2.06 1102 7736 1887 5035 814 62.8 MiB 0.08 0.00 3.7859 -118.769 -3.7859 3.7859 0.68 0.000614564 0.000570725 0.0286054 0.0265436 34 2661 27 6.89349e+06 253689 618332. 2139.56 1.63 0.155954 0.13468 25762 151098 -1 2286 22 1581 2190 195646 40939 2.91016 2.91016 -116.403 -2.91016 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259191 0.0224239 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.49 vpr 62.33 MiB -1 -1 0.18 17996 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.7 MiB 1.23 923 8804 2372 6054 378 62.3 MiB 0.09 0.00 4.24743 -129.394 -4.24743 4.24743 0.67 0.000609847 0.000568096 0.0320525 0.029848 36 2225 43 6.89349e+06 253689 648988. 2245.63 3.52 0.205791 0.176888 26050 158493 -1 2047 20 1283 1926 179909 39070 3.36506 3.36506 -124.98 -3.36506 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0234506 0.0203181 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.02 vpr 62.72 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1050 14828 5325 7370 2133 62.7 MiB 0.13 0.00 4.90028 -137.564 -4.90028 4.90028 0.68 0.000651992 0.000605445 0.0532771 0.0494738 34 2608 24 6.89349e+06 310065 618332. 2139.56 1.33 0.155164 0.136463 25762 151098 -1 2257 21 1429 2017 147852 33854 3.75346 3.75346 -131.737 -3.75346 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262297 0.0227133 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.69 vpr 62.80 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30136 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 29 32 324 268 1 208 86 17 17 289 -1 unnamed_device 24.0 MiB 1.74 1098 14450 3824 8602 2024 62.8 MiB 0.13 0.00 4.06068 -112.703 -4.06068 4.06068 0.68 0.000647374 0.000602478 0.051651 0.0480239 34 2543 49 6.89349e+06 352346 618332. 2139.56 3.04 0.262186 0.226343 25762 151098 -1 2152 21 1448 2024 148243 34376 3.09046 3.09046 -106.337 -3.09046 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0281719 0.024626 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.10 vpr 63.07 MiB -1 -1 0.25 18148 1 0.03 -1 -1 30468 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.1 MiB 2.28 1257 16078 5484 8239 2355 63.1 MiB 0.17 0.00 5.66698 -180.512 -5.66698 5.66698 0.68 0.000897301 0.000832849 0.0649034 0.0601992 36 3202 36 6.89349e+06 338252 648988. 2245.63 3.80 0.295677 0.257113 26050 158493 -1 2847 20 1924 2947 238685 50612 4.68858 4.68858 -165.045 -4.68858 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.029094 0.0253055 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.93 vpr 62.16 MiB -1 -1 0.21 17748 1 0.02 -1 -1 30080 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.4 MiB 0.89 761 9024 2389 5969 666 62.2 MiB 0.08 0.00 3.2803 -102.743 -3.2803 3.2803 0.68 0.00052452 0.000488502 0.0289354 0.0268863 34 1907 21 6.89349e+06 239595 618332. 2139.56 1.29 0.130715 0.113182 25762 151098 -1 1608 21 825 1331 100637 22807 2.57631 2.57631 -99.2132 -2.57631 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0212871 0.0184344 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.39 vpr 63.25 MiB -1 -1 0.25 18160 1 0.03 -1 -1 30436 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.2 MiB 2.15 1326 14167 4936 7169 2062 63.2 MiB 0.15 0.00 5.79178 -174.585 -5.79178 5.79178 0.68 0.000770477 0.000715325 0.0550857 0.0510449 36 3412 40 6.89349e+06 380534 648988. 2245.63 4.18 0.304204 0.262974 26050 158493 -1 2668 21 1984 2651 224780 54704 5.17574 5.17574 -170.058 -5.17574 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0307083 0.026676 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.15 vpr 63.05 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30116 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.1 MiB 2.22 1345 11415 2751 7803 861 63.0 MiB 0.13 0.00 4.85389 -165.92 -4.85389 4.85389 0.69 0.00071239 0.000660895 0.0446841 0.0414797 34 3780 38 6.89349e+06 324158 618332. 2139.56 1.94 0.176264 0.15349 25762 151098 -1 2839 26 2609 3334 278222 60452 4.42139 4.42139 -167.968 -4.42139 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.029096 0.0252435 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.93 vpr 63.24 MiB -1 -1 0.22 18208 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 1.75 1062 14450 5050 7036 2364 63.2 MiB 0.14 0.00 4.10168 -125.093 -4.10168 4.10168 0.68 0.000712834 0.00066242 0.0566274 0.0525791 34 3126 46 6.89349e+06 310065 618332. 2139.56 2.20 0.222841 0.194036 25762 151098 -1 2289 17 1616 2256 167937 39501 3.36511 3.36511 -119.664 -3.36511 0 0 787024. 2723.27 0.27 0.07 0.13 -1 -1 0.27 0.0244671 0.0214104 153 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.39 vpr 63.09 MiB -1 -1 0.14 18136 1 0.03 -1 -1 30308 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.1 MiB 2.79 1315 16170 4894 8590 2686 63.1 MiB 0.17 0.00 5.8116 -176.256 -5.8116 5.8116 0.68 0.000774473 0.000719958 0.0648762 0.0603058 36 3148 23 6.89349e+06 366440 648988. 2245.63 3.61 0.284896 0.247853 26050 158493 -1 2680 22 1899 3048 266739 54735 4.49735 4.49735 -158.676 -4.49735 0 0 828058. 2865.25 0.26 0.10 0.14 -1 -1 0.26 0.0321548 0.0279577 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.13 vpr 62.09 MiB -1 -1 0.21 17924 1 0.02 -1 -1 30112 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.4 MiB 0.97 714 5293 1259 3713 321 62.1 MiB 0.05 0.00 3.04786 -95.0532 -3.04786 3.04786 0.67 0.000495728 0.000461193 0.0176004 0.016379 34 1618 20 6.89349e+06 211408 618332. 2139.56 2.46 0.15145 0.129575 25762 151098 -1 1440 18 680 907 66003 15107 2.32142 2.32142 -94.0544 -2.32142 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0175721 0.0152768 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.76 vpr 62.35 MiB -1 -1 0.23 18028 1 0.03 -1 -1 30420 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.6 MiB 1.54 918 13610 4688 7323 1599 62.4 MiB 0.12 0.00 4.49503 -139.908 -4.49503 4.49503 0.68 0.000595123 0.000552782 0.0474131 0.043945 34 2210 22 6.89349e+06 281877 618332. 2139.56 1.37 0.163806 0.14245 25762 151098 -1 1798 23 1240 1867 138538 31230 3.6393 3.6393 -124.669 -3.6393 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0258738 0.0223296 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.46 vpr 62.48 MiB -1 -1 0.22 17948 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 23.8 MiB 2.09 1110 8804 2328 5458 1018 62.5 MiB 0.09 0.00 4.17499 -140.03 -4.17499 4.17499 0.68 0.000620942 0.000576844 0.0326284 0.030306 38 2415 31 6.89349e+06 253689 678818. 2348.85 3.46 0.213381 0.183513 26626 170182 -1 2258 20 1273 2270 159500 34665 3.3385 3.3385 -133.564 -3.3385 0 0 902133. 3121.57 0.27 0.07 0.15 -1 -1 0.27 0.023924 0.0207296 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 7.28 vpr 62.19 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30208 -1 -1 21 25 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.6 MiB 1.19 575 11200 4680 5492 1028 62.2 MiB 0.08 0.00 3.6605 -87.6445 -3.6605 3.6605 0.68 0.000481311 0.000447832 0.0340727 0.0317166 36 1473 28 6.89349e+06 295971 648988. 2245.63 3.32 0.177516 0.152714 26050 158493 -1 1215 19 713 1069 96004 27609 2.77716 2.77716 -80.0425 -2.77716 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0178479 0.0154546 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.34 vpr 63.17 MiB -1 -1 0.24 18132 1 0.03 -1 -1 30256 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.2 MiB 2.96 1353 10455 2851 6962 642 63.2 MiB 0.12 0.00 4.36555 -133.994 -4.36555 4.36555 0.68 0.00072886 0.000677376 0.0419133 0.0389053 36 3449 28 6.89349e+06 324158 648988. 2245.63 2.43 0.195608 0.169542 26050 158493 -1 2903 21 1960 2918 219685 47503 3.70946 3.70946 -133.463 -3.70946 0 0 828058. 2865.25 0.23 0.09 0.16 -1 -1 0.23 0.0290001 0.0251742 160 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.78 vpr 63.15 MiB -1 -1 0.22 18220 1 0.03 -1 -1 30220 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.1 MiB 2.55 1246 10442 2641 6824 977 63.2 MiB 0.12 0.00 4.77028 -152.681 -4.77028 4.77028 0.68 0.000762137 0.000707491 0.0409291 0.0379395 34 3563 24 6.89349e+06 408721 618332. 2139.56 2.26 0.194275 0.168593 25762 151098 -1 2750 22 2202 3046 245515 54377 4.20389 4.20389 -150.8 -4.20389 0 0 787024. 2723.27 0.21 0.10 0.15 -1 -1 0.21 0.031945 0.0277223 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt index 88295e998b9..bfc1398e91c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 11.93 vpr 65.76 MiB -1 -1 0.78 21736 3 0.47 -1 -1 36920 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67340 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.14 538 74923 23743 38186 12994 65.8 MiB 0.44 0.00 1.85836 -118.859 -1.85836 1.85836 0.84 0.000408519 0.000364671 0.184671 0.181849 48 1120 12 5.66058e+06 4.21279e+06 394078. 2736.65 2.57 0.568796 0.558488 13382 75762 -1 1135 9 413 643 29837 9031 1.90517 1.90517 -131.612 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.23 0.30 0.20 -1 -1 0.23 0.291907 0.29099 0.01054 0.2563 0.08194 0.6618 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 27.94 vpr 68.73 MiB -1 -1 1.81 26840 15 1.79 -1 -1 38032 -1 -1 41 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70380 162 96 1009 950 1 703 304 16 16 256 mult_36 auto 30.6 MiB 0.50 5227 78921 22014 50546 6361 68.7 MiB 0.94 0.01 21.1088 -1572.42 -21.1088 21.1088 1.81 0.0013239 0.00120799 0.360424 0.349771 46 11694 25 1.21132e+07 4.18965e+06 727248. 2840.81 9.09 1.89864 1.86775 24972 144857 -1 9825 16 3189 6463 1052158 265115 22.5834 22.5834 -1743.32 -22.5834 0 0 934704. 3651.19 0.66 0.81 0.69 -1 -1 0.66 0.191856 0.186748 0.007573 0.3608 0.01692 0.6223 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 971.39 vpr 417.21 MiB -1 -1 136.56 351828 123 163.84 -1 -1 82460 -1 -1 1358 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 427224 114 102 21994 21904 1 11874 1627 50 50 2500 memory auto 194.6 MiB 40.69 156844 1044212 377727 645941 20544 417.2 MiB 50.77 0.52 78.9156 -53096.5 -78.9156 78.9156 55.59 0.0726829 0.0689205 7.9984 7.08451 90 237837 41 1.47946e+08 1.01019e+08 1.49211e+07 5968.42 321.09 28.7799 25.2504 333772 3118116 -1 214457 20 45318 170990 10540927 1886623 78.9114 78.9114 -67440.7 -78.9114 -14.3667 -0.295467 1.86646e+07 7465.86 17.49 10.34 5.27 -1 -1 17.49 4.79057 4.32098 0.08049 0.4194 0.01155 0.5691 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 14.90 vpr 65.43 MiB -1 -1 1.16 21432 3 0.22 -1 -1 37072 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66996 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.26 629 72933 24501 35348 13084 65.4 MiB 0.72 0.00 1.87772 -119.549 -1.87772 1.87772 1.14 0.000479167 0.00042192 0.212818 0.209003 44 1500 15 5.66058e+06 4.21279e+06 360780. 2505.42 5.58 1.12644 1.10872 13094 71552 -1 1272 11 403 626 28515 8379 1.88524 1.88524 -136.944 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.41 0.04 0.19 -1 -1 0.41 0.0274683 0.0265622 0.01202 0.2318 0.0696 0.6986 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 40.08 vpr 69.02 MiB -1 -1 1.40 26524 15 1.73 -1 -1 38204 -1 -1 40 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70672 162 96 1009 950 1 703 303 16 16 256 mult_36 auto 30.8 MiB 1.35 5429 85731 25421 52883 7427 69.0 MiB 1.27 0.01 20.9899 -1533.86 -20.9899 20.9899 2.08 0.00121353 0.00108507 0.507519 0.481322 50 12052 37 1.21132e+07 4.13576e+06 780512. 3048.87 19.61 2.10484 1.8922 25484 153448 -1 10094 17 3136 6091 944877 237338 22.9092 22.9092 -1705.45 -22.9092 0 0 1.00276e+06 3917.05 0.78 0.57 0.44 -1 -1 0.78 0.125277 0.122118 0.007901 0.3567 0.01597 0.6273 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 920.00 vpr 427.51 MiB -1 -1 139.70 351276 123 168.15 -1 -1 82008 -1 -1 1278 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437768 114 102 21994 21904 1 11394 1547 50 50 2500 memory auto 193.8 MiB 84.56 155462 967391 346358 602799 18234 427.5 MiB 46.41 0.37 79.1658 -49689.3 -79.1658 79.1658 56.74 0.103633 0.0992122 8.06245 6.91846 96 240817 38 1.47946e+08 9.67069e+07 1.58254e+07 6330.17 228.24 30.7597 26.6251 343768 3324272 -1 213621 20 46955 176640 11088774 1958407 81.0653 81.0653 -60662.6 -81.0653 -20.9911 -0.197508 1.97871e+07 7914.84 17.55 10.21 6.24 -1 -1 17.55 4.84567 4.57718 0.08295 0.4232 0.01129 0.5655 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.43 MiB -1 -1 1.16 21736 3 0.65 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67000 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.53 538 74923 23743 38186 12994 65.4 MiB 1.07 0.00 1.85836 -118.859 -1.85836 1.85836 1.33 0.000186152 0.000164307 0.172613 0.16947 44 1225 10 5.66058e+06 4.21279e+06 377431. 2621.05 5.28 0.585898 0.568378 13584 76382 -1 1026 7 371 587 21190 6589 1.9572 1.9572 -129.175 -1.9572 -1.32765 -0.320482 492119. 3417.49 0.49 0.04 0.36 -1 -1 0.49 0.238059 0.0128334 0.01016 0.2377 0.08 0.6823 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 58.79 vpr 68.94 MiB -1 -1 1.73 26836 15 1.23 -1 -1 38508 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70596 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 3.88 5395 81543 23350 50681 7512 68.9 MiB 1.53 0.00 20.8098 -1508.89 -20.8098 20.8098 1.91 0.000558472 0.000495563 0.368414 0.35917 56 12401 28 1.21132e+07 3.97408e+06 911589. 3560.89 34.45 2.04765 2.00047 27484 183688 -1 9683 17 3070 6168 1098441 282892 22.0044 22.0044 -1619.24 -22.0044 0 0 1.16227e+06 4540.11 1.03 0.87 0.39 -1 -1 1.03 0.312795 0.305315 0.008246 0.3685 0.01686 0.6146 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1573.89 vpr 455.68 MiB -1 -1 141.95 352652 123 167.28 -1 -1 82160 -1 -1 1291 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 466612 114 102 21994 21904 1 12048 1560 50 50 2500 memory auto 192.1 MiB 646.85 163983 969268 328314 619639 21315 455.7 MiB 44.23 0.44 79.6079 -54089.1 -79.6079 79.6079 55.73 0.115444 0.110958 6.94791 5.93632 100 236092 23 1.47946e+08 9.74075e+07 1.70584e+07 6823.36 367.16 19.4598 16.8584 363360 3730996 -1 215771 19 40895 156451 9739432 1761939 80.7225 80.7225 -67991.3 -80.7225 -19.0561 -0.29436 2.14473e+07 8578.92 8.23 4.07 2.89 -1 -1 8.23 2.15856 1.98292 0.08741 0.4253 0.01135 0.5634 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 13.14 vpr 65.50 MiB -1 -1 0.91 21736 3 0.32 -1 -1 37224 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.27 629 72933 24501 35348 13084 65.5 MiB 0.46 0.00 1.87772 -119.549 -1.87772 1.87772 1.34 0.000461057 0.000414004 0.168372 0.164632 34 1558 17 5.66058e+06 4.21279e+06 307677. 2136.65 3.61 0.731952 0.716879 12584 59343 -1 1425 11 394 640 30288 9228 2.15283 2.15283 -138.724 -2.15283 -0.152537 -0.0520174 377431. 2621.05 0.42 0.43 0.18 -1 -1 0.42 0.0171947 0.0162506 0.01078 0.2391 0.06093 0.6999 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 49.71 vpr 68.93 MiB -1 -1 1.12 26684 15 1.28 -1 -1 38208 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70580 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 4.72 5395 81543 23350 50681 7512 68.9 MiB 1.19 0.01 20.8098 -1508.89 -20.8098 20.8098 2.07 0.00131862 0.00119429 0.27794 0.267234 56 12691 45 1.21132e+07 3.97408e+06 911589. 3560.89 25.18 2.24193 2.17 27484 183688 -1 9721 17 3144 6378 1106486 283876 22.1411 22.1411 -1617.04 -22.1411 0 0 1.16227e+06 4540.11 1.14 0.77 0.35 -1 -1 1.14 0.125803 0.121804 0.008525 0.3564 0.01622 0.6273 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1437.01 vpr 446.18 MiB -1 -1 148.65 351224 123 169.85 -1 -1 82612 -1 -1 1201 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 456884 114 102 21994 21904 1 11290 1470 50 50 2500 memory auto 191.0 MiB 648.45 148158 912165 314749 574211 23205 446.2 MiB 41.39 0.31 79.4554 -51068 -79.4554 79.4554 57.06 0.0584539 0.0538898 7.36841 6.01039 92 223660 32 1.47946e+08 9.25569e+07 1.59225e+07 6369.02 195.34 24.4233 20.6408 350868 3451476 -1 200356 21 40851 161569 10051585 1827302 79.5633 79.5633 -65693.9 -79.5633 -41.7379 -0.295467 2.01686e+07 8067.44 13.73 6.98 4.95 -1 -1 13.73 3.92051 3.55382 0.08666 0.4013 0.0114 0.5873 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 15.04 vpr 65.53 MiB -1 -1 0.81 21736 3 0.09 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67100 99 130 344 474 1 224 298 12 12 144 clb auto 27.2 MiB 0.97 549 73928 23829 36791 13308 65.5 MiB 0.52 0.00 1.8401 -118.152 -1.8401 1.8401 1.13 0.000186215 0.000161836 0.0287834 0.025549 34 1372 17 5.66058e+06 4.21279e+06 320229. 2223.82 4.56 0.455391 0.445202 13004 62563 -1 1233 15 463 706 34457 11587 1.99839 1.99839 -140.337 -1.99839 -0.526504 -0.320482 391831. 2721.05 0.46 0.04 0.15 -1 -1 0.46 0.0182445 0.0171197 0.009937 0.244 0.07196 0.684 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 41.84 vpr 69.40 MiB -1 -1 1.22 26688 15 2.05 -1 -1 38352 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71064 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 3.56 5371 88564 26733 54405 7426 69.4 MiB 1.60 0.01 20.9753 -1548.5 -20.9753 20.9753 2.39 0.00142561 0.00128936 0.187074 0.175506 46 12058 27 1.21132e+07 3.97408e+06 791147. 3090.42 16.13 0.952523 0.920295 26792 163197 -1 10037 19 3263 6488 1051073 260909 22.1926 22.1926 -1736.57 -22.1926 0 0 1.01637e+06 3970.19 1.20 1.06 0.35 -1 -1 1.20 0.234786 0.23044 0.008092 0.3537 0.01628 0.63 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1667.34 vpr 498.08 MiB -1 -1 144.32 350948 123 172.00 -1 -1 82156 -1 -1 1277 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 510036 114 102 21994 21904 1 11867 1546 50 50 2500 memory auto 191.2 MiB 797.15 164477 984396 341560 619558 23278 480.8 MiB 43.60 0.39 81.3796 -51372.9 -81.3796 81.3796 64.66 0.0580813 0.0538211 7.45432 6.37272 100 240715 32 1.47946e+08 9.6653e+07 1.76909e+07 7076.35 287.93 19.8524 17.0744 373728 3941812 -1 214762 21 37798 149570 9908123 1796529 82.1147 82.1147 -65653.6 -82.1147 -27.1769 -0.293253 2.21802e+07 8872.08 8.04 3.84 2.85 -1 -1 8.04 2.10564 1.93225 0.09065 0.4176 0.01141 0.571 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.54 vpr 65.28 MiB -1 -1 0.81 21584 3 0.87 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66844 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.24 613 74923 25398 37402 12123 65.3 MiB 0.23 0.00 1.839 -119.464 -1.839 1.839 1.08 0.0004368 0.00039467 0.0297252 0.0265196 50 1247 9 5.66058e+06 4.21279e+06 440062. 3055.98 6.47 0.558669 0.547423 14436 87570 -1 1189 7 289 409 21086 6553 1.98899 1.98899 -140.896 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.72 0.03 0.08 -1 -1 0.72 0.00982496 0.0093716 0.01164 0.2334 0.07046 0.6962 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 49.11 vpr 69.34 MiB -1 -1 1.01 26676 15 1.07 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71000 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 4.48 5371 88564 26733 54405 7426 69.3 MiB 2.30 0.00 20.9753 -1548.5 -20.9753 20.9753 2.26 0.000601515 0.000520993 0.886993 0.76491 46 11676 22 1.21132e+07 3.97408e+06 791147. 3090.42 23.41 1.73898 1.5887 26792 163197 -1 10085 19 3292 6578 1048327 260277 22.2433 22.2433 -1672.58 -22.2433 0 0 1.01637e+06 3970.19 0.99 0.71 0.17 -1 -1 0.99 0.401058 0.396803 0.008387 0.342 0.01567 0.6423 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1633.80 vpr 496.20 MiB -1 -1 147.19 352640 123 168.91 -1 -1 82564 -1 -1 1182 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 508112 114 102 21994 21904 1 10940 1451 50 50 2500 memory auto 191.6 MiB 877.79 154452 888239 304307 561658 22274 481.8 MiB 37.23 0.30 78.2539 -52586.4 -78.2539 78.2539 58.97 0.0684197 0.0639946 6.31801 5.30985 98 229563 46 1.47946e+08 9.15329e+07 1.74237e+07 6969.48 192.91 20.0051 17.0121 371232 3885440 -1 203027 22 36338 146810 9236519 1669830 79.2502 79.2502 -62195.8 -79.2502 -16.5833 -0.293253 2.19566e+07 8782.65 8.00 3.87 2.70 -1 -1 8.00 2.15194 1.96794 0.09196 0.4057 0.01158 0.5827 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.74 MiB -1 -1 0.87 21888 3 0.25 -1 -1 36784 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67316 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.74 538 74923 23743 38186 12994 65.7 MiB 0.46 0.00 1.85836 -118.859 -1.85836 1.85836 1.25 0.00044323 0.00039874 0.0833149 0.0794368 44 1213 11 5.66058e+06 4.21279e+06 360780. 2505.42 6.90 0.345088 0.171848 13094 71552 -1 1006 9 361 566 21966 6628 1.95498 1.95498 -124.29 -1.95498 -1.3969 -0.320482 470765. 3269.20 0.34 0.20 0.23 -1 -1 0.34 0.193415 0.193005 0.0101 0.2387 0.07992 0.6814 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 47.92 vpr 68.84 MiB -1 -1 0.99 26840 15 1.36 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70492 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.7 MiB 3.23 5580 88564 28209 53179 7176 68.8 MiB 1.44 0.00 21.167 -1577.48 -21.167 21.167 2.90 0.000553365 0.00049063 0.333332 0.322203 52 12084 35 1.21132e+07 3.97408e+06 805949. 3148.24 22.47 2.73815 2.21138 25992 162577 -1 10001 21 3150 6471 953126 250011 22.6633 22.6633 -1754.49 -22.6633 0 0 1.06067e+06 4143.25 1.21 1.18 0.67 -1 -1 1.21 0.232977 0.228467 0.007879 0.3702 0.0172 0.6126 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1418.28 vpr 470.36 MiB -1 -1 145.00 351576 123 171.93 -1 -1 82612 -1 -1 1315 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481648 114 102 21994 21904 1 12069 1584 50 50 2500 memory auto 192.3 MiB 494.09 161733 1035344 376809 638291 20244 426.2 MiB 47.71 0.39 79.7884 -52633 -79.7884 79.7884 51.20 0.0795758 0.073882 7.82214 6.15179 100 239535 23 1.47946e+08 9.8701e+07 1.63173e+07 6526.93 333.66 33.9002 28.5792 351264 3480436 -1 216591 19 45827 171695 10458335 1849574 80.5324 80.5324 -65613.9 -80.5324 -28.5065 -0.295467 2.05845e+07 8233.80 17.07 8.12 5.20 -1 -1 17.07 4.09986 3.75578 0.08432 0.4351 0.01143 0.5535 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 16.83 vpr 65.55 MiB -1 -1 0.83 21736 3 0.19 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67124 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.46 629 72933 24501 35348 13084 65.6 MiB 0.48 0.00 1.87772 -119.549 -1.87772 1.87772 1.04 0.000452653 0.00040623 0.174031 0.170487 44 1518 15 5.66058e+06 4.21279e+06 360780. 2505.42 6.14 1.10383 1.08443 13094 71552 -1 1281 11 402 620 30031 8814 1.88524 1.88524 -135.78 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.44 0.03 0.20 -1 -1 0.44 0.0156127 0.0147278 0.01213 0.2346 0.06899 0.6964 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 46.26 vpr 68.68 MiB -1 -1 1.55 26524 15 1.10 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70332 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.6 MiB 3.51 5580 88564 28209 53179 7176 68.7 MiB 1.17 0.01 21.167 -1577.48 -21.167 21.167 2.19 0.00115365 0.00103787 0.263251 0.254836 52 11848 29 1.21132e+07 3.97408e+06 805949. 3148.24 19.66 1.68755 1.64436 25992 162577 -1 10011 19 3121 6382 869066 230925 22.6666 22.6666 -1713.82 -22.6666 0 0 1.06067e+06 4143.25 1.22 1.09 0.49 -1 -1 1.22 0.362726 0.358428 0.008166 0.3564 0.01659 0.627 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1328.64 vpr 427.14 MiB -1 -1 142.77 350980 123 176.23 -1 -1 82612 -1 -1 1230 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437396 114 102 21994 21904 1 11404 1499 50 50 2500 memory auto 192.8 MiB 529.83 147778 953324 346443 585551 21330 427.1 MiB 40.69 0.27 78.2524 -50084.1 -78.2524 78.2524 54.46 0.0277941 0.0234826 7.20707 6.24514 92 230324 36 1.47946e+08 9.41199e+07 1.52089e+07 6083.58 204.30 25.2542 21.7376 338772 3221652 -1 204378 20 45281 171417 10544859 1903351 77.7124 77.7124 -63142.5 -77.7124 -11.6434 -0.17368 1.93279e+07 7731.17 17.86 9.85 5.34 -1 -1 17.86 4.98385 4.62141 0.08373 0.4084 0.01162 0.5799 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 13.89 vpr 65.46 MiB -1 -1 1.17 21584 3 0.36 -1 -1 36936 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67028 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.57 639 73928 23996 36536 13396 65.5 MiB 0.70 0.00 1.839 -119.624 -1.839 1.839 1.17 0.000186206 0.00016243 0.0288122 0.0256314 46 1373 14 5.66058e+06 4.21279e+06 378970. 2631.74 2.82 0.363528 0.315944 13238 73581 -1 1270 10 404 640 27867 7804 1.92827 1.92827 -132.912 -1.92827 -1.34165 -0.320482 486261. 3376.82 0.64 0.03 0.16 -1 -1 0.64 0.0169172 0.0159901 0.01068 0.2679 0.07864 0.6535 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 45.63 vpr 68.88 MiB -1 -1 1.14 26840 15 1.36 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70528 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 30.7 MiB 3.31 5491 86558 27021 52195 7342 68.9 MiB 1.25 0.34 20.8422 -1499.39 -20.8422 20.8422 2.21 0.00126488 0.00115014 0.355281 0.343671 52 12476 25 1.21132e+07 3.97408e+06 805949. 3148.24 21.70 2.51603 2.46771 25992 162577 -1 9995 18 3172 6560 1017823 266673 22.9367 22.9367 -1682.08 -22.9367 0 0 1.06067e+06 4143.25 1.26 0.80 0.64 -1 -1 1.26 0.072601 0.068555 0.00792 0.3643 0.01693 0.6188 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1479.70 vpr 470.31 MiB -1 -1 146.52 350988 123 170.60 -1 -1 82460 -1 -1 1303 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481600 114 102 21994 21904 1 12000 1572 50 50 2500 memory auto 192.2 MiB 511.84 161777 1024804 369415 632178 23211 426.2 MiB 45.74 0.52 79.8923 -52835.3 -79.8923 79.8923 53.16 0.0653945 0.0613355 7.28465 5.98334 102 240718 39 1.47946e+08 9.80543e+07 1.66061e+07 6642.43 398.17 36.5754 31.2569 353764 3530188 -1 218796 20 45896 172140 11008942 1948718 82.1463 82.1463 -66824.1 -82.1463 -47.1487 -0.200829 2.08230e+07 8329.19 10.19 5.12 3.00 -1 -1 10.19 2.57727 2.35988 0.08548 0.4322 0.01138 0.5564 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.72 vpr 65.50 MiB -1 -1 0.83 21584 3 0.17 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.26 640 74923 24032 38029 12862 65.5 MiB 0.43 0.00 1.85836 -119.386 -1.85836 1.85836 1.19 0.000427283 0.000383087 0.120511 0.0306172 48 1330 15 5.66058e+06 4.21279e+06 394078. 2736.65 6.99 0.537171 0.439507 13382 75762 -1 1278 9 390 592 29773 8505 1.97104 1.97104 -133.596 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.58 0.11 0.14 -1 -1 0.58 0.10463 0.103805 0.0119 0.2454 0.07017 0.6845 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 42.62 vpr 69.23 MiB -1 -1 1.12 26524 15 1.65 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70892 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 31.0 MiB 4.17 5491 86558 27021 52195 7342 69.2 MiB 1.25 0.09 20.8422 -1499.39 -20.8422 20.8422 1.99 0.000650897 0.000577386 0.516363 0.50516 50 12593 36 1.21132e+07 3.97408e+06 780512. 3048.87 18.20 1.59155 1.53776 25484 153448 -1 9868 18 3208 6547 956943 250643 22.4753 22.4753 -1640.64 -22.4753 0 0 1.00276e+06 3917.05 1.19 1.66 0.25 -1 -1 1.19 0.973698 0.35489 0.008176 0.3414 0.01571 0.6429 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1450.83 vpr 451.48 MiB -1 -1 145.88 351092 123 171.94 -1 -1 82308 -1 -1 1214 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 462320 114 102 21994 21904 1 11183 1483 50 50 2500 memory auto 191.6 MiB 562.84 147783 922860 327293 577723 17844 426.0 MiB 38.37 0.28 78.8747 -50577.6 -78.8747 78.8747 49.09 0.0250041 0.0209632 7.20624 5.97775 98 225377 21 1.47946e+08 9.32575e+07 1.60641e+07 6425.63 317.00 34.1863 29.5372 348768 3430976 -1 200896 21 42829 165324 9641173 1718310 79.0088 79.0088 -60411.8 -79.0088 -30.4278 -0.295467 2.03677e+07 8147.07 14.76 6.23 4.38 -1 -1 14.76 3.1241 2.84352 0.08621 0.4138 0.01162 0.5746 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.91 vpr 64.43 MiB -1 -1 0.46 18512 3 0.09 -1 -1 33276 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65972 99 130 344 474 1 226 298 12 12 144 clb auto 25.1 MiB 0.08 538 74923 23743 38186 12994 64.4 MiB 0.24 0.00 1.85836 -118.859 -1.85836 1.85836 0.28 0.00128352 0.00121612 0.10013 0.0947911 48 1116 12 5.66058e+06 4.21279e+06 394078. 2736.65 0.87 0.350927 0.322955 13382 75762 -1 1110 10 412 647 31369 9620 1.90517 1.90517 -133.113 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.11 0.05 0.10 -1 -1 0.11 0.0313737 0.0289644 0.01055 0.2565 0.08184 0.6617 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 18.17 vpr 67.46 MiB -1 -1 0.59 23408 15 0.35 -1 -1 34260 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69076 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 28.2 MiB 0.26 5244 100490 36162 56323 8005 67.5 MiB 0.70 0.01 21.0218 -1540.44 -21.0218 21.0218 0.53 0.0033491 0.00314041 0.34846 0.326853 58 12364 47 1.21132e+07 4.08187e+06 904549. 3533.39 11.65 1.64591 1.51072 27012 180273 -1 9111 18 3141 6470 890891 255235 22.5995 22.5995 -1612.44 -22.5995 0 0 1.15318e+06 4504.63 0.28 0.33 0.17 -1 -1 0.28 0.139919 0.12955 0.007774 0.375 0.01842 0.6066 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 535.90 vpr 485.63 MiB -1 -1 85.40 340324 123 54.56 -1 -1 78760 -1 -1 1366 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 497288 114 102 21994 21904 1 11836 1635 50 50 2500 memory auto 154.1 MiB 19.75 163873 1060715 378314 659503 22898 458.7 MiB 22.07 0.18 80.0631 -51811.9 -80.0631 80.0631 19.21 0.0599989 0.0487904 7.11734 5.88716 98 248827 34 1.47946e+08 1.0145e+08 1.60641e+07 6425.63 253.24 36.5363 30.0424 348768 3430976 -1 220630 22 44335 165955 10546515 1857252 82.0537 82.0537 -63570.6 -82.0537 -54.234 -0.341744 2.03677e+07 8147.07 6.68 6.56 3.35 -1 -1 6.68 3.52019 3.02919 0.08245 0.4398 0.01125 0.549 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.87 vpr 64.37 MiB -1 -1 0.45 18528 3 0.09 -1 -1 33256 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65912 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.11 629 72933 24501 35348 13084 64.4 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.28 0.00128307 0.00121499 0.0978232 0.0925505 44 1503 13 5.66058e+06 4.21279e+06 360780. 2505.42 0.85 0.35273 0.324428 13094 71552 -1 1291 9 444 678 32652 9532 1.88524 1.88524 -138.119 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.10 0.05 0.08 -1 -1 0.10 0.0306968 0.0283888 0.01201 0.2318 0.06967 0.6986 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 14.92 vpr 67.70 MiB -1 -1 0.71 23388 15 0.35 -1 -1 34324 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69328 162 96 1009 950 1 711 302 16 16 256 mult_36 auto 28.4 MiB 0.32 5244 100490 36162 56322 8006 67.7 MiB 0.71 0.01 21.0218 -1540.44 -21.0218 21.0218 0.53 0.00340038 0.00318638 0.348566 0.326919 60 12120 38 1.21132e+07 4.08187e+06 934704. 3651.19 8.14 1.57028 1.4405 27268 184674 -1 9238 21 3171 6591 898709 258665 22.6022 22.6022 -1615.35 -22.6022 0 0 1.17756e+06 4599.85 0.26 0.36 0.18 -1 -1 0.26 0.155979 0.144282 0.008138 0.3663 0.01781 0.6159 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 475.74 vpr 499.27 MiB -1 -1 83.58 337888 123 60.89 -1 -1 78688 -1 -1 1283 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 511252 114 102 21994 21904 1 11396 1552 50 50 2500 memory auto 158.5 MiB 46.90 151468 962626 335251 605750 21625 460.8 MiB 20.87 0.19 79.7185 -50660.6 -79.7185 79.7185 19.44 0.0604921 0.0490193 6.78438 5.62494 98 230987 26 1.47946e+08 9.69764e+07 1.60641e+07 6425.63 161.10 31.6162 25.9076 348768 3430976 -1 206741 19 42740 163747 9849262 1764940 80.7634 80.7634 -62863.6 -80.7634 -25.1857 -0.295467 2.03677e+07 8147.07 7.05 6.13 4.01 -1 -1 7.05 3.4387 2.96316 0.08362 0.427 0.01129 0.5617 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.01 vpr 64.57 MiB -1 -1 0.45 18448 3 0.09 -1 -1 33184 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66124 99 130 344 474 1 226 298 12 12 144 clb auto 25.6 MiB 0.15 538 74923 23743 38186 12994 64.6 MiB 0.25 0.00 1.85836 -118.859 -1.85836 1.85836 0.29 0.00128172 0.00121457 0.100729 0.0953529 44 1215 9 5.66058e+06 4.21279e+06 377431. 2621.05 0.88 0.348347 0.320564 13584 76382 -1 1056 7 380 593 23836 7184 1.9572 1.9572 -130.301 -1.9572 -1.36959 -0.320482 492119. 3417.49 0.11 0.04 0.08 -1 -1 0.11 0.0247689 0.0229422 0.01011 0.2345 0.08042 0.6851 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.95 vpr 67.65 MiB -1 -1 0.72 23436 15 0.37 -1 -1 34348 -1 -1 39 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69276 162 96 1009 950 1 705 302 16 16 256 mult_36 auto 28.5 MiB 0.70 5683 93406 31754 54877 6775 67.7 MiB 0.65 0.01 21.4085 -1556.87 -21.4085 21.4085 0.52 0.00331055 0.00310848 0.32205 0.302363 46 12863 27 1.21132e+07 4.08187e+06 761464. 2974.47 7.11 1.36384 1.25332 25952 154797 -1 10322 14 3161 6815 963941 249742 22.9754 22.9754 -1703.75 -22.9754 0 0 979054. 3824.43 0.22 0.32 0.14 -1 -1 0.22 0.117659 0.109376 0.007836 0.3552 0.01616 0.6286 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 670.25 vpr 488.51 MiB -1 -1 81.35 336596 123 57.87 -1 -1 78688 -1 -1 1288 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 500236 114 102 21994 21904 1 12045 1557 50 50 2500 memory auto 156.2 MiB 216.80 160864 1011797 360603 629329 21865 488.5 MiB 27.81 0.30 79.4147 -50808.8 -79.4147 79.4147 27.25 0.0884053 0.0701446 8.58688 7.12621 98 239202 28 1.47946e+08 9.72458e+07 1.67994e+07 6719.74 175.24 26.9279 22.3385 360864 3674624 -1 213681 19 41673 157305 9667631 1741562 81.24 81.24 -63245.1 -81.24 -19.5295 -0.295467 2.12220e+07 8488.81 6.58 5.78 3.41 -1 -1 6.58 3.13435 2.70985 0.08697 0.4234 0.01132 0.5653 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.73 vpr 64.68 MiB -1 -1 0.47 18492 3 0.09 -1 -1 33344 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66236 99 130 344 474 1 226 298 12 12 144 clb auto 25.7 MiB 0.13 629 72933 24501 35348 13084 64.7 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.29 0.00131085 0.00124249 0.0999233 0.0946532 32 1624 14 5.66058e+06 4.21279e+06 295695. 2053.44 0.71 0.278221 0.257113 12440 56522 -1 1512 9 414 636 41683 12549 2.10604 2.10604 -144.439 -2.10604 -0.325931 -0.145548 361905. 2513.23 0.09 0.05 0.06 -1 -1 0.09 0.0289574 0.0267512 0.011 0.2405 0.05957 0.6999 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 14.24 vpr 67.78 MiB -1 -1 0.70 23448 15 0.36 -1 -1 34348 -1 -1 38 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69408 162 96 1009 950 1 706 301 16 16 256 mult_36 auto 28.5 MiB 0.93 5656 94045 31737 56059 6249 67.8 MiB 0.66 0.01 21.2066 -1479.61 -21.2066 21.2066 0.56 0.00332364 0.00312131 0.32433 0.304405 46 14213 39 1.21132e+07 4.02797e+06 761464. 2974.47 6.92 1.22532 1.12693 25952 154797 -1 10825 19 3638 7502 1282322 323679 22.7871 22.7871 -1801.31 -22.7871 0 0 979054. 3824.43 0.22 0.42 0.15 -1 -1 0.22 0.1521 0.141059 0.008222 0.3465 0.01552 0.638 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 629.56 vpr 508.39 MiB -1 -1 82.43 338700 123 64.30 -1 -1 78620 -1 -1 1193 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 520592 114 102 21994 21904 1 11319 1462 50 50 2500 memory auto 156.7 MiB 187.72 151481 880626 307715 554429 18482 491.8 MiB 22.41 0.20 78.7665 -49507.4 -78.7665 78.7665 24.16 0.0619866 0.0541973 7.3126 6.148 94 226709 34 1.47946e+08 9.21257e+07 1.62379e+07 6495.14 164.48 32.8008 27.0848 353364 3504872 -1 204540 20 39838 157470 10691982 1929023 79.2512 79.2512 -59429.8 -79.2512 -26.3419 -0.293253 2.03897e+07 8155.87 6.87 6.13 3.18 -1 -1 6.87 3.24641 2.80309 0.08747 0.4048 0.01146 0.5838 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.91 vpr 65.00 MiB -1 -1 0.47 18508 3 0.10 -1 -1 33188 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66556 99 130 344 474 1 224 298 12 12 144 clb auto 25.8 MiB 0.15 549 73928 23829 36791 13308 65.0 MiB 0.24 0.00 1.8401 -118.152 -1.8401 1.8401 0.30 0.00130488 0.00123523 0.100365 0.0949561 34 1400 12 5.66058e+06 4.21279e+06 320229. 2223.82 0.82 0.352608 0.324286 13004 62563 -1 1279 8 430 654 33979 11413 1.95123 1.95123 -139.36 -1.95123 -0.526504 -0.320482 391831. 2721.05 0.09 0.04 0.07 -1 -1 0.09 0.0272355 0.0252418 0.01018 0.2461 0.07191 0.682 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.96 vpr 67.98 MiB -1 -1 0.70 23348 15 0.36 -1 -1 34272 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69616 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 28.8 MiB 0.87 5534 82217 25495 50569 6153 68.0 MiB 0.58 0.01 20.7544 -1579.11 -20.7544 20.7544 0.57 0.00332232 0.0031218 0.287023 0.269371 46 13546 31 1.21132e+07 3.92018e+06 791147. 3090.42 5.71 0.929007 0.856522 26792 163197 -1 10190 18 3201 6645 1002301 246174 22.2459 22.2459 -1761.64 -22.2459 0 0 1.01637e+06 3970.19 0.23 0.35 0.15 -1 -1 0.23 0.139767 0.129559 0.00808 0.3534 0.01627 0.6303 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 687.19 vpr 522.71 MiB -1 -1 81.99 340236 123 63.71 -1 -1 78648 -1 -1 1274 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 535252 114 102 21994 21904 1 11815 1543 50 50 2500 memory auto 155.5 MiB 259.47 160275 990775 347540 619346 23889 522.7 MiB 24.01 0.19 80.1549 -53164.4 -80.1549 80.1549 27.38 0.0616526 0.0539863 7.65448 6.40952 98 232320 21 1.47946e+08 9.64913e+07 1.74237e+07 6969.48 146.68 24.4951 20.3482 371232 3885440 -1 210203 21 37478 147018 9204142 1693783 80.8722 80.8722 -65514.2 -80.8722 -15.0342 -0.291039 2.19566e+07 8782.65 6.79 5.80 3.52 -1 -1 6.79 3.30513 2.85672 0.09047 0.4148 0.01154 0.5737 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.08 vpr 64.86 MiB -1 -1 0.47 18524 3 0.09 -1 -1 33280 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66416 99 130 344 474 1 224 298 12 12 144 clb auto 25.9 MiB 0.14 613 74923 25398 37402 12123 64.9 MiB 0.25 0.00 1.839 -119.464 -1.839 1.839 0.30 0.00128281 0.00121543 0.100423 0.0950336 50 1260 9 5.66058e+06 4.21279e+06 440062. 3055.98 0.94 0.346378 0.318763 14436 87570 -1 1179 7 283 438 20001 6155 1.98899 1.98899 -130.914 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.12 0.04 0.09 -1 -1 0.12 0.0248425 0.0230441 0.01164 0.2329 0.07048 0.6967 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 13.12 vpr 68.05 MiB -1 -1 0.71 23408 15 0.35 -1 -1 34492 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69680 162 96 1009 950 1 712 299 16 16 256 mult_36 auto 28.8 MiB 1.00 5534 82217 25497 50567 6153 68.0 MiB 0.60 0.01 20.7544 -1578.81 -20.7544 20.7544 0.57 0.00330045 0.00309454 0.292819 0.274658 46 13744 47 1.21132e+07 3.92018e+06 791147. 3090.42 5.72 1.00594 0.926499 26792 163197 -1 10259 16 3195 6538 948445 234905 22.2459 22.2459 -1811.67 -22.2459 0 0 1.01637e+06 3970.19 0.23 0.33 0.15 -1 -1 0.23 0.128353 0.119133 0.008381 0.3414 0.01568 0.6429 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 716.17 vpr 540.73 MiB -1 -1 82.09 339008 123 63.26 -1 -1 78716 -1 -1 1175 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 553708 114 102 21994 21904 1 10942 1444 50 50 2500 memory auto 156.9 MiB 249.35 148069 866192 300137 545963 20092 540.7 MiB 23.11 0.18 78.5025 -50951.2 -78.5025 78.5025 26.79 0.0607318 0.0529501 7.5696 6.24034 92 233026 48 1.47946e+08 9.11556e+07 1.65231e+07 6609.23 187.34 25.5167 20.9888 361236 3648468 -1 199192 19 37587 154072 9856337 1805513 81.0092 81.0092 -66576.6 -81.0092 -34.8015 -0.29436 2.08892e+07 8355.67 6.32 5.43 3.56 -1 -1 6.32 2.98606 2.57895 0.08965 0.3936 0.01149 0.5949 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.90 vpr 64.68 MiB -1 -1 0.46 18476 3 0.10 -1 -1 33136 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66232 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.14 538 74923 23743 38186 12994 64.7 MiB 0.25 0.00 1.85836 -118.859 -1.85836 1.85836 0.28 0.00130077 0.00122313 0.100354 0.0950103 48 1119 10 5.66058e+06 4.21279e+06 394078. 2736.65 1.84 0.43338 0.397487 13382 75762 -1 1111 9 407 640 31098 9571 1.90517 1.90517 -133.268 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.10 0.05 0.08 -1 -1 0.10 0.0289942 0.0268024 0.01058 0.2539 0.08162 0.6644 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 14.96 vpr 67.49 MiB -1 -1 0.70 23380 15 0.35 -1 -1 34484 -1 -1 37 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69112 162 96 1009 950 1 705 300 16 16 256 mult_36 auto 28.3 MiB 0.76 5400 93579 30951 55136 7492 67.5 MiB 0.65 0.01 21.0211 -1608.2 -21.0211 21.0211 0.53 0.00332373 0.00312174 0.324339 0.304342 52 13668 48 1.21132e+07 3.97408e+06 805949. 3148.24 7.88 1.24533 1.14655 25992 162577 -1 10366 18 3716 7645 1206424 330743 21.9034 21.9034 -1762.54 -21.9034 0 0 1.06067e+06 4143.25 0.23 0.40 0.16 -1 -1 0.23 0.142071 0.131718 0.008025 0.369 0.01742 0.6136 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 603.34 vpr 457.13 MiB -1 -1 82.14 340192 123 66.24 -1 -1 78560 -1 -1 1312 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 468104 114 102 21994 21904 1 12069 1581 50 50 2500 memory auto 156.9 MiB 150.27 157114 995829 353535 622712 19582 457.1 MiB 23.40 0.20 78.8285 -48928.8 -78.8285 78.8285 21.38 0.0648614 0.0530728 7.47249 6.16569 98 235798 29 1.47946e+08 9.85393e+07 1.60641e+07 6425.63 178.90 25.6973 21.2388 348768 3430976 -1 213424 20 45932 171043 10114133 1799018 78.271 78.271 -60696.1 -78.271 -29.5608 -0.29436 2.03677e+07 8147.07 6.47 6.08 3.25 -1 -1 6.47 3.29083 2.82896 0.08425 0.4305 0.01165 0.5578 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.73 vpr 64.40 MiB -1 -1 0.45 18504 3 0.09 -1 -1 33112 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65944 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.12 629 72933 24501 35348 13084 64.4 MiB 0.24 0.00 1.87772 -119.549 -1.87772 1.87772 0.27 0.00128295 0.00121483 0.0979705 0.0927064 44 1497 14 5.66058e+06 4.21279e+06 360780. 2505.42 0.85 0.35178 0.323504 13094 71552 -1 1295 10 435 664 32826 9570 1.88524 1.88524 -137.26 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.09 0.03 0.05 -1 -1 0.09 0.0168764 0.0157507 0.01211 0.233 0.06912 0.6979 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 13.27 vpr 67.82 MiB -1 -1 0.71 23404 15 0.35 -1 -1 34356 -1 -1 38 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69452 162 96 1009 950 1 712 301 16 16 256 mult_36 auto 28.6 MiB 0.88 5436 80941 24721 48691 7529 67.8 MiB 0.57 0.01 21.3215 -1593.92 -21.3215 21.3215 0.53 0.00333791 0.00313573 0.281644 0.264489 52 13694 49 1.21132e+07 4.02797e+06 805949. 3148.24 6.30 1.19097 1.09485 25992 162577 -1 10091 23 3615 7408 1176966 344030 22.5958 22.5958 -1723.52 -22.5958 0 0 1.06067e+06 4143.25 0.23 0.43 0.16 -1 -1 0.23 0.168977 0.156174 0.008131 0.3528 0.01671 0.6305 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 587.23 vpr 491.73 MiB -1 -1 81.07 339920 123 65.75 -1 -1 78576 -1 -1 1232 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 503532 114 102 21994 21904 1 11410 1501 50 50 2500 memory auto 156.1 MiB 151.18 147970 912041 322415 572125 17501 456.5 MiB 25.64 0.19 79.3309 -50078.7 -79.3309 79.3309 22.19 0.0607523 0.0531329 8.06828 6.5854 94 226623 25 1.47946e+08 9.42277e+07 1.55181e+07 6207.23 160.51 33.8179 27.6693 341268 3271592 -1 205584 20 42943 163878 11109032 1979719 80.5595 80.5595 -61773.4 -80.5595 -24.5176 -0.29436 1.95446e+07 7817.85 6.00 6.25 3.10 -1 -1 6.00 3.31135 2.84415 0.08355 0.4122 0.0115 0.5763 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.90 vpr 64.49 MiB -1 -1 0.45 18484 3 0.10 -1 -1 33196 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66036 99 130 344 474 1 224 298 12 12 144 clb auto 25.3 MiB 0.16 639 73928 23996 36536 13396 64.5 MiB 0.24 0.00 1.839 -119.624 -1.839 1.839 0.27 0.00128978 0.00122129 0.0993504 0.0940474 46 1412 8 5.66058e+06 4.21279e+06 378970. 2631.74 0.86 0.343334 0.315928 13238 73581 -1 1242 10 409 673 29623 8410 1.92827 1.92827 -132.598 -1.92827 -1.27659 -0.320482 486261. 3376.82 0.10 0.05 0.08 -1 -1 0.10 0.0311251 0.0287589 0.01069 0.2668 0.0786 0.6546 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 10.40 vpr 67.71 MiB -1 -1 0.73 23380 15 0.35 -1 -1 34356 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69336 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 28.6 MiB 0.73 5364 72227 19590 45379 7258 67.7 MiB 0.52 0.01 21.0826 -1528.67 -21.0826 21.0826 0.53 0.00335001 0.00314464 0.256125 0.240615 50 11640 32 1.21132e+07 3.92018e+06 780512. 3048.87 3.54 1.01714 0.936426 25484 153448 -1 9689 15 3086 6229 925159 229377 22.1237 22.1237 -1616.56 -22.1237 0 0 1.00276e+06 3917.05 0.22 0.31 0.15 -1 -1 0.22 0.121562 0.112896 0.007966 0.3547 0.01635 0.629 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 648.38 vpr 455.99 MiB -1 -1 82.14 340236 123 57.05 -1 -1 78672 -1 -1 1303 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 466932 114 102 21994 21904 1 11945 1572 50 50 2500 memory auto 156.2 MiB 162.56 155446 1015668 369921 626939 18808 456.0 MiB 25.41 0.19 79.7453 -52233.7 -79.7453 79.7453 21.15 0.0611488 0.0533697 7.80998 6.50095 98 235418 31 1.47946e+08 9.80543e+07 1.60641e+07 6425.63 218.95 26.8542 22.2389 348768 3430976 -1 212823 21 45556 172847 10528121 1854644 81.5508 81.5508 -63599.7 -81.5508 -17.3574 -0.295467 2.03677e+07 8147.07 6.35 6.10 3.26 -1 -1 6.35 3.30222 2.83357 0.0847 0.4264 0.01149 0.5621 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.72 vpr 64.43 MiB -1 -1 0.25 18532 3 0.09 -1 -1 33232 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65976 99 130 344 474 1 224 298 12 12 144 clb auto 25.5 MiB 0.13 640 74923 24032 38029 12862 64.4 MiB 0.25 0.00 1.85836 -119.386 -1.85836 1.85836 0.27 0.00128168 0.00121414 0.100227 0.094856 48 1399 19 5.66058e+06 4.21279e+06 394078. 2736.65 0.89 0.366673 0.337055 13382 75762 -1 1315 10 382 581 31540 8904 1.97104 1.97104 -135.474 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.11 0.05 0.08 -1 -1 0.11 0.0314073 0.0289943 0.01192 0.2466 0.07003 0.6833 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.94 vpr 67.83 MiB -1 -1 0.42 23432 15 0.37 -1 -1 34400 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69460 162 96 1009 950 1 713 299 16 16 256 mult_36 auto 28.6 MiB 0.90 5364 72227 19590 45379 7258 67.8 MiB 0.52 0.01 21.0826 -1528.67 -21.0826 21.0826 0.53 0.00334529 0.00313832 0.255556 0.239987 48 12805 41 1.21132e+07 3.92018e+06 756778. 2956.16 4.19 0.998699 0.91939 25228 149258 -1 9805 16 3331 6769 959822 240776 22.0604 22.0604 -1637.72 -22.0604 0 0 968034. 3781.38 0.22 0.34 0.14 -1 -1 0.22 0.130825 0.121383 0.008221 0.3371 0.01616 0.6467 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 539.29 vpr 458.57 MiB -1 -1 81.35 338872 123 65.68 -1 -1 78724 -1 -1 1201 114 45 8 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 469576 114 102 21994 21904 1 11170 1470 50 50 2500 memory auto 156.6 MiB 162.59 145223 903810 323881 562576 17353 458.6 MiB 23.78 0.23 78.3462 -52922.5 -78.3462 78.3462 20.77 0.0716151 0.0636171 7.76893 6.44748 92 224213 40 1.47946e+08 9.25569e+07 1.52089e+07 6083.58 100.82 25.8914 21.3798 338772 3221652 -1 200921 20 44271 169310 10439629 1870593 79.3368 79.3368 -63585.9 -79.3368 -30.0926 -0.295467 1.93279e+07 7731.17 7.13 6.52 3.11 -1 -1 7.13 3.52325 3.03658 0.08467 0.4033 0.01157 0.5851 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt index 3396dd64680..829c3da90f8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 6.10 vpr 63.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65132 14 8 926 934 0 489 100 11 11 121 clb auto 25.8 MiB 0.98 4624 63.6 MiB 0.20 0.00 4.26299 -29.8803 -4.26299 nan 0.34 0.00193889 0.00163529 0.0909955 0.0803343 52 7374 32 4.36541e+06 4.20373e+06 379421. 3135.71 2.74 0.894853 0.780585 6891 18 2883 12687 402786 77626 4.95623 nan -34.8296 -4.95623 0 0 499620. 4129.09 0.17 0.30 0.171045 0.156958 - k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 8.42 vpr 65.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 38 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67248 38 3 1113 1116 0 660 141 12 12 144 clb auto 28.1 MiB 1.68 7360 65.7 MiB 0.32 0.01 4.67484 -13.8729 -4.67484 nan 0.40 0.00278857 0.00235967 0.126195 0.110714 70 11995 30 5.3894e+06 5.3894e+06 622128. 4320.33 3.63 0.934458 0.806524 11242 16 4359 22022 744895 124336 5.52801 nan -15.9288 -5.52801 0 0 779596. 5413.86 0.26 0.40 0.182003 0.16665 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 6.74 vpr 63.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65172 9 19 897 916 0 559 109 11 11 121 clb auto 26.0 MiB 1.31 6044 63.6 MiB 0.22 0.01 4.36384 -69.9319 -4.36384 nan 0.32 0.0020165 0.00172919 0.0879827 0.0778257 68 9881 44 4.36541e+06 4.36541e+06 499620. 4129.09 2.98 0.798626 0.693521 8928 18 3789 18638 603967 108683 5.18778 nan -82.1838 -5.18778 0 0 618530. 5111.82 0.19 0.33 0.153639 0.140985 - k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 8.28 vpr 65.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 229 197 1364 1561 1 539 497 16 16 256 io auto 27.2 MiB 1.03 4408 65.1 MiB 0.77 0.01 2.54656 -621.9 -2.54656 2.54656 0.88 0.0028051 0.00253446 0.268509 0.241402 38 7549 19 1.05632e+07 3.82647e+06 667532. 2607.55 2.99 1.10562 1.00098 6905 13 1621 4094 200528 44954 3.07855 3.07855 -714.837 -3.07855 0 0 843755. 3295.92 0.35 0.21 0.144234 0.134808 - k6_frac_N10_40nm.xml clma.pre-vpr.blif common 42.46 vpr 89.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 306 62 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91432 62 82 3672 3754 1 2349 450 20 20 400 clb auto 52.2 MiB 4.59 28983 89.3 MiB 2.95 0.04 7.29692 -314.171 -7.29692 7.29692 1.61 0.0113629 0.00959956 0.982735 0.84349 92 46477 33 1.74617e+07 1.64916e+07 2.37849e+06 5946.23 24.94 5.30489 4.49675 42472 16 14643 63904 2407512 372290 8.04747 8.04747 -346.575 -8.04747 0 0 3.01539e+06 7538.48 1.36 1.51 0.742695 0.672713 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 9.73 vpr 62.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64000 256 245 954 1199 0 581 552 18 18 324 io auto 24.5 MiB 0.41 4850 62.5 MiB 0.60 0.01 3.56098 -645.978 -3.56098 nan 1.21 0.0026513 0.002422 0.188129 0.173011 36 9247 49 1.37969e+07 2.74859e+06 824466. 2544.65 4.61 1.08128 1.00072 8049 17 2411 5137 284651 65331 4.22789 nan -800.894 -4.22789 0 0 1.01518e+06 3133.28 0.45 0.24 0.138928 0.131135 - k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 5.04 vpr 63.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 64 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65012 64 39 1371 1410 1 542 169 11 11 121 clb auto 25.9 MiB 0.62 3539 63.5 MiB 0.26 0.01 4.72499 -920.021 -4.72499 4.72499 0.34 0.00221774 0.00190626 0.113861 0.0994764 46 6362 27 4.36541e+06 3.557e+06 343362. 2837.71 2.05 0.677393 0.592709 5193 14 1995 5499 161167 33878 5.7263 5.7263 -1100.93 -5.7263 0 0 440296. 3638.81 0.15 0.19 0.142165 0.13055 - k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 8.58 vpr 65.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 229 197 1362 1559 1 566 497 16 16 256 io auto 27.6 MiB 1.15 4692 65.3 MiB 0.75 0.01 2.61898 -604.221 -2.61898 2.61898 0.88 0.00313524 0.0028236 0.250799 0.225596 38 8277 13 1.05632e+07 3.82647e+06 667532. 2607.55 3.12 1.07432 0.971949 7547 12 1828 4992 263970 57657 3.1914 3.1914 -729.755 -3.1914 0 0 843755. 3295.92 0.35 0.23 0.150983 0.14192 - k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 15.19 vpr 77.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 166 131 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79248 131 114 3421 3535 1 1164 411 15 15 225 clb auto 40.1 MiB 3.41 10211 77.4 MiB 1.30 0.02 6.53242 -3829.38 -6.53242 6.53242 0.76 0.00704713 0.00604684 0.521317 0.450637 62 17376 34 9.10809e+06 8.9464e+06 909814. 4043.62 5.72 2.15062 1.85659 15358 15 5042 21232 740906 125232 7.53327 7.53327 -4462.93 -7.53327 0 0 1.12687e+06 5008.33 0.42 0.60 0.402157 0.366687 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 37.74 vpr 81.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83888 10 10 2659 2669 0 1393 308 19 19 361 clb auto 45.3 MiB 4.73 26284 81.9 MiB 1.58 0.02 5.85481 -57.6187 -5.85481 nan 1.34 0.00839796 0.00704329 0.573606 0.491961 92 43610 37 1.55754e+07 1.55215e+07 2.13123e+06 5903.67 22.76 4.35345 3.72008 40138 19 9880 62056 2908703 358426 6.44782 nan -63.4736 -6.44782 0 0 2.70169e+06 7483.90 1.22 1.59 0.648998 0.585473 - k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 5.43 vpr 62.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63556 8 63 761 824 0 435 133 10 10 100 clb auto 24.4 MiB 0.88 3931 62.1 MiB 0.21 0.01 3.49851 -158.405 -3.49851 nan 0.27 0.00178643 0.00152944 0.0823636 0.0727072 58 6824 44 3.44922e+06 3.34143e+06 342720. 3427.20 2.38 0.612812 0.531324 6025 16 2874 12604 426083 80663 4.18734 nan -188.901 -4.18734 0 0 435638. 4356.38 0.15 0.25 0.123045 0.112975 - k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 17.96 vpr 77.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 172 20 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79288 20 116 3175 3291 1 1268 308 16 16 256 clb auto 40.7 MiB 2.90 14208 77.4 MiB 1.29 0.02 7.4636 -3962.61 -7.4636 7.4636 0.86 0.00675188 0.00599758 0.537552 0.473824 74 23930 27 1.05632e+07 9.26977e+06 1.22133e+06 4770.81 8.23 2.32526 2.03303 21885 17 6397 26110 1261061 202034 9.00945 9.00945 -4651.19 -9.00945 0 0 1.52915e+06 5973.24 0.60 0.80 0.475754 0.432309 - k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 6.19 vpr 62.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 14 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64100 14 14 828 842 0 472 100 11 11 121 clb auto 24.8 MiB 1.08 4477 62.6 MiB 0.18 0.01 3.97781 -53.2842 -3.97781 nan 0.34 0.00204554 0.00173648 0.0767547 0.0681645 50 7431 46 4.36541e+06 3.88037e+06 367716. 3038.97 2.75 0.667944 0.579629 6716 17 3068 13491 432709 79146 5.04883 nan -62.9623 -5.04883 0 0 472432. 3904.40 0.17 0.27 0.142323 0.129982 - k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 34.82 vpr 82.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 271 16 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84600 16 40 2839 2879 0 1511 327 19 19 361 clb auto 45.9 MiB 3.83 23697 82.6 MiB 1.59 0.03 6.06928 -216.338 -6.06928 nan 1.44 0.00825599 0.00674821 0.569945 0.487717 86 40064 49 1.55754e+07 1.46053e+07 2.00874e+06 5564.38 20.90 4.57512 3.88369 35670 18 9500 51498 2046618 301201 6.81763 nan -242.91 -6.81763 0 0 2.53507e+06 7022.34 1.09 1.27 0.578591 0.521143 - k6_frac_N10_40nm.xml s298.pre-vpr.blif common 4.68 vpr 61.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 4 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63224 4 6 726 732 1 380 74 10 10 100 clb auto 24.1 MiB 0.83 3567 61.7 MiB 0.12 0.00 5.42994 -44.6881 -5.42994 5.42994 0.26 0.00140678 0.0011628 0.0543146 0.0480159 50 5412 21 3.44922e+06 3.44922e+06 295697. 2956.97 1.95 0.592 0.515094 5008 17 2235 9486 303768 54879 6.03327 6.03327 -52.0359 -6.03327 0 0 379824. 3798.24 0.13 0.22 0.132651 0.122077 - k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 19.67 vpr 86.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 250 29 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89068 29 106 4782 4888 1 2018 385 18 18 324 clb auto 50.4 MiB 2.98 13367 87.0 MiB 1.85 0.02 4.41744 -3218.16 -4.41744 4.41744 1.17 0.00920776 0.00777137 0.768221 0.65416 52 21404 42 1.37969e+07 1.34735e+07 1.12378e+06 3468.47 8.23 3.56963 3.04018 19652 14 6853 19004 673661 132004 5.22925 5.22925 -3717.86 -5.22925 0 0 1.48031e+06 4568.86 0.63 0.74 0.565359 0.513704 - k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 19.62 vpr 85.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 227 38 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87788 38 304 4422 4726 1 2038 569 18 18 324 clb auto 48.7 MiB 3.02 13521 85.7 MiB 2.28 0.03 4.05195 -2683.77 -4.05195 4.05195 1.20 0.00879333 0.00742335 0.808497 0.691272 60 24051 35 1.37969e+07 1.22339e+07 1.30451e+06 4026.26 7.55 3.20625 2.77774 20556 15 6775 18084 642960 132900 4.99494 4.99494 -3097.71 -4.99494 0 0 1.63833e+06 5056.57 0.71 0.73 0.5748 0.525818 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 8.25 vpr 64.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 41 35 1006 1041 0 599 161 12 12 144 clb auto 26.8 MiB 1.38 6438 64.4 MiB 0.34 0.01 4.0708 -120.211 -4.0708 nan 0.41 0.00219697 0.00184625 0.121666 0.106253 62 11443 45 5.3894e+06 4.58099e+06 554770. 3852.57 3.85 0.762399 0.659067 9944 18 4437 22108 750725 132959 4.90358 nan -142.839 -4.90358 0 0 687181. 4772.09 0.24 0.41 0.18492 0.169236 - k6_frac_N10_40nm.xml spla.pre-vpr.blif common 20.16 vpr 76.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 213 16 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78344 16 46 2232 2278 0 1178 275 17 17 289 clb auto 39.0 MiB 2.90 15794 76.5 MiB 1.09 0.02 5.54336 -181.648 -5.54336 nan 0.99 0.00598087 0.00504309 0.403037 0.348209 74 24706 23 1.21262e+07 1.14794e+07 1.39325e+06 4820.95 10.01 2.33549 1.99923 24409 18 6831 37414 1494297 224108 6.57019 nan -215.648 -6.57019 0 0 1.74421e+06 6035.33 0.70 0.96 0.460856 0.418293 - k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 4.66 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 52 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 52 122 1461 1583 1 476 237 10 10 100 clb auto 26.3 MiB 0.68 2554 64.3 MiB 0.32 0.01 4.219 -1029.64 -4.219 4.219 0.27 0.00206969 0.00175768 0.11901 0.102795 48 5030 29 3.44922e+06 3.39532e+06 287248. 2872.48 1.82 0.75586 0.656448 4257 15 1421 3507 132476 31837 4.81288 4.81288 -1171.84 -4.81288 0 0 366588. 3665.88 0.12 0.15 0.116404 0.106982 +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_40nm.xml alu4.pre-vpr.blif common 4.75 vpr 64.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66040 14 8 926 934 0 490 100 11 11 121 clb auto 25.2 MiB 0.88 4540 5436 746 4365 325 64.5 MiB 0.14 0.01 4.4958 -31.528 -4.4958 nan 0.22 0.00269051 0.00235509 0.0723924 0.065535 52 7157 39 4.36541e+06 4.20373e+06 379421. 3135.71 1.97 0.690855 0.589901 12531 77429 -1 6624 17 3168 14393 437125 83566 4.8594 nan -34.0978 -4.8594 0 0 499620. 4129.09 0.10 0.24 0.06 -1 -1 0.10 0.121922 0.109158 +k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 7.80 vpr 66.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 38 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67788 38 3 1113 1116 0 662 144 13 13 169 clb auto 26.6 MiB 1.54 7370 11454 1699 8583 1172 66.2 MiB 0.23 0.01 5.6032 -16.0295 -5.6032 nan 0.33 0.00275482 0.00242692 0.106884 0.0963609 66 12625 26 6.52117e+06 5.55108e+06 710325. 4203.11 3.61 0.817941 0.70317 19379 142405 -1 11924 18 4624 23024 803122 126844 5.75407 nan -16.4608 -5.75407 0 0 879032. 5201.38 0.18 0.39 0.11 -1 -1 0.18 0.166312 0.14818 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 6.51 vpr 64.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66024 9 19 897 916 0 556 110 12 12 144 clb auto 25.2 MiB 1.39 6155 6948 1152 5347 449 64.5 MiB 0.17 0.01 4.85584 -79.8781 -4.85584 nan 0.27 0.00237621 0.00210092 0.0795533 0.0721333 64 10771 28 5.3894e+06 4.41931e+06 575115. 3993.85 2.93 0.728841 0.623494 16224 115365 -1 9685 19 3941 19896 705511 115372 5.17072 nan -84.2996 -5.17072 0 0 716128. 4973.11 0.14 0.31 0.09 -1 -1 0.14 0.135737 0.121121 +k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 6.82 vpr 65.65 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67224 229 197 1364 1561 1 539 497 16 16 256 io auto 26.1 MiB 0.79 3888 151956 45040 98819 8097 65.6 MiB 0.75 0.01 3.01736 -656.133 -3.01736 3.01736 0.55 0.00417928 0.00388998 0.341259 0.317282 38 7443 37 1.05632e+07 3.82647e+06 667532. 2607.55 2.64 1.415 1.29599 25328 137766 -1 6882 14 1605 4348 206877 47610 3.0708 3.0708 -728.475 -3.0708 0 0 843755. 3295.92 0.20 0.21 0.11 -1 -1 0.20 0.154931 0.143977 +k6_frac_N10_40nm.xml clma.pre-vpr.blif common 31.66 vpr 89.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 62 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91388 62 82 3672 3754 1 2344 451 20 20 400 clb auto 45.3 MiB 3.95 29194 126595 33709 86071 6815 89.2 MiB 2.28 0.03 7.83344 -342.752 -7.83344 7.83344 0.92 0.0100177 0.00886659 0.857361 0.741308 92 46721 44 1.74617e+07 1.65455e+07 2.37849e+06 5946.23 18.28 3.97352 3.38216 54288 506964 -1 42503 16 14653 63396 2356990 367690 8.12752 8.12752 -355.073 -8.12752 0 0 3.01539e+06 7538.48 0.69 1.19 0.43 -1 -1 0.69 0.511744 0.462774 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 7.12 vpr 62.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 256 245 954 1199 0 578 552 18 18 324 io auto 23.8 MiB 0.33 4966 131806 34568 89483 7755 62.9 MiB 0.48 0.01 3.70962 -712.314 -3.70962 nan 0.74 0.00414551 0.00395387 0.186169 0.176197 36 9086 34 1.37969e+07 2.74859e+06 824466. 2544.65 3.31 1.24102 1.16598 31748 166456 -1 8145 16 2076 4578 247499 55677 4.28288 nan -799.816 -4.28288 0 0 1.01518e+06 3133.28 0.26 0.23 0.13 -1 -1 0.26 0.156872 0.14849 +k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 3.87 vpr 64.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 65 64 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65904 64 39 1371 1410 1 542 168 11 11 121 clb auto 25.2 MiB 0.48 3387 16373 2957 12425 991 64.4 MiB 0.23 0.01 5.33717 -1012.06 -5.33717 5.33717 0.22 0.00291587 0.00263997 0.121115 0.109984 46 5978 20 4.36541e+06 3.50311e+06 343362. 2837.71 1.41 0.597762 0.523358 12051 69045 -1 5146 15 1964 5478 158754 33013 5.81148 5.81148 -1104.11 -5.81148 0 0 440296. 3638.81 0.09 0.18 0.06 -1 -1 0.09 0.122268 0.110374 +k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 10.46 vpr 65.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 70 229 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67312 229 197 1362 1559 1 570 496 16 16 256 io auto 26.2 MiB 0.94 4585 165304 49025 107137 9142 65.7 MiB 0.87 0.01 3.10283 -686.218 -3.10283 3.10283 0.55 0.00440835 0.0040858 0.392973 0.365233 34 9041 35 1.05632e+07 3.77258e+06 613832. 2397.78 5.94 1.7491 1.60157 24564 122629 -1 7970 15 1915 4990 281238 63267 3.70768 3.70768 -756.66 -3.70768 0 0 751777. 2936.63 0.21 0.24 0.11 -1 -1 0.21 0.164797 0.15335 +k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 13.78 vpr 77.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 161 131 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79272 131 114 3421 3535 1 1168 406 15 15 225 clb auto 36.3 MiB 3.29 10160 93530 25863 63124 4543 77.4 MiB 1.04 0.02 7.58521 -4229.27 -7.58521 7.58521 0.47 0.00681887 0.0060738 0.483787 0.429172 62 17318 36 9.10809e+06 8.67693e+06 909814. 4043.62 5.50 2.14101 1.8583 25483 182909 -1 15258 16 4942 20250 696601 116792 7.60811 7.60811 -4446.67 -7.60811 0 0 1.12687e+06 5008.33 0.25 0.52 0.14 -1 -1 0.25 0.332685 0.300154 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 26.38 vpr 82.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 285 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83988 10 10 2659 2669 0 1401 305 19 19 361 clb auto 39.4 MiB 4.50 25941 47501 11839 33920 1742 82.0 MiB 1.05 0.02 6.51363 -63.125 -6.51363 nan 0.83 0.00815917 0.00686806 0.445687 0.382825 90 44429 42 1.55754e+07 1.53598e+07 2.09179e+06 5794.43 14.64 2.73792 2.30803 48131 439069 -1 39612 19 10083 62912 2759594 360291 6.79856 nan -65.1978 -6.79856 0 0 2.60973e+06 7229.16 0.60 1.17 0.37 -1 -1 0.60 0.421295 0.376006 +k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 5.76 vpr 62.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 8 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 8 63 761 824 0 435 134 10 10 100 clb auto 23.8 MiB 0.76 4014 9710 1704 7314 692 62.9 MiB 0.16 0.00 3.75572 -169.726 -3.75572 nan 0.17 0.00208483 0.00185881 0.0738386 0.0671778 62 6635 29 3.44922e+06 3.39532e+06 366588. 3665.88 3.12 0.826205 0.709947 10808 71624 -1 6116 15 2439 10242 331401 61427 4.36433 nan -187.408 -4.36433 0 0 454102. 4541.02 0.09 0.18 0.06 -1 -1 0.09 0.0960449 0.0869805 +k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 19.39 vpr 77.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 169 20 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79644 20 116 3175 3291 1 1343 305 15 15 225 clb auto 36.4 MiB 3.14 14309 61865 15386 41962 4517 77.8 MiB 0.99 0.02 8.94586 -4514.97 -8.94586 8.94586 0.47 0.00664227 0.00593976 0.462715 0.412777 84 23545 27 9.10809e+06 9.10809e+06 1.17394e+06 5217.51 11.07 3.11664 2.70562 28843 248089 -1 20679 14 6058 24388 1043623 169310 9.40485 9.40485 -4707.1 -9.40485 0 0 1.49163e+06 6629.45 0.32 0.55 0.21 -1 -1 0.32 0.299629 0.272019 +k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 6.95 vpr 63.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 14 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 14 14 828 842 0 475 99 11 11 121 clb auto 24.3 MiB 0.91 4503 7167 1163 5436 568 63.6 MiB 0.17 0.00 4.27418 -57.174 -4.27418 nan 0.22 0.00222792 0.00198385 0.0870609 0.0789648 56 7808 29 4.36541e+06 3.82647e+06 409660. 3385.62 3.92 0.955525 0.817335 12771 81981 -1 7041 18 3260 15213 511376 89461 4.64181 nan -60.1449 -4.64181 0 0 523260. 4324.46 0.10 0.25 0.07 -1 -1 0.10 0.121252 0.108843 +k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 25.18 vpr 82.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 272 16 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84484 16 40 2839 2879 0 1511 328 19 19 361 clb auto 39.9 MiB 3.48 23474 61348 15718 43195 2435 82.5 MiB 1.20 0.02 6.39129 -239.535 -6.39129 nan 0.82 0.00760136 0.00646815 0.472649 0.408659 86 38675 34 1.55754e+07 1.46592e+07 2.00874e+06 5564.38 14.28 3.16721 2.67858 47411 425437 -1 35089 17 9872 54697 2130011 304209 6.65044 nan -240.312 -6.65044 0 0 2.53507e+06 7022.34 0.56 0.98 0.35 -1 -1 0.56 0.397886 0.356682 +k6_frac_N10_40nm.xml s298.pre-vpr.blif common 4.12 vpr 62.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 4 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 4 6 726 732 1 398 73 10 10 100 clb auto 23.2 MiB 0.75 3666 3417 417 2860 140 62.2 MiB 0.11 0.00 6.02354 -48.3456 -6.02354 6.02354 0.18 0.00201694 0.00183365 0.0626085 0.0572741 50 5820 31 3.44922e+06 3.39532e+06 295697. 2956.97 1.63 0.53661 0.462064 10016 58256 -1 5144 15 2315 9199 280618 50632 6.26562 6.26562 -52.0008 -6.26562 0 0 379824. 3798.24 0.08 0.17 0.05 -1 -1 0.08 0.0972111 0.0881692 +k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 15.85 vpr 87.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 249 29 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89280 29 106 4782 4888 1 2019 384 18 18 324 clb auto 44.7 MiB 2.35 13216 107799 27485 70375 9939 87.2 MiB 1.53 0.02 5.18654 -3584.37 -5.18654 5.18654 0.72 0.00820093 0.00716198 0.7235 0.630423 52 21960 50 1.37969e+07 1.34196e+07 1.12378e+06 3468.47 6.68 2.99225 2.56134 35300 236012 -1 19626 15 6767 19136 685005 132226 5.32162 5.32162 -3691.42 -5.32162 0 0 1.48031e+06 4568.86 0.34 0.58 0.19 -1 -1 0.34 0.406682 0.365814 +k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 16.40 vpr 86.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 226 38 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88452 38 304 4422 4726 1 2052 568 18 18 324 clb auto 43.6 MiB 2.25 13975 176893 52423 113746 10724 86.4 MiB 1.91 0.03 4.9343 -2945.33 -4.9343 4.9343 0.73 0.00969334 0.00838775 0.813742 0.706473 60 25004 43 1.37969e+07 1.218e+07 1.30451e+06 4026.26 6.72 2.8783 2.49073 36916 268072 -1 20989 21 6867 18700 649546 132224 5.09646 5.09646 -3105.32 -5.09646 0 0 1.63833e+06 5056.57 0.40 0.77 0.22 -1 -1 0.40 0.553873 0.495694 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 8.76 vpr 65.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66676 41 35 1006 1041 0 604 160 12 12 144 clb auto 25.5 MiB 1.20 6526 13180 2280 9516 1384 65.1 MiB 0.22 0.01 4.5556 -135.416 -4.5556 nan 0.27 0.00276105 0.00245221 0.101939 0.092468 64 11365 46 5.3894e+06 4.5271e+06 575115. 3993.85 5.04 1.12569 0.968264 16224 115365 -1 10143 18 4137 19881 679868 115960 4.93645 nan -144.738 -4.93645 0 0 716128. 4973.11 0.14 0.30 0.09 -1 -1 0.14 0.134899 0.121301 +k6_frac_N10_40nm.xml spla.pre-vpr.blif common 16.32 vpr 76.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 216 16 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78668 16 46 2232 2278 0 1170 278 17 17 289 clb auto 35.3 MiB 2.69 15884 45628 10574 32142 2912 76.8 MiB 0.90 0.02 5.95671 -204.452 -5.95671 nan 0.66 0.00655055 0.00559031 0.393901 0.343227 74 25546 32 1.21262e+07 1.16411e+07 1.39325e+06 4820.95 7.80 2.00641 1.71174 35379 286977 -1 24647 19 7675 42760 1737904 249467 6.14143 nan -217.643 -6.14143 0 0 1.74421e+06 6035.33 0.38 0.81 0.26 -1 -1 0.38 0.340644 0.303738 +k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 3.98 vpr 65.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 61 52 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66596 52 122 1461 1583 1 474 235 10 10 100 clb auto 26.0 MiB 0.54 2490 35711 8852 25144 1715 65.0 MiB 0.32 0.01 4.73051 -1125.66 -4.73051 4.73051 0.18 0.00299119 0.00271471 0.1633 0.148553 46 4691 25 3.44922e+06 3.28753e+06 276332. 2763.32 1.35 0.707889 0.622607 9816 55112 -1 4036 15 1411 3526 118896 27892 5.08546 5.08546 -1209.63 -5.08546 0 0 354105. 3541.05 0.07 0.15 0.04 -1 -1 0.07 0.117472 0.106373 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/config.txt index ebda56d65f9..9fc96508f60 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/config.txt @@ -16,7 +16,7 @@ archs_dir=arch/timing/fixed_size # circuit_list_add=adder_001bits.v # circuit_list_add=adder_002bits.v circuit_list_add=adder_003bits.v -circuit_list_add=adder_004bits.v +# circuit_list_add=adder_004bits.v circuit_list_add=adder_005bits.v circuit_list_add=adder_006bits.v circuit_list_add=adder_007bits.v diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt index b1d6bdc1f04..2579b02e71a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,211 @@ 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 adder_003bits.v common 2.51 vpr 60.38 MiB 0.03 5768 -1 -1 1 0.06 -1 -1 31688 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61824 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.8 MiB 0.01 50 298 76 216 6 60.4 MiB 0.01 0.00 0.701249 -6.72129 -0.701249 0.701249 0.63 7.8233e-05 6.9941e-05 0.00178144 0.00158683 20 111 5 6.55708e+06 24110 394039. 1363.46 0.44 0.00409794 0.00368897 19870 87366 -1 112 7 31 31 1537 535 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.14 0.01 0.06 -1 -1 0.14 0.00228777 0.0020842 10 4 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.52 vpr 60.50 MiB 0.01 5728 -1 -1 2 0.05 -1 -1 31844 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61952 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.9 MiB 0.01 72 396 78 308 10 60.5 MiB 0.01 0.00 0.900447 -9.59862 -0.900447 0.900447 0.63 8.6191e-05 7.8103e-05 0.00197393 0.00179135 20 170 8 6.55708e+06 24110 394039. 1363.46 0.44 0.0051719 0.0046466 19870 87366 -1 175 6 62 67 3812 1117 0.819447 0.819447 -10.677 -0.819447 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00274377 0.00248632 13 6 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.67 vpr 60.70 MiB 0.01 5836 -1 -1 2 0.05 -1 -1 31856 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62160 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 72 444 121 288 35 60.7 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.66 0.000123561 0.000112673 0.00255951 0.00232796 22 204 10 6.55708e+06 24110 420624. 1455.45 0.53 0.0151535 0.0127839 20158 92377 -1 156 10 82 85 4128 1402 0.819447 0.819447 -12.0716 -0.819447 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00336148 0.00296954 16 7 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.85 vpr 60.48 MiB 0.03 5752 -1 -1 3 0.05 -1 -1 31912 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61928 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.9 MiB 0.01 91 855 163 648 44 60.5 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.65 0.0001491 0.000136362 0.00443541 0.00405993 24 290 10 6.55708e+06 36165 448715. 1552.65 0.56 0.0201013 0.0171004 20734 103517 -1 237 9 111 124 7071 2166 1.50711 1.50711 -17.1728 -1.50711 0 0 554710. 1919.41 0.15 0.01 0.09 -1 -1 0.15 0.00392995 0.00345491 19 9 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.88 vpr 60.57 MiB 0.03 5728 -1 -1 3 0.05 -1 -1 32332 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.01 99 1014 271 604 139 60.6 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.65 0.000144848 0.000133009 0.004309 0.00394922 26 398 20 6.55708e+06 36165 477104. 1650.88 0.60 0.023269 0.01964 21022 109990 -1 272 8 150 171 7737 2724 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.16 0.01 0.11 -1 -1 0.16 0.00390435 0.0034638 23 10 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.66 vpr 60.57 MiB 0.02 5800 -1 -1 3 0.06 -1 -1 32040 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.8 MiB 0.06 161 628 145 480 3 60.6 MiB 0.01 0.00 1.70831 -22.396 -1.70831 1.70831 0.65 0.000181793 0.000168122 0.00292564 0.00270391 20 373 18 6.55708e+06 48220 394039. 1363.46 0.45 0.0108414 0.00951698 19870 87366 -1 332 10 141 157 6947 2096 1.70831 1.70831 -22.553 -1.70831 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00538985 0.0047002 25 14 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.90 vpr 60.71 MiB 0.01 5748 -1 -1 4 0.06 -1 -1 31928 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62164 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.2 MiB 0.02 142 1229 224 959 46 60.7 MiB 0.02 0.00 1.58811 -24.8435 -1.58811 1.58811 0.65 0.000225508 0.000208897 0.00584583 0.00538251 26 433 14 6.55708e+06 48220 477104. 1650.88 0.62 0.0299412 0.0253474 21022 109990 -1 380 12 196 260 11751 3722 1.59011 1.59011 -25.8906 -1.59011 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00573217 0.00499572 29 13 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.87 vpr 60.69 MiB 0.03 5856 -1 -1 4 0.07 -1 -1 32004 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 22.2 MiB 0.03 252 2965 1025 1339 601 60.7 MiB 0.02 0.00 1.68077 -28.9367 -1.68077 1.68077 0.64 0.000207824 0.00019209 0.0107856 0.00995365 24 594 13 6.55708e+06 60275 448715. 1552.65 0.59 0.0352373 0.0303719 20734 103517 -1 554 14 206 272 22917 5650 1.46791 1.46791 -30.8716 -1.46791 0 0 554710. 1919.41 0.16 0.02 0.12 -1 -1 0.16 0.00697795 0.00602941 33 17 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.89 vpr 60.69 MiB 0.03 5836 -1 -1 5 0.06 -1 -1 32540 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 22.2 MiB 0.02 278 3032 1045 1570 417 60.7 MiB 0.03 0.00 2.03736 -35.0243 -2.03736 2.03736 0.64 0.000257423 0.000237469 0.0115634 0.0106791 26 659 17 6.55708e+06 60275 477104. 1650.88 0.61 0.0369173 0.031842 21022 109990 -1 581 12 230 328 22222 5685 2.03937 2.03937 -36.8236 -2.03937 0 0 585099. 2024.56 0.16 0.02 0.11 -1 -1 0.16 0.00650193 0.00565059 35 16 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.36 vpr 60.73 MiB 0.01 5796 -1 -1 5 0.06 -1 -1 31836 -1 -1 6 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 62188 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 22.3 MiB 0.02 261 1738 345 1379 14 60.7 MiB 0.02 0.00 2.11777 -37.2851 -2.11777 2.11777 0.64 0.000242956 0.000224674 0.00619192 0.00572665 28 714 10 6.55708e+06 72330 500653. 1732.36 2.07 0.0489346 0.0413803 21310 115450 -1 580 11 224 306 19281 5020 1.7847 1.7847 -37.4656 -1.7847 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00672584 0.00589076 40 20 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.07 vpr 60.81 MiB 0.01 5964 -1 -1 5 0.07 -1 -1 32072 -1 -1 7 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 62268 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.3 MiB 0.02 361 1875 344 1504 27 60.8 MiB 0.02 0.00 1.70831 -38.0204 -1.70831 1.70831 0.64 0.00027381 0.000254101 0.00676226 0.0062794 26 785 27 6.55708e+06 84385 477104. 1650.88 0.73 0.0488077 0.0415323 21022 109990 -1 675 10 237 340 18614 4888 1.61564 1.61564 -40.3003 -1.61564 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00709087 0.00623777 42 24 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 60.81 MiB 0.02 5796 -1 -1 6 0.06 -1 -1 31740 -1 -1 7 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 62272 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.3 MiB 0.04 444 2495 549 1721 225 60.8 MiB 0.02 0.00 2.39596 -47.6713 -2.39596 2.39596 0.64 0.000291843 0.000270602 0.00838045 0.0077761 26 907 16 6.55708e+06 84385 477104. 1650.88 0.62 0.0401185 0.0344513 21022 109990 -1 838 12 239 341 22464 5496 2.2243 2.2243 -49.1418 -2.2243 0 0 585099. 2024.56 0.17 0.02 0.11 -1 -1 0.17 0.00810516 0.00706014 45 23 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.10 vpr 60.83 MiB 0.03 5876 -1 -1 6 0.06 -1 -1 31756 -1 -1 9 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62288 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 22.3 MiB 0.12 378 5941 1874 2717 1350 60.8 MiB 0.04 0.00 2.19676 -46.103 -2.19676 2.19676 0.63 0.000368713 0.000341861 0.0187097 0.0173553 28 910 12 6.55708e+06 108495 500653. 1732.36 0.78 0.0547701 0.0475579 21310 115450 -1 831 11 376 558 32554 8498 2.07656 2.07656 -49.0102 -2.07656 0 0 612192. 2118.31 0.17 0.02 0.07 -1 -1 0.17 0.00857879 0.00751845 50 27 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.19 vpr 60.95 MiB 0.03 5824 -1 -1 7 0.06 -1 -1 31836 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 22.4 MiB 0.03 565 6270 1776 3822 672 60.9 MiB 0.05 0.00 3.08362 -63.5746 -3.08362 3.08362 0.63 0.000384404 0.00035665 0.0223606 0.0207758 30 1078 12 6.55708e+06 84385 526063. 1820.29 0.73 0.0642799 0.0560957 21886 126133 -1 998 13 303 449 26508 6458 2.84322 2.84322 -62.7775 -2.84322 0 0 666494. 2306.21 0.21 0.03 0.11 -1 -1 0.21 0.0118703 0.0103099 51 26 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.19 vpr 61.12 MiB 0.03 5972 -1 -1 7 0.07 -1 -1 32416 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 22.5 MiB 0.18 554 5144 1328 3388 428 61.1 MiB 0.04 0.00 2.78339 -65.1521 -2.78339 2.78339 0.63 0.000436208 0.00040536 0.0176434 0.0163838 26 1306 16 6.55708e+06 96440 477104. 1650.88 0.77 0.0655914 0.0570889 21022 109990 -1 1190 11 396 566 39406 9328 2.64602 2.64602 -69.1724 -2.64602 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0099263 0.00873413 59 35 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.17 vpr 61.10 MiB 0.03 5880 -1 -1 8 0.07 -1 -1 31992 -1 -1 10 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62564 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 22.7 MiB 0.15 447 7224 1591 4752 881 61.1 MiB 0.05 0.00 3.28422 -74.213 -3.28422 3.28422 0.64 0.00047421 0.000440946 0.0239498 0.0222625 26 1153 17 6.55708e+06 120550 477104. 1650.88 0.67 0.070125 0.0616521 21022 109990 -1 988 13 413 556 34410 9054 2.92362 2.92362 -72.9932 -2.92362 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.0125504 0.0109522 67 37 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.07 vpr 61.21 MiB 0.02 6084 -1 -1 9 0.07 -1 -1 32268 -1 -1 11 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 22.7 MiB 0.05 733 10219 2597 6052 1570 61.2 MiB 0.06 0.00 3.23076 -86.0719 -3.23076 3.23076 0.63 0.00043351 0.000402155 0.0275242 0.0255513 26 1549 12 6.55708e+06 132605 477104. 1650.88 0.65 0.0739214 0.0654238 21022 109990 -1 1353 16 472 658 45777 10612 3.1381 3.1381 -89.3858 -3.1381 0 0 585099. 2024.56 0.24 0.04 0.10 -1 -1 0.24 0.0159154 0.0140296 74 40 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.49 vpr 61.52 MiB 0.01 6052 -1 -1 10 0.07 -1 -1 32588 -1 -1 11 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63000 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 23.1 MiB 0.24 533 10873 3248 5447 2178 61.5 MiB 0.08 0.00 3.72533 -95.3298 -3.72533 3.72533 0.63 0.000549556 0.000509726 0.0333018 0.0309075 28 1427 44 6.55708e+06 132605 500653. 1732.36 0.81 0.105563 0.0930731 21310 115450 -1 1256 12 528 701 45892 12260 3.58796 3.58796 -98.6308 -3.58796 0 0 612192. 2118.31 0.20 0.04 0.11 -1 -1 0.20 0.0130757 0.0115871 79 43 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.61 vpr 61.63 MiB 0.02 6056 -1 -1 11 0.08 -1 -1 32604 -1 -1 14 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63112 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 23.0 MiB 0.24 728 11468 2977 6953 1538 61.6 MiB 0.08 0.00 4.49954 -124.266 -4.49954 4.49954 0.66 0.000572876 0.000533883 0.032729 0.0304463 30 1687 32 6.55708e+06 168770 526063. 1820.29 0.91 0.114573 0.101415 21886 126133 -1 1419 13 569 828 47790 12858 4.09974 4.09974 -124.39 -4.09974 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0171017 0.015168 93 57 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.92 vpr 61.71 MiB 0.02 6200 -1 -1 13 0.10 -1 -1 32124 -1 -1 15 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 23.2 MiB 0.41 1038 16493 5318 8597 2578 61.7 MiB 0.09 0.00 4.53259 -150.281 -4.53259 4.53259 0.64 0.000643715 0.000599629 0.0409332 0.0381518 28 2173 41 6.55708e+06 180825 500653. 1732.36 1.04 0.136214 0.120605 21310 115450 -1 1884 12 621 817 57982 14048 4.42276 4.42276 -153.676 -4.42276 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0156487 0.013988 107 62 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.24 vpr 62.60 MiB 0.03 6296 -1 -1 19 0.12 -1 -1 32440 -1 -1 24 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 23.8 MiB 0.29 1334 34950 10414 20834 3702 62.6 MiB 0.18 0.00 7.26745 -288.28 -7.26745 7.26745 0.63 0.00097962 0.000913283 0.0760972 0.0709664 28 3171 27 6.55708e+06 289320 500653. 1732.36 1.23 0.206918 0.186572 21310 115450 -1 2696 11 990 1365 95731 23807 6.78665 6.78665 -282.016 -6.78665 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0249715 0.022515 160 98 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.41 vpr 63.51 MiB 0.04 6624 -1 -1 26 0.11 -1 -1 32520 -1 -1 31 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1718 54945 15410 32877 6658 63.5 MiB 0.26 0.00 9.81484 -466.455 -9.81484 9.81484 0.63 0.00135053 0.0012653 0.113027 0.105839 48 3235 34 6.55708e+06 373705 816265. 2824.45 4.22 0.553116 0.497642 25054 189045 -1 3027 28 1189 1684 209050 94655 9.09364 9.09364 -438.041 -9.09364 0 0 986792. 3414.50 0.26 0.14 0.17 -1 -1 0.26 0.071187 0.063916 213 132 -1 -1 -1 -1 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.44 abc 29.25 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 29948 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22676 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.45 abc 29.45 MiB 0.03 6088 -1 -1 1 0.02 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.41 abc 29.29 MiB 0.02 5980 -1 -1 1 0.02 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22732 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.46 abc 29.32 MiB 0.06 6116 -1 -1 1 0.02 -1 -1 30028 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.42 abc 29.35 MiB 0.02 6044 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22716 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.41 abc 29.33 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30032 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.42 abc 29.28 MiB 0.02 6104 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22860 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.42 abc 29.36 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22680 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.41 abc 29.32 MiB 0.02 6068 -1 -1 1 0.02 -1 -1 30024 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23012 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.45 abc 29.46 MiB 0.02 6032 -1 -1 1 0.02 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22852 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.39 abc 29.29 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22904 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.36 MiB 0.03 6152 -1 -1 1 0.02 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22896 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.38 abc 29.29 MiB 0.02 6216 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.41 abc 29.60 MiB 0.03 6148 -1 -1 1 0.02 -1 -1 30308 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.42 abc 29.62 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30332 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22820 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.43 abc 29.53 MiB 0.02 6172 -1 -1 1 0.03 -1 -1 30236 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22936 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.43 abc 29.65 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30360 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22892 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.45 abc 29.72 MiB 0.04 6264 -1 -1 1 0.03 -1 -1 30432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.41 abc 29.65 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23412 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.47 abc 29.64 MiB 0.01 6356 -1 -1 1 0.03 -1 -1 30348 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23160 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.63 MiB 0.02 6496 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23504 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 -fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.53 abc 29.67 MiB 0.03 6752 -1 -1 1 0.03 -1 -1 30384 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23848 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.41 abc 29.36 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22392 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.36 abc 29.30 MiB 0.01 6200 -1 -1 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22384 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.37 abc 29.31 MiB 0.02 6088 -1 -1 1 0.02 -1 -1 30016 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22508 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.37 abc 29.37 MiB 0.01 6152 -1 -1 1 0.03 -1 -1 30076 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.43 abc 29.50 MiB 0.03 5996 -1 -1 1 0.02 -1 -1 30208 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22420 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.42 abc 29.52 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22444 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.40 abc 29.28 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22520 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.39 abc 29.34 MiB 0.02 6168 -1 -1 1 0.02 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22472 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.42 abc 29.35 MiB 0.01 6124 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22524 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.42 abc 29.34 MiB 0.01 6024 -1 -1 1 0.03 -1 -1 30040 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22608 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.41 abc 29.30 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22504 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.52 MiB 0.02 6092 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22740 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.36 abc 29.41 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 30120 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22544 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.42 abc 29.53 MiB 0.02 6164 -1 -1 1 0.02 -1 -1 30240 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22868 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.33 abc 29.54 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 30248 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22696 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.35 abc 29.63 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30340 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.44 abc 29.59 MiB 0.01 6240 -1 -1 1 0.03 -1 -1 30300 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22728 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.52 abc 29.61 MiB 0.03 6272 -1 -1 1 0.03 -1 -1 30316 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22844 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.39 abc 29.63 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23116 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.38 abc 29.61 MiB 0.03 6268 -1 -1 1 0.02 -1 -1 30320 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22944 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.62 MiB 0.02 6544 -1 -1 1 0.03 -1 -1 30328 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23076 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 -fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.45 abc 29.82 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23440 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.64 vpr 60.75 MiB 0.02 5940 -1 -1 1 0.02 -1 -1 29912 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62208 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.2 MiB 0.01 56 223 48 166 9 60.8 MiB 0.00 0.00 0.770048 -7.07635 -0.770048 0.770048 0.64 5.7054e-05 4.9685e-05 0.00116196 0.00102006 20 108 7 6.64007e+06 25116 394039. 1363.46 0.45 0.00406712 0.00363286 20530 87850 -1 104 4 20 20 1157 330 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.18 0.00 0.09 -1 -1 0.18 0.00162848 0.00152727 10 2 5 5 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.70 vpr 60.82 MiB 0.01 6084 -1 -1 1 0.03 -1 -1 29948 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62280 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.01 47 376 71 284 21 60.8 MiB 0.01 0.00 0.792048 -9.53833 -0.792048 0.792048 0.70 0.000103916 9.413e-05 0.00227711 0.00205846 20 155 13 6.64007e+06 25116 394039. 1363.46 0.52 0.00633052 0.00557166 20530 87850 -1 146 11 65 65 4138 1278 1.02145 1.02145 -10.9042 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00334457 0.00296098 13 2 6 6 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.62 vpr 60.79 MiB 0.03 6032 -1 -1 1 0.02 -1 -1 30096 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62252 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 63 419 85 325 9 60.8 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 0.64 0.000104643 9.5583e-05 0.00208821 0.00190656 22 226 12 6.64007e+06 25116 420624. 1455.45 0.51 0.0141196 0.011857 20818 92861 -1 195 15 135 135 5924 1892 0.923248 0.923248 -13.4284 -0.923248 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00416611 0.00361402 16 2 7 7 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.81 vpr 60.79 MiB 0.01 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62248 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.02 113 727 127 584 16 60.8 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.72 0.000121988 0.000111861 0.0031635 0.00289369 26 251 10 6.64007e+06 37674 477104. 1650.88 0.59 0.0163143 0.013821 21682 110474 -1 241 10 93 93 6258 1676 0.803048 0.803048 -15.3843 -0.803048 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.00372128 0.0032873 19 2 8 8 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.83 vpr 60.88 MiB 0.01 6004 -1 -1 1 0.02 -1 -1 29980 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62344 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.02 103 938 201 719 18 60.9 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.64 0.000165104 0.000151572 0.00440018 0.00405035 26 307 12 6.64007e+06 37674 477104. 1650.88 0.58 0.0198738 0.016881 21682 110474 -1 264 10 159 159 7367 2381 1.04145 1.04145 -18.7822 -1.04145 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00418514 0.00369326 22 2 9 9 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.86 vpr 61.16 MiB 0.03 6124 -1 -1 1 0.02 -1 -1 30144 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.7 MiB 0.02 174 858 170 673 15 61.2 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.67 0.000158832 0.000146554 0.00345142 0.00318281 26 361 14 6.64007e+06 50232 477104. 1650.88 0.62 0.0226356 0.0191262 21682 110474 -1 348 15 139 139 8493 2401 1.09645 1.09645 -23.2864 -1.09645 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00565725 0.00490607 25 2 10 10 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.96 vpr 61.04 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 30056 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62500 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.6 MiB 0.03 216 1021 207 713 101 61.0 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.67 0.000208756 0.000193226 0.00467284 0.00431874 26 453 9 6.64007e+06 50232 477104. 1650.88 0.66 0.0203026 0.0173873 21682 110474 -1 430 11 129 129 8914 2350 0.976248 0.976248 -25.7696 -0.976248 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00526413 0.00461704 28 2 11 11 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.94 vpr 61.06 MiB 0.02 5972 -1 -1 1 0.02 -1 -1 30068 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.03 214 1623 338 1262 23 61.1 MiB 0.02 0.00 1.21836 -25.661 -1.21836 1.21836 0.64 0.000201527 0.000186586 0.005828 0.00539649 28 435 13 6.64007e+06 62790 500653. 1732.36 0.62 0.0273561 0.023338 21970 115934 -1 423 6 113 113 7584 2083 0.867048 0.867048 -26.4126 -0.867048 0 0 612192. 2118.31 0.18 0.01 0.10 -1 -1 0.18 0.00425419 0.00382007 31 2 12 12 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.95 vpr 60.93 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30040 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62388 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.03 261 1536 299 1189 48 60.9 MiB 0.02 0.00 1.22936 -29.0547 -1.22936 1.22936 0.66 0.00021051 0.000194798 0.00538852 0.00499001 22 565 12 6.64007e+06 62790 420624. 1455.45 0.53 0.0286661 0.0243633 20818 92861 -1 510 14 235 235 17099 4766 0.998248 0.998248 -31.1505 -0.998248 0 0 500653. 1732.36 0.20 0.02 0.09 -1 -1 0.20 0.00691385 0.00597895 34 2 13 13 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 61.17 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30212 -1 -1 5 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 62636 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.7 MiB 0.05 303 1618 294 1276 48 61.2 MiB 0.02 0.00 1.24036 -31.9481 -1.24036 1.24036 0.64 0.000231175 0.000213977 0.00560327 0.0051964 26 651 12 6.64007e+06 62790 477104. 1650.88 0.62 0.0317461 0.0273743 21682 110474 -1 645 13 289 289 22692 5466 1.15145 1.15145 -36.3737 -1.15145 0 0 585099. 2024.56 0.17 0.02 0.13 -1 -1 0.17 0.00692078 0.00600881 37 2 14 14 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.93 vpr 61.27 MiB 0.02 6016 -1 -1 1 0.02 -1 -1 30096 -1 -1 6 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 62736 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.8 MiB 0.03 324 2231 466 1582 183 61.3 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.66 0.000240978 0.000223059 0.00709511 0.00656626 26 667 16 6.64007e+06 75348 477104. 1650.88 0.63 0.0353692 0.0303031 21682 110474 -1 637 9 201 201 14423 3637 0.976248 0.976248 -36.0679 -0.976248 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00636036 0.00559834 40 2 15 15 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.01 vpr 61.13 MiB 0.03 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 6 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 62596 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.6 MiB 0.02 332 2626 448 2137 41 61.1 MiB 0.02 0.00 1.26236 -36.933 -1.26236 1.26236 0.64 0.000258901 0.000240377 0.0079943 0.00742419 32 685 10 6.64007e+06 75348 554710. 1919.41 0.67 0.0342689 0.0297017 22834 132086 -1 655 16 350 350 24099 6153 0.998248 0.998248 -38.555 -0.998248 0 0 701300. 2426.64 0.19 0.02 0.12 -1 -1 0.19 0.00805388 0.0070684 43 2 16 16 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.02 vpr 61.25 MiB 0.03 6144 -1 -1 1 0.02 -1 -1 30304 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.7 MiB 0.03 430 4134 883 2967 284 61.2 MiB 0.04 0.00 1.62267 -42.2033 -1.62267 1.62267 0.66 0.000322715 0.000299779 0.013224 0.0122769 26 817 11 6.64007e+06 87906 477104. 1650.88 0.62 0.0422818 0.0369375 21682 110474 -1 816 12 321 321 24472 5936 1.20445 1.20445 -45.4834 -1.20445 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.012112 0.0105526 46 2 17 17 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.98 vpr 61.38 MiB 0.01 6172 -1 -1 1 0.03 -1 -1 30264 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62856 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.8 MiB 0.04 400 5507 1293 3991 223 61.4 MiB 0.04 0.00 1.63367 -44.5064 -1.63367 1.63367 0.64 0.000291081 0.000270084 0.0154438 0.0143365 26 881 17 6.64007e+06 87906 477104. 1650.88 0.62 0.0480119 0.0419197 21682 110474 -1 768 16 357 357 26049 6710 1.04025 1.04025 -44.3414 -1.04025 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.0113143 0.00978266 49 2 18 18 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.95 vpr 61.39 MiB 0.02 6072 -1 -1 1 0.03 -1 -1 30312 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62864 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.8 MiB 0.04 467 4001 820 3044 137 61.4 MiB 0.03 0.00 1.65567 -51.2944 -1.65567 1.65567 0.64 0.000259328 0.000235758 0.0112207 0.0104382 26 1045 16 6.64007e+06 100464 477104. 1650.88 0.62 0.047727 0.0413558 21682 110474 -1 931 11 386 386 29872 7060 1.22645 1.22645 -53.9411 -1.22645 0 0 585099. 2024.56 0.20 0.01 0.10 -1 -1 0.20 0.00529279 0.00474067 55 2 20 20 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.13 vpr 61.50 MiB 0.03 6252 -1 -1 1 0.03 -1 -1 30300 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.9 MiB 0.04 551 4966 1056 3737 173 61.5 MiB 0.04 0.00 1.67767 -59.443 -1.67767 1.67767 0.61 0.00036004 0.000335223 0.0134188 0.0125014 32 1078 19 6.64007e+06 100464 554710. 1919.41 0.71 0.0557602 0.0484539 22834 132086 -1 981 15 498 498 37438 8919 1.12945 1.12945 -56.3501 -1.12945 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0138908 0.0120278 61 2 22 22 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.15 vpr 61.55 MiB 0.01 6296 -1 -1 1 0.03 -1 -1 30308 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 23.1 MiB 0.04 584 6760 1544 5011 205 61.6 MiB 0.05 0.00 1.69967 -63.9386 -1.69967 1.69967 0.64 0.000388774 0.00036212 0.0198359 0.0184574 28 1191 18 6.64007e+06 113022 500653. 1732.36 0.66 0.0643785 0.0565769 21970 115934 -1 1118 14 528 528 42588 10256 1.17345 1.17345 -62.9174 -1.17345 0 0 612192. 2118.31 0.18 0.03 0.13 -1 -1 0.18 0.0120803 0.0105928 67 2 24 24 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 vpr 61.61 MiB 0.02 6132 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.0 MiB 0.05 754 12711 4339 7261 1111 61.6 MiB 0.09 0.00 2.07098 -75.5183 -2.07098 2.07098 0.67 0.000516549 0.000475216 0.0364987 0.0339557 30 1319 18 6.64007e+06 125580 526063. 1820.29 0.75 0.091485 0.0811039 22546 126617 -1 1197 10 456 456 32568 7809 1.13725 1.13725 -68.9549 -1.13725 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0161491 0.0146901 73 2 26 26 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.18 vpr 61.81 MiB 0.02 6268 -1 -1 1 0.03 -1 -1 29972 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.3 MiB 0.07 781 12973 3128 9205 640 61.8 MiB 0.08 0.00 2.11498 -88.6474 -2.11498 2.11498 0.63 0.00057425 0.000535294 0.0299399 0.0278951 28 1610 16 6.64007e+06 138138 500653. 1732.36 0.70 0.0812357 0.0722514 21970 115934 -1 1440 16 675 675 56617 12982 1.23625 1.23625 -81.6086 -1.23625 0 0 612192. 2118.31 0.21 0.04 0.11 -1 -1 0.21 0.0171077 0.0151214 85 2 30 30 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.32 vpr 62.25 MiB 0.02 6380 -1 -1 1 0.03 -1 -1 30396 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.6 MiB 0.05 1016 17401 7183 10118 100 62.2 MiB 0.10 0.00 2.50829 -106.175 -2.50829 2.50829 0.64 0.000570335 0.000531733 0.0391163 0.0364378 32 1805 17 6.64007e+06 163254 554710. 1919.41 0.76 0.102725 0.0916771 22834 132086 -1 1704 12 705 705 62663 14354 1.25625 1.25625 -92.5407 -1.25625 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0149432 0.0132416 97 2 34 34 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.62 vpr 62.81 MiB 0.02 6568 -1 -1 1 0.03 -1 -1 30516 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 24.0 MiB 0.07 1599 34969 13035 19621 2313 62.8 MiB 0.21 0.00 3.38291 -183.275 -3.38291 3.38291 0.66 0.00087185 0.00081747 0.071019 0.0665787 30 2865 25 6.64007e+06 238602 526063. 1820.29 0.87 0.180668 0.163879 22546 126617 -1 2528 17 979 979 83243 18564 1.50525 1.50525 -147.947 -1.50525 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0254108 0.0227919 145 2 50 50 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.93 vpr 63.53 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.7 MiB 0.09 1778 56234 21152 30749 4333 63.5 MiB 0.34 0.01 4.25753 -263.048 -4.25753 4.25753 0.65 0.00143797 0.00135245 0.109537 0.10293 32 3823 21 6.64007e+06 313950 554710. 1919.41 0.95 0.255285 0.233655 22834 132086 -1 3145 14 1364 1364 117954 27514 1.67725 1.67725 -193.473 -1.67725 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0339395 0.0307304 193 2 66 66 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.56 vpr 60.57 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 29936 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.0 MiB 0.01 53 208 48 152 8 60.6 MiB 0.00 0.00 0.770048 -7.13557 -0.770048 0.770048 0.67 7.0194e-05 6.3198e-05 0.00121824 0.00109391 20 105 7 6.65987e+06 25356 394039. 1363.46 0.46 0.00434455 0.00388801 20530 87850 -1 101 4 27 27 1472 482 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00211419 0.00194723 10 2 5 5 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.73 vpr 60.68 MiB 0.02 6056 -1 -1 1 0.03 -1 -1 30064 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62136 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.0 MiB 0.01 48 356 62 287 7 60.7 MiB 0.01 0.00 0.792048 -9.65853 -0.792048 0.792048 0.69 0.000100988 9.1023e-05 0.00228958 0.00206068 20 138 8 6.65987e+06 25356 394039. 1363.46 0.49 0.00603489 0.00539628 20530 87850 -1 136 7 59 59 3823 1204 0.901248 0.901248 -10.5436 -0.901248 0 0 477104. 1650.88 0.16 0.02 0.09 -1 -1 0.16 0.00508408 0.00445247 13 2 6 6 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.69 vpr 60.64 MiB 0.01 6048 -1 -1 1 0.02 -1 -1 30188 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62100 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.0 MiB 0.01 67 419 80 331 8 60.6 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.63 0.000123989 0.00011327 0.00247149 0.00225446 22 251 10 6.65987e+06 25356 420624. 1455.45 0.54 0.0143506 0.0120942 20818 92861 -1 198 8 93 93 4666 1476 1.04345 1.04345 -14.1496 -1.04345 0 0 500653. 1732.36 0.17 0.01 0.09 -1 -1 0.17 0.00311836 0.00279109 16 2 7 7 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.61 vpr 60.81 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 29932 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.01 108 791 160 615 16 60.8 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.65 0.00014443 0.000132406 0.00380301 0.00347454 20 313 15 6.65987e+06 38034 394039. 1363.46 0.45 0.00899405 0.00796735 20530 87850 -1 281 9 139 139 8104 2382 1.02145 1.02145 -16.3994 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.0040076 0.00352364 19 2 8 8 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.78 vpr 60.63 MiB 0.03 6084 -1 -1 1 0.02 -1 -1 30096 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62084 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.01 103 938 195 725 18 60.6 MiB 0.01 0.00 1.18536 -16.8309 -1.18536 1.18536 0.64 0.000139992 0.000128755 0.0039058 0.00359818 26 287 16 6.65987e+06 38034 477104. 1650.88 0.58 0.020877 0.0177356 21682 110474 -1 248 11 169 169 8146 2707 1.08545 1.08545 -19.412 -1.08545 0 0 585099. 2024.56 0.18 0.01 0.06 -1 -1 0.18 0.00442988 0.00389257 22 2 9 9 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.85 vpr 60.83 MiB 0.02 6140 -1 -1 1 0.02 -1 -1 29980 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62292 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.4 MiB 0.01 116 1180 259 878 43 60.8 MiB 0.01 0.00 1.19636 -19.5997 -1.19636 1.19636 0.65 0.000183371 0.000168841 0.00529865 0.00486947 28 333 16 6.65987e+06 50712 500653. 1732.36 0.62 0.0235706 0.0200056 21970 115934 -1 308 11 150 150 8272 2668 0.987248 0.987248 -22.2846 -0.987248 0 0 612192. 2118.31 0.18 0.02 0.10 -1 -1 0.18 0.00536488 0.00467309 25 2 10 10 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.79 vpr 60.80 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 30004 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62260 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.01 185 1229 259 944 26 60.8 MiB 0.02 0.00 1.20736 -22.7097 -1.20736 1.20736 0.65 0.000207691 0.000192241 0.00559207 0.00515681 24 425 11 6.65987e+06 50712 448715. 1552.65 0.54 0.017351 0.0149956 21394 104001 -1 406 13 165 165 11227 3104 1.10639 1.10639 -26.3209 -1.10639 0 0 554710. 1919.41 0.16 0.03 0.12 -1 -1 0.16 0.010994 0.0093014 28 2 11 11 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.88 vpr 61.06 MiB 0.03 6156 -1 -1 1 0.02 -1 -1 30000 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.02 281 1379 251 1074 54 61.1 MiB 0.02 0.00 1.21836 -28.8147 -1.21836 1.21836 0.65 0.000230226 0.000213324 0.00569793 0.0052778 26 553 11 6.65987e+06 63390 477104. 1650.88 0.60 0.0290014 0.0244234 21682 110474 -1 516 16 243 243 19764 4661 0.953189 0.953189 -28.9809 -0.953189 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0126333 0.0106948 31 2 12 12 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.72 vpr 60.95 MiB 0.02 5992 -1 -1 1 0.02 -1 -1 30060 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.02 256 1536 305 1173 58 60.9 MiB 0.02 0.00 1.22936 -28.8616 -1.22936 1.22936 0.65 0.000210529 0.000195075 0.00540677 0.00500413 22 571 9 6.65987e+06 63390 420624. 1455.45 0.55 0.0296563 0.0252741 20818 92861 -1 486 10 168 168 9773 2816 0.998248 0.998248 -30.9101 -0.998248 0 0 500653. 1732.36 0.14 0.02 0.09 -1 -1 0.14 0.00563844 0.00495521 34 2 13 13 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 60.93 MiB 0.03 5992 -1 -1 1 0.02 -1 -1 30216 -1 -1 5 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 62396 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.5 MiB 0.02 293 2293 540 1476 277 60.9 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.65 0.000222672 0.000206134 0.00743351 0.00686839 26 641 17 6.65987e+06 63390 477104. 1650.88 0.62 0.0357066 0.0304535 21682 110474 -1 609 15 298 298 24129 6114 1.02025 1.02025 -34.3265 -1.02025 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0130701 0.0110951 37 2 14 14 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.95 vpr 60.84 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30048 -1 -1 6 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 62304 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.3 MiB 0.02 378 2231 478 1580 173 60.8 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.64 0.000239386 0.000221863 0.00703961 0.0065221 30 672 13 6.65987e+06 76068 526063. 1820.29 0.67 0.0362539 0.0310859 22546 126617 -1 625 13 204 204 14424 3555 0.830189 0.830189 -33.8569 -0.830189 0 0 666494. 2306.21 0.19 0.02 0.12 -1 -1 0.19 0.00843239 0.00737555 40 2 15 15 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 61.00 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30256 -1 -1 6 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 62460 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.5 MiB 0.02 331 2442 412 1993 37 61.0 MiB 0.02 0.00 1.26236 -36.7774 -1.26236 1.26236 0.64 0.000255304 0.000237109 0.00755612 0.00701514 26 771 9 6.65987e+06 76068 477104. 1650.88 0.66 0.0333346 0.0288117 21682 110474 -1 710 14 333 333 25907 6618 1.10745 1.10745 -39.5458 -1.10745 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00819036 0.00715065 43 2 16 16 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.87 vpr 60.96 MiB 0.01 6088 -1 -1 1 0.02 -1 -1 30316 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62428 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.4 MiB 0.01 435 3216 703 2283 230 61.0 MiB 0.03 0.00 1.62267 -42.4629 -1.62267 1.62267 0.66 0.000271837 0.000252099 0.00926702 0.00858249 26 863 13 6.65987e+06 88746 477104. 1650.88 0.63 0.0394741 0.0338256 21682 110474 -1 843 19 379 379 32055 7576 1.08425 1.08425 -44.4016 -1.08425 0 0 585099. 2024.56 0.16 0.03 0.11 -1 -1 0.16 0.0106269 0.00917959 46 2 17 17 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.02 vpr 61.07 MiB 0.03 6052 -1 -1 1 0.02 -1 -1 30392 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.5 MiB 0.03 427 6052 1399 4413 240 61.1 MiB 0.05 0.00 1.63367 -46.0647 -1.63367 1.63367 0.63 0.000290848 0.000270182 0.0170463 0.0158264 26 868 18 6.65987e+06 88746 477104. 1650.88 0.69 0.0516348 0.0450852 21682 110474 -1 835 14 381 381 30131 7304 1.09525 1.09525 -46.3516 -1.09525 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.010369 0.00898596 49 2 18 18 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.98 vpr 61.11 MiB 0.03 6164 -1 -1 1 0.03 -1 -1 30292 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62576 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.5 MiB 0.03 445 3874 792 2975 107 61.1 MiB 0.03 0.00 1.65567 -51.2172 -1.65567 1.65567 0.66 0.000328031 0.000305277 0.0109131 0.0101502 26 976 16 6.65987e+06 101424 477104. 1650.88 0.63 0.0510882 0.0441096 21682 110474 -1 924 13 340 340 29716 7266 1.10625 1.10625 -51.6573 -1.10625 0 0 585099. 2024.56 0.20 0.03 0.10 -1 -1 0.20 0.00984489 0.00861976 55 2 20 20 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.05 vpr 61.21 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 30232 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.6 MiB 0.03 520 5398 1104 4106 188 61.2 MiB 0.05 0.00 1.67767 -57.8445 -1.67767 1.67767 0.65 0.000358143 0.000333992 0.0166746 0.0155228 26 1149 26 6.65987e+06 101424 477104. 1650.88 0.72 0.0667134 0.0579531 21682 110474 -1 1013 17 534 534 43733 10882 1.14045 1.14045 -56.1815 -1.14045 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0108919 0.00954009 61 2 22 22 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.05 vpr 61.33 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30400 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 22.9 MiB 0.05 581 5945 1255 4536 154 61.3 MiB 0.05 0.00 1.69967 -64.3369 -1.69967 1.69967 0.64 0.000391801 0.000365514 0.0178984 0.0166756 26 1314 13 6.65987e+06 114102 477104. 1650.88 0.72 0.061083 0.0537634 21682 110474 -1 1253 12 524 524 50504 12257 1.24965 1.24965 -65.9318 -1.24965 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0118207 0.0104351 67 2 24 24 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.14 vpr 61.73 MiB 0.01 6148 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.3 MiB 0.03 752 12711 4741 7378 592 61.7 MiB 0.08 0.00 2.07098 -75.6352 -2.07098 2.07098 0.63 0.000427824 0.000398094 0.0310486 0.0289262 30 1352 10 6.65987e+06 126780 526063. 1820.29 0.70 0.0743441 0.0662081 22546 126617 -1 1255 12 439 439 32408 7889 1.13725 1.13725 -68.7144 -1.13725 0 0 666494. 2306.21 0.19 0.04 0.14 -1 -1 0.19 0.0164274 0.014357 73 2 26 26 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.16 vpr 61.59 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.1 MiB 0.04 728 12751 3280 8876 595 61.6 MiB 0.08 0.00 2.11498 -85.6644 -2.11498 2.11498 0.63 0.000486355 0.000452393 0.0293639 0.0273297 32 1544 18 6.65987e+06 139458 554710. 1919.41 0.74 0.08403 0.074682 22834 132086 -1 1389 12 547 547 45634 11155 1.22525 1.22525 -78.7984 -1.22525 0 0 701300. 2426.64 0.19 0.04 0.12 -1 -1 0.19 0.0136703 0.0121766 85 2 30 30 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.30 vpr 61.71 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 30268 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 1003 17401 6715 9666 1020 61.7 MiB 0.10 0.00 2.50829 -107.27 -2.50829 2.50829 0.64 0.000564995 0.000527365 0.0385892 0.0359922 30 1826 11 6.65987e+06 164814 526063. 1820.29 0.74 0.0970331 0.0868303 22546 126617 -1 1671 14 611 611 49547 11052 1.19105 1.19105 -91.9091 -1.19105 0 0 666494. 2306.21 0.18 0.05 0.14 -1 -1 0.18 0.0170892 0.0151981 97 2 34 34 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.52 vpr 62.68 MiB 0.02 6456 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1557 34969 14570 20249 150 62.7 MiB 0.21 0.00 3.38291 -180.939 -3.38291 3.38291 0.64 0.000870246 0.000815025 0.0706 0.0660776 32 2889 16 6.65987e+06 240882 554710. 1919.41 0.83 0.16844 0.153 22834 132086 -1 2667 14 986 986 94568 21634 1.39605 1.39605 -143.167 -1.39605 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025671 0.0230992 145 2 50 50 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.05 vpr 63.27 MiB 0.04 6752 -1 -1 1 0.04 -1 -1 30256 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.5 MiB 0.08 1798 56234 20467 31758 4009 63.3 MiB 0.33 0.01 4.25753 -264.232 -4.25753 4.25753 0.68 0.00119776 0.00112604 0.105122 0.0987456 32 3834 29 6.65987e+06 316950 554710. 1919.41 1.08 0.266956 0.243996 22834 132086 -1 3326 14 1339 1339 128475 30100 1.63419 1.63419 -193.674 -1.63419 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0344429 0.0312212 193 2 66 66 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 2.61 vpr 61.47 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 29964 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.9 MiB 0.02 26 246 57 175 14 61.5 MiB 0.01 0.00 0.712895 -7.69589 -0.712895 0.712895 0.67 6.9947e-05 6.2765e-05 0.0015447 0.00138309 18 88 3 6.95648e+06 14475.7 376052. 1301.22 0.45 0.00914952 0.00773228 22882 88689 -1 82 3 14 14 509 178 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.13 0.00 0.09 -1 -1 0.13 0.00201732 0.00188308 5 2 5 5 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.44 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 29920 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.02 38 285 68 210 7 61.4 MiB 0.01 0.00 0.62144 -9.16928 -0.62144 0.62144 0.66 8.7356e-05 7.9246e-05 0.00168539 0.00152823 20 128 9 6.95648e+06 14475.7 414966. 1435.87 0.49 0.0116541 0.00983442 23170 95770 -1 110 3 26 26 1366 430 0.74674 0.74674 -9.88017 -0.74674 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00215121 0.00200017 7 2 6 6 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 2.67 vpr 61.58 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30056 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63056 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 23.0 MiB 0.03 125 64 27 35 2 61.6 MiB 0.00 0.00 1.08519 -14.5503 -1.08519 1.08519 0.66 5.2999e-05 4.556e-05 0.000416598 0.000380347 20 207 6 6.95648e+06 14475.7 414966. 1435.87 0.47 0.00392962 0.00355543 23170 95770 -1 195 6 30 30 2480 654 1.08519 1.08519 -14.5423 -1.08519 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00288477 0.00260521 8 2 7 7 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.71 vpr 61.65 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29908 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63128 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.3 MiB 0.03 66 622 147 459 16 61.6 MiB 0.01 0.00 0.830632 -14.7061 -0.830632 0.830632 0.67 0.000121979 0.000111163 0.00291241 0.00266782 18 238 27 6.95648e+06 28951.4 376052. 1301.22 0.50 0.020427 0.0171527 22882 88689 -1 187 10 110 110 5614 1939 0.834592 0.834592 -16.5365 -0.834592 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00395424 0.0035081 10 2 8 8 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.84 vpr 61.58 MiB 0.03 6020 -1 -1 1 0.02 -1 -1 30060 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.1 MiB 0.03 82 673 149 507 17 61.6 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 0.66 0.000164823 0.000151701 0.00359663 0.0033135 26 242 10 6.95648e+06 28951.4 503264. 1741.40 0.60 0.0192516 0.0164359 24322 120374 -1 237 10 145 145 9314 2936 1.06403 1.06403 -19.2829 -1.06403 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00419556 0.00370297 11 2 9 9 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.80 vpr 61.75 MiB 0.01 6104 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63236 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.3 MiB 0.04 161 700 166 470 64 61.8 MiB 0.01 0.00 0.841632 -20.1922 -0.841632 0.841632 0.67 0.000186935 0.000172121 0.00362371 0.00334311 22 438 17 6.95648e+06 28951.4 443629. 1535.05 0.56 0.0222666 0.0187582 23458 102101 -1 363 12 183 183 14497 3745 1.08603 1.08603 -23.7915 -1.08603 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00509427 0.00444436 13 2 10 10 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.79 vpr 61.70 MiB 0.01 6044 -1 -1 1 0.02 -1 -1 30036 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.2 MiB 0.04 117 847 190 628 29 61.7 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.67 0.000174808 0.000161463 0.00366503 0.00338234 20 355 15 6.95648e+06 28951.4 414966. 1435.87 0.52 0.0106783 0.00947492 23170 95770 -1 330 12 210 210 12303 4472 0.999932 0.999932 -25.9604 -0.999932 0 0 503264. 1741.40 0.14 0.02 0.08 -1 -1 0.14 0.00549472 0.00480486 14 2 11 11 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.07 vpr 61.71 MiB 0.03 6172 -1 -1 1 0.02 -1 -1 29992 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.2 MiB 0.04 316 859 151 690 18 61.7 MiB 0.01 0.00 0.896632 -29.5922 -0.896632 0.896632 0.67 0.000219763 0.000200525 0.00426958 0.00392151 30 637 14 6.95648e+06 28951.4 556674. 1926.21 0.71 0.0261548 0.0220875 25186 138497 -1 566 12 243 243 22941 4952 1.12523 1.12523 -32.2796 -1.12523 0 0 706193. 2443.58 0.18 0.02 0.13 -1 -1 0.18 0.00595595 0.00518014 16 2 12 12 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.79 vpr 61.82 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30132 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.4 MiB 0.04 198 1298 273 1012 13 61.8 MiB 0.01 0.00 0.907632 -28.5647 -0.907632 0.907632 0.67 0.000200397 0.000180041 0.00504197 0.00467091 26 593 49 6.95648e+06 43427 503264. 1741.40 1.43 0.0617798 0.0514438 24322 120374 -1 497 14 301 301 20908 6200 1.13003 1.13003 -33.6466 -1.13003 0 0 618332. 2139.56 0.16 0.02 0.13 -1 -1 0.16 0.00710317 0.00613599 17 2 13 13 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.45 vpr 61.82 MiB 0.03 6220 -1 -1 1 0.02 -1 -1 30028 -1 -1 3 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 63308 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.04 368 1441 285 1041 115 61.8 MiB 0.02 0.00 0.918632 -34.4491 -0.918632 0.918632 0.66 0.000270384 0.000250782 0.00622358 0.00576231 34 760 18 6.95648e+06 43427 618332. 2139.56 1.08 0.0517101 0.0435088 25762 151098 -1 716 18 330 330 35885 7608 1.20033 1.20033 -38.8217 -1.20033 0 0 787024. 2723.27 0.22 0.03 0.10 -1 -1 0.22 0.00962408 0.00827676 19 2 14 14 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 5.44 vpr 61.83 MiB 0.01 6132 -1 -1 1 0.03 -1 -1 30036 -1 -1 3 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 63316 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.3 MiB 0.04 180 3971 1477 2086 408 61.8 MiB 0.03 0.00 0.951632 -32.5735 -0.951632 0.951632 0.67 0.000249923 0.000231776 0.0131599 0.0121796 38 531 27 6.95648e+06 43427 678818. 2348.85 2.99 0.0859414 0.0726927 26626 170182 -1 411 18 458 458 23093 7175 1.18933 1.18933 -32.3759 -1.18933 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.01093 0.00943138 20 2 15 15 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.22 vpr 61.84 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 30300 -1 -1 3 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 63328 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.3 MiB 0.05 227 4331 1745 2561 25 61.8 MiB 0.05 0.00 0.962632 -36.3287 -0.962632 0.962632 0.74 0.000300889 0.000277981 0.0210961 0.0195028 36 812 35 6.95648e+06 43427 648988. 2245.63 1.60 0.0806471 0.0694036 26050 158493 -1 643 28 535 535 56901 13609 1.31033 1.31033 -44.9186 -1.31033 0 0 828058. 2865.25 0.21 0.04 0.15 -1 -1 0.21 0.0141115 0.0120837 22 2 16 16 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.26 vpr 62.06 MiB 0.03 6180 -1 -1 1 0.03 -1 -1 30280 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.5 MiB 0.05 237 4098 1359 2534 205 62.1 MiB 0.03 0.00 1.33396 -39.0993 -1.33396 1.33396 0.66 0.000367682 0.000335894 0.0140384 0.0130146 32 918 36 6.95648e+06 43427 586450. 2029.24 0.80 0.0559332 0.0483107 25474 144626 -1 677 19 440 440 44023 13407 1.18303 1.18303 -45.5742 -1.18303 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.011618 0.0100114 24 2 17 17 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 3.37 vpr 61.86 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 30384 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63348 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.3 MiB 0.08 235 5052 1687 3325 40 61.9 MiB 0.04 0.00 1.34496 -41.9783 -1.34496 1.34496 0.66 0.000288455 0.000267371 0.015275 0.0141791 28 1051 35 6.95648e+06 57902.7 531479. 1839.03 0.93 0.0574984 0.0497961 24610 126494 -1 750 18 536 536 48167 15656 1.43363 1.43363 -51.9406 -1.43363 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.011302 0.00977742 25 2 18 18 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 3.67 vpr 61.97 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30288 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.4 MiB 0.08 349 5325 1277 4015 33 62.0 MiB 0.04 0.00 1.36696 -48.5746 -1.36696 1.36696 0.66 0.000386862 0.000360155 0.017502 0.0162807 34 928 20 6.95648e+06 57902.7 618332. 2139.56 1.17 0.0672604 0.0582211 25762 151098 -1 827 14 438 438 35697 8995 1.28633 1.28633 -54.7132 -1.28633 0 0 787024. 2723.27 0.23 0.03 0.14 -1 -1 0.23 0.0108629 0.00945842 28 2 20 20 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.66 vpr 62.03 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 30240 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63516 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.4 MiB 0.08 643 8312 2604 4958 750 62.0 MiB 0.06 0.00 1.38896 -61.9638 -1.38896 1.38896 0.65 0.000423859 0.000394491 0.0262633 0.0244319 34 1235 30 6.95648e+06 57902.7 618332. 2139.56 1.17 0.10186 0.0884186 25762 151098 -1 1155 19 493 493 55302 11323 1.40253 1.40253 -68.9159 -1.40253 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0138833 0.0120554 31 2 22 22 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.07 vpr 62.13 MiB 0.03 6232 -1 -1 1 0.02 -1 -1 30376 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.5 MiB 0.11 465 7673 2070 5539 64 62.1 MiB 0.06 0.00 1.41096 -62.1793 -1.41096 1.41096 0.70 0.000492411 0.000459888 0.0245599 0.0228408 36 1080 17 6.95648e+06 72378.4 648988. 2245.63 1.36 0.104985 0.0916039 26050 158493 -1 993 12 490 490 43701 10133 1.40733 1.40733 -69.3961 -1.40733 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0173266 0.0151157 34 2 24 24 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 3.81 vpr 62.23 MiB 0.02 6152 -1 -1 1 0.03 -1 -1 30388 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.5 MiB 0.11 477 11571 2984 8400 187 62.2 MiB 0.08 0.00 1.43296 -69.314 -1.43296 1.43296 0.66 0.000502504 0.000468129 0.0359599 0.0334848 34 1312 19 6.95648e+06 72378.4 618332. 2139.56 1.22 0.12085 0.106199 25762 151098 -1 1111 17 638 638 57936 14329 1.42933 1.42933 -77.4161 -1.42933 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0148322 0.0129957 37 2 26 26 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 4.37 vpr 62.38 MiB 0.03 6340 -1 -1 1 0.03 -1 -1 30148 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.8 MiB 0.07 829 13133 5464 7620 49 62.4 MiB 0.08 0.00 1.47696 -85.3607 -1.47696 1.47696 0.66 0.000484852 0.000451039 0.0324261 0.0302189 34 1902 33 6.95648e+06 86854.1 618332. 2139.56 1.70 0.123759 0.108937 25762 151098 -1 1551 17 816 816 83921 18675 1.58283 1.58283 -95.4552 -1.58283 0 0 787024. 2723.27 0.23 0.10 0.14 -1 -1 0.23 0.0316181 0.0276675 43 2 30 30 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 4.83 vpr 62.60 MiB 0.04 6476 -1 -1 1 0.03 -1 -1 30316 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.9 MiB 0.08 924 18136 7790 10245 101 62.6 MiB 0.11 0.00 1.88129 -101.424 -1.88129 1.88129 0.67 0.000591594 0.000553338 0.0433945 0.0404864 38 1980 34 6.95648e+06 101330 678818. 2348.85 2.03 0.16943 0.149247 26626 170182 -1 1707 19 920 920 123833 24957 1.47763 1.47763 -102.723 -1.47763 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0214973 0.0189327 49 2 34 34 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.50 vpr 63.39 MiB 0.04 6468 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.6 MiB 0.10 1600 30324 11596 17665 1063 63.4 MiB 0.17 0.00 2.41762 -168.85 -2.41762 2.41762 0.68 0.000867666 0.000812541 0.065513 0.0613541 46 2899 27 6.95648e+06 144757 828058. 2865.25 2.55 0.250531 0.225129 28066 200906 -1 2592 17 1092 1092 113477 24045 1.72233 1.72233 -168.337 -1.72233 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0303212 0.0272155 73 2 50 50 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 6.40 vpr 64.04 MiB 0.02 6844 -1 -1 1 0.04 -1 -1 30300 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65580 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.3 MiB 0.12 1899 46107 19065 26925 117 64.0 MiB 0.26 0.01 2.95395 -232.912 -2.95395 2.95395 0.68 0.00143093 0.00134648 0.0952555 0.089571 58 3425 26 6.95648e+06 188184 997811. 3452.63 3.10 0.358972 0.326315 30370 251734 -1 3165 18 1575 1575 181293 37864 1.79303 1.79303 -210.904 -1.79303 0 0 1.25153e+06 4330.55 0.36 0.13 0.23 -1 -1 0.36 0.0507539 0.0460313 97 2 66 66 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.63 vpr 61.28 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 29928 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62752 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.7 MiB 0.01 26 246 57 176 13 61.3 MiB 0.01 0.00 0.62144 -7.32583 -0.62144 0.62144 0.67 6.9842e-05 6.2759e-05 0.00155698 0.00139369 18 87 6 6.99608e+06 14715.7 376052. 1301.22 0.48 0.0139151 0.0115 22882 88689 -1 82 3 15 15 542 184 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00197342 0.00184307 5 2 5 5 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.61 vpr 61.43 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62900 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.01 42 285 67 217 1 61.4 MiB 0.01 0.00 0.601892 -8.86437 -0.601892 0.601892 0.65 8.8766e-05 8.0653e-05 0.00169653 0.00153446 18 115 6 6.99608e+06 14715.7 376052. 1301.22 0.46 0.0114069 0.00966204 22882 88689 -1 116 5 38 38 1967 715 0.709292 0.709292 -10.2606 -0.709292 0 0 470940. 1629.55 0.12 0.01 0.09 -1 -1 0.12 0.0023735 0.00216778 7 2 6 6 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.51 vpr 61.35 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30032 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.7 MiB 0.01 126 64 25 37 2 61.4 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.65 8.0867e-05 6.817e-05 0.000600532 0.000549054 16 214 10 6.99608e+06 14715.7 332735. 1151.33 0.42 0.00459504 0.00409087 22306 75877 -1 208 8 49 49 3850 981 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.11 0.01 0.05 -1 -1 0.11 0.00230967 0.00211558 8 2 7 7 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 2.57 vpr 61.35 MiB 0.01 6020 -1 -1 1 0.02 -1 -1 29976 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62820 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 22.7 MiB 0.02 107 592 125 462 5 61.3 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.66 0.000119744 0.000109232 0.00281145 0.00257676 18 269 16 6.99608e+06 29431.4 376052. 1301.22 0.44 0.00818808 0.00723898 22882 88689 -1 254 13 108 108 9334 2541 0.99734 0.99734 -17.0736 -0.99734 0 0 470940. 1629.55 0.12 0.01 0.05 -1 -1 0.12 0.00293911 0.00263407 10 2 8 8 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.93 vpr 61.57 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 29988 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63052 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 23.2 MiB 0.02 87 673 163 490 20 61.6 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 0.65 0.000139655 0.000128416 0.00304784 0.00279712 28 210 10 6.99608e+06 29431.4 531479. 1839.03 0.66 0.0200743 0.0169411 24610 126494 -1 213 16 100 100 4797 1745 0.938732 0.938732 -19.0323 -0.938732 0 0 648988. 2245.63 0.17 0.01 0.11 -1 -1 0.17 0.0053958 0.00467712 11 2 9 9 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.86 vpr 61.56 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 30092 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63036 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 23.1 MiB 0.02 89 868 259 545 64 61.6 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 0.68 0.000155982 0.000143549 0.00376903 0.00346645 26 304 21 6.99608e+06 29431.4 503264. 1741.40 0.62 0.0252732 0.0212531 24322 120374 -1 230 8 137 137 6902 2290 0.960732 0.960732 -19.4915 -0.960732 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00512295 0.00464949 13 2 10 10 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 2.67 vpr 61.44 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30172 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 23.0 MiB 0.01 117 799 181 587 31 61.4 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.69 0.000174756 0.00016156 0.00344098 0.00316589 20 328 9 6.99608e+06 29431.4 414966. 1435.87 0.47 0.00892035 0.00801893 23170 95770 -1 323 12 204 204 10994 3934 1.05303 1.05303 -25.6719 -1.05303 0 0 503264. 1741.40 0.14 0.02 0.09 -1 -1 0.14 0.00551696 0.00480719 14 2 11 11 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.40 vpr 61.74 MiB 0.01 6096 -1 -1 1 0.02 -1 -1 30052 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 23.3 MiB 0.02 206 1079 232 829 18 61.7 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.66 0.000194966 0.000180194 0.00439512 0.00407367 34 516 14 6.99608e+06 29431.4 618332. 2139.56 1.05 0.0420951 0.0352119 25762 151098 -1 452 14 214 214 17119 4048 1.10803 1.10803 -28.824 -1.10803 0 0 787024. 2723.27 0.20 0.02 0.14 -1 -1 0.20 0.00696141 0.00606586 16 2 12 12 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.09 vpr 61.66 MiB 0.03 6060 -1 -1 1 0.03 -1 -1 30012 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.2 MiB 0.01 245 1298 255 1031 12 61.7 MiB 0.01 0.00 0.879432 -28.9525 -0.879432 0.879432 0.72 0.000210764 0.000195225 0.0049803 0.00461522 30 597 29 6.99608e+06 44147 556674. 1926.21 0.71 0.032753 0.027673 25186 138497 -1 502 13 273 273 20339 4722 1.08603 1.08603 -30.5153 -1.08603 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00670618 0.00582973 17 2 13 13 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.61 vpr 61.82 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 30040 -1 -1 3 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 63300 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.02 340 1441 266 1110 65 61.8 MiB 0.01 0.00 0.901432 -33.1271 -0.901432 0.901432 0.68 0.000100838 9.1709e-05 0.00258159 0.00236179 34 746 15 6.99608e+06 44147 618332. 2139.56 1.18 0.0449851 0.03759 25762 151098 -1 681 16 316 316 34407 7368 1.02388 1.02388 -36.7038 -1.02388 0 0 787024. 2723.27 0.23 0.03 0.13 -1 -1 0.23 0.0116346 0.00995567 19 2 14 14 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 5.53 vpr 61.71 MiB 0.01 6140 -1 -1 1 0.03 -1 -1 30044 -1 -1 3 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 63188 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.2 MiB 0.01 178 3971 1404 1915 652 61.7 MiB 0.05 0.00 0.912432 -32.1713 -0.912432 0.912432 0.67 0.000236169 0.000216707 0.0215494 0.0198926 40 457 37 6.99608e+06 44147 706193. 2443.58 3.14 0.0951369 0.0809945 26914 176310 -1 466 15 378 378 25966 7634 1.15203 1.15203 -33.8446 -1.15203 0 0 926341. 3205.33 0.23 0.02 0.15 -1 -1 0.23 0.00815911 0.00709359 20 2 15 15 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.37 vpr 61.79 MiB 0.01 6216 -1 -1 1 0.03 -1 -1 30228 -1 -1 3 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 63268 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.2 MiB 0.02 198 4331 1522 2096 713 61.8 MiB 0.05 0.00 0.934432 -35.1872 -0.934432 0.934432 0.66 0.000337412 0.000312213 0.0234828 0.021747 38 613 23 6.99608e+06 44147 678818. 2348.85 2.90 0.0889024 0.0762483 26626 170182 -1 476 15 417 417 29276 8251 1.17403 1.17403 -37.004 -1.17403 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.00865225 0.00753462 22 2 16 16 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.44 vpr 61.74 MiB 0.01 6156 -1 -1 1 0.03 -1 -1 30384 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.2 MiB 0.02 227 4098 1263 2618 217 61.7 MiB 0.03 0.00 1.30576 -38.4531 -1.30576 1.30576 0.66 0.00031954 0.000296037 0.0132527 0.0122946 28 919 23 6.99608e+06 44147 531479. 1839.03 2.08 0.0771915 0.0658074 24610 126494 -1 742 39 524 524 136090 87091 1.34133 1.34133 -49.6429 -1.34133 0 0 648988. 2245.63 0.18 0.07 0.12 -1 -1 0.18 0.0187748 0.015963 24 2 17 17 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 3.62 vpr 61.70 MiB 0.02 6216 -1 -1 1 0.03 -1 -1 30260 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.1 MiB 0.03 362 3012 639 2325 48 61.7 MiB 0.03 0.00 1.31676 -43.8553 -1.31676 1.31676 0.66 0.000342281 0.00031786 0.011086 0.0103099 34 957 15 6.99608e+06 58862.7 618332. 2139.56 1.17 0.0655455 0.0559129 25762 151098 -1 859 18 455 455 51906 11341 1.41163 1.41163 -51.4029 -1.41163 0 0 787024. 2723.27 0.21 0.04 0.14 -1 -1 0.21 0.0132415 0.0114455 25 2 18 18 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.83 vpr 61.83 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 30296 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.2 MiB 0.03 307 4623 989 3596 38 61.8 MiB 0.04 0.00 1.33876 -48.0718 -1.33876 1.33876 0.62 0.0003311 0.000308307 0.0140394 0.0130778 34 914 47 6.99608e+06 58862.7 618332. 2139.56 1.23 0.0916112 0.0782119 25762 151098 -1 737 20 476 476 51891 12523 1.14288 1.14288 -52.6321 -1.14288 0 0 787024. 2723.27 0.23 0.04 0.14 -1 -1 0.23 0.0138672 0.0119163 28 2 20 20 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 3.60 vpr 61.93 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30388 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.3 MiB 0.03 643 8179 2647 4716 816 61.9 MiB 0.05 0.00 1.36076 -60.9293 -1.36076 1.36076 0.68 0.000362028 0.000337194 0.0234688 0.0218212 34 1237 19 6.99608e+06 58862.7 618332. 2139.56 1.16 0.0945724 0.0819346 25762 151098 -1 1130 12 378 378 38925 8003 1.18303 1.18303 -64.131 -1.18303 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0100629 0.0088598 31 2 22 22 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.36 vpr 62.26 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30472 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 23.6 MiB 0.03 375 8585 2269 6036 280 62.3 MiB 0.07 0.00 1.38276 -61.0669 -1.38276 1.38276 0.67 0.000390752 0.000363715 0.0276593 0.0257255 30 1103 19 6.99608e+06 73578.4 556674. 1926.21 0.84 0.0730901 0.0646184 25186 138497 -1 878 18 524 524 37288 10581 1.28633 1.28633 -65.5063 -1.28633 0 0 706193. 2443.58 0.19 0.04 0.11 -1 -1 0.19 0.0143167 0.012504 34 2 24 24 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 3.33 vpr 62.02 MiB 0.03 6212 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.4 MiB 0.04 470 11571 3015 8364 192 62.0 MiB 0.08 0.00 1.40476 -68.6401 -1.40476 1.40476 0.67 0.000499094 0.000464533 0.0348574 0.0324337 30 1355 26 6.99608e+06 73578.4 556674. 1926.21 0.82 0.0901059 0.0797751 25186 138497 -1 1108 15 630 630 55373 14311 1.53263 1.53263 -81.075 -1.53263 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0144373 0.012727 37 2 26 26 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 4.58 vpr 62.40 MiB 0.01 6424 -1 -1 1 0.03 -1 -1 30052 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.9 MiB 0.04 983 13754 5168 7361 1225 62.4 MiB 0.08 0.00 1.44876 -89.273 -1.44876 1.44876 0.66 0.000495102 0.000460905 0.0338365 0.0315384 36 1932 26 6.99608e+06 88294.1 648988. 2245.63 2.04 0.136573 0.120347 26050 158493 -1 1709 14 732 732 88262 17454 1.38533 1.38533 -95.1897 -1.38533 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0147174 0.013013 43 2 30 30 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 6.51 vpr 62.25 MiB 0.03 6444 -1 -1 1 0.03 -1 -1 30296 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.7 MiB 0.05 938 18136 7666 10324 146 62.2 MiB 0.11 0.00 1.85309 -100.228 -1.85309 1.85309 0.67 0.000565693 0.000528359 0.0433505 0.0404764 44 1753 37 6.99608e+06 103010 787024. 2723.27 3.77 0.211064 0.185461 27778 195446 -1 1506 22 822 822 76229 16603 1.22073 1.22073 -93.7336 -1.22073 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.0249645 0.0219304 49 2 34 34 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 11.48 vpr 63.16 MiB 0.02 6600 -1 -1 1 0.03 -1 -1 30484 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.4 MiB 0.06 1600 30324 10676 17928 1720 63.2 MiB 0.17 0.00 2.38942 -168.824 -2.38942 2.38942 0.67 0.00090045 0.000846311 0.067848 0.063699 40 2938 41 6.99608e+06 147157 706193. 2443.58 8.62 0.445449 0.397933 26914 176310 -1 2764 20 1241 1241 273195 94637 1.51533 1.51533 -157.71 -1.51533 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.0345075 0.0309253 73 2 50 50 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.45 vpr 63.91 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.0 MiB 0.09 1882 46107 19193 26799 115 63.9 MiB 0.26 0.01 2.92575 -230.221 -2.92575 2.92575 0.67 0.00119577 0.00112328 0.0941022 0.0883698 56 3324 21 6.99608e+06 191304 973134. 3367.25 3.31 0.393861 0.356914 29794 239141 -1 3177 17 1483 1483 176827 36520 1.66733 1.66733 -201.755 -1.66733 0 0 1.19926e+06 4149.71 0.30 0.11 0.22 -1 -1 0.30 0.0418622 0.0378945 97 2 66 66 0 0 -fixed_k6_frac_N8_22nm.xml adder_003bits.v common 2.63 vpr 60.92 MiB 0.01 5732 -1 -1 1 0.06 -1 -1 31692 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62380 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.3 MiB 0.02 33 272 66 196 10 60.9 MiB 0.01 0.00 0.62144 -7.45301 -0.62144 0.62144 0.67 6.6187e-05 5.925e-05 0.00162367 0.00144416 18 89 5 6.79088e+06 13472 376052. 1301.22 0.43 0.00477332 0.00436651 22222 88205 -1 96 12 56 56 3434 1195 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.16 0.01 0.08 -1 -1 0.16 0.00288475 0.00256578 6 4 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.86 vpr 60.86 MiB 0.01 5768 -1 -1 2 0.06 -1 -1 31784 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62316 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 22.3 MiB 0.02 38 321 80 225 16 60.9 MiB 0.01 0.00 0.883748 -10.0404 -0.883748 0.883748 0.69 9.3326e-05 8.4893e-05 0.00186552 0.00169598 26 115 8 6.79088e+06 13472 503264. 1741.40 0.58 0.0132945 0.0114371 23662 119890 -1 128 5 34 34 1890 580 0.883748 0.883748 -11.0965 -0.883748 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00267052 0.00242806 8 6 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.64 vpr 61.00 MiB 0.03 5732 -1 -1 2 0.06 -1 -1 31860 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62464 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.4 MiB 0.01 171 94 40 54 0 61.0 MiB 0.00 0.00 1.02368 -16.5872 -1.02368 1.02368 0.66 0.000107051 9.7386e-05 0.00073107 0.000675006 18 265 9 6.79088e+06 26944 376052. 1301.22 0.44 0.00473124 0.00423882 22222 88205 -1 288 9 87 100 7075 1832 1.02368 1.02368 -17.1824 -1.02368 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00330608 0.00294248 10 7 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_006bits.v common 2.87 vpr 60.88 MiB 0.01 5800 -1 -1 3 0.06 -1 -1 31956 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62336 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.3 MiB 0.01 78 532 122 389 21 60.9 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.79 0.000126434 0.000115978 0.00267124 0.00244984 22 254 10 6.79088e+06 26944 443629. 1535.05 0.53 0.0161963 0.0136579 22798 101617 -1 235 6 82 86 5455 1694 1.05944 1.05944 -17.5826 -1.05944 0 0 531479. 1839.03 0.15 0.01 0.10 -1 -1 0.15 0.00311086 0.00279428 11 9 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.87 vpr 60.90 MiB 0.03 5740 -1 -1 3 0.06 -1 -1 32336 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62360 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.3 MiB 0.01 107 781 172 592 17 60.9 MiB 0.01 0.00 1.35273 -19.9506 -1.35273 1.35273 0.70 0.000175034 0.000157087 0.00433218 0.00398709 22 364 10 6.79088e+06 26944 443629. 1535.05 0.55 0.0197656 0.0168178 22798 101617 -1 282 8 119 134 7269 2325 1.35273 1.35273 -22.4071 -1.35273 0 0 531479. 1839.03 0.16 0.01 0.09 -1 -1 0.16 0.00390393 0.00347587 13 10 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.00 vpr 61.07 MiB 0.03 5780 -1 -1 3 0.06 -1 -1 32044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62536 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.7 MiB 0.04 115 994 199 767 28 61.1 MiB 0.01 0.00 1.52493 -22.3533 -1.52493 1.52493 0.73 0.000181298 0.000167565 0.00470021 0.00434725 26 395 12 6.79088e+06 26944 503264. 1741.40 0.61 0.0258358 0.0218753 23662 119890 -1 347 9 163 176 8572 2816 1.27433 1.27433 -24.248 -1.27433 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.0048104 0.00422768 16 14 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.14 vpr 61.05 MiB 0.03 5760 -1 -1 4 0.07 -1 -1 31856 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62516 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.6 MiB 0.04 196 1232 436 745 51 61.1 MiB 0.02 0.00 1.31348 -26.7556 -1.31348 1.31348 0.66 0.000217759 0.000200929 0.00596662 0.0055114 30 497 16 6.79088e+06 40416 556674. 1926.21 0.77 0.0286625 0.0242314 24526 138013 -1 413 9 189 200 13868 3596 1.1736 1.1736 -27.3921 -1.1736 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00502343 0.00442599 17 13 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.18 vpr 60.99 MiB 0.02 5840 -1 -1 4 0.06 -1 -1 31772 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.5 MiB 0.16 167 1403 308 1078 17 61.0 MiB 0.02 0.00 1.85398 -30.8307 -1.85398 1.85398 0.67 0.000245931 0.000226799 0.00647482 0.00597646 22 674 49 6.79088e+06 40416 443629. 1535.05 0.66 0.049205 0.0415479 22798 101617 -1 501 10 241 288 16885 5398 1.65028 1.65028 -34.1026 -1.65028 0 0 531479. 1839.03 0.21 0.02 0.09 -1 -1 0.21 0.0059691 0.00525898 21 17 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.50 vpr 61.17 MiB 0.01 5852 -1 -1 5 0.06 -1 -1 32492 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62640 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 22.7 MiB 0.07 255 1424 308 1101 15 61.2 MiB 0.02 0.00 1.8114 -35.123 -1.8114 1.8114 0.69 0.000260287 0.000240887 0.00679788 0.00629437 34 666 12 6.79088e+06 40416 618332. 2139.56 1.08 0.050825 0.0428367 25102 150614 -1 580 11 233 283 23212 5544 1.8114 1.8114 -36.8915 -1.8114 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00643536 0.00565564 20 16 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.65 vpr 61.20 MiB 0.03 5936 -1 -1 5 0.07 -1 -1 31872 -1 -1 3 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 62664 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 22.7 MiB 0.18 315 1721 363 1322 36 61.2 MiB 0.02 0.00 2.11577 -41.2814 -2.11577 2.11577 0.68 0.000240218 0.000222282 0.00673743 0.00623216 34 735 13 6.79088e+06 40416 618332. 2139.56 1.06 0.0555511 0.0470063 25102 150614 -1 669 13 240 272 22872 5348 1.85403 1.85403 -41.6979 -1.85403 0 0 787024. 2723.27 0.21 0.02 0.14 -1 -1 0.21 0.00757687 0.0066196 24 20 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.19 vpr 61.12 MiB 0.03 5872 -1 -1 5 0.06 -1 -1 32112 -1 -1 4 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 62588 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.6 MiB 0.23 235 2285 486 1742 57 61.1 MiB 0.01 0.00 2.15497 -43.2975 -2.15497 2.15497 0.56 0.000146093 0.000133421 0.00493531 0.00451688 34 681 36 6.79088e+06 53888 618332. 2139.56 0.81 0.0343123 0.02901 25102 150614 -1 554 11 255 319 17452 5001 1.81483 1.81483 -42.4861 -1.81483 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00770394 0.00677641 27 24 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_014bits.v common 3.22 vpr 61.20 MiB 0.01 5856 -1 -1 6 0.07 -1 -1 31936 -1 -1 4 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 62664 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.7 MiB 0.19 239 3267 703 2442 122 61.2 MiB 0.03 0.00 2.36642 -47.1965 -2.36642 2.36642 0.65 0.00028241 0.000261892 0.0115008 0.0106796 30 708 16 6.79088e+06 53888 556674. 1926.21 0.71 0.0432284 0.0373342 24526 138013 -1 556 12 292 335 17825 5336 2.06549 2.06549 -46.1813 -2.06549 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00824659 0.00721058 28 23 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_015bits.v common 3.59 vpr 61.33 MiB 0.01 5776 -1 -1 6 0.06 -1 -1 31908 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62800 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 22.8 MiB 0.51 331 4611 1094 3483 34 61.3 MiB 0.04 0.00 2.65628 -53.9613 -2.65628 2.65628 0.65 0.000311256 0.000288717 0.0158324 0.0146876 28 928 18 6.79088e+06 67360 531479. 1839.03 0.74 0.0520143 0.0450422 23950 126010 -1 775 13 341 470 30157 7825 2.36648 2.36648 -53.8367 -2.36648 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.00956828 0.00834612 32 27 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_016bits.v common 3.60 vpr 61.31 MiB 0.01 5912 -1 -1 7 0.06 -1 -1 31824 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62784 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 22.8 MiB 0.48 608 5154 1451 2664 1039 61.3 MiB 0.04 0.00 2.69548 -63.6839 -2.69548 2.69548 0.66 0.000385285 0.000358152 0.0205307 0.01908 30 1143 21 6.79088e+06 53888 556674. 1926.21 0.71 0.0590489 0.0515864 24526 138013 -1 1043 11 317 384 26198 6012 2.39454 2.39454 -63.3864 -2.39454 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00881388 0.00775075 32 26 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_018bits.v common 4.43 vpr 61.29 MiB 0.01 5884 -1 -1 7 0.09 -1 -1 32484 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62764 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 22.7 MiB 0.88 661 3781 906 2518 357 61.3 MiB 0.03 0.00 3.03567 -75.9544 -3.03567 3.03567 0.68 0.000367577 0.000341109 0.0128341 0.0119164 34 1285 30 6.79088e+06 67360 618332. 2139.56 1.18 0.0903352 0.0772856 25102 150614 -1 1211 14 379 531 37075 8541 2.62057 2.62057 -74.747 -2.62057 0 0 787024. 2723.27 0.20 0.03 0.09 -1 -1 0.20 0.0116955 0.010211 37 35 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.32 vpr 61.82 MiB 0.01 5900 -1 -1 8 0.08 -1 -1 32236 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 23.4 MiB 0.62 560 5864 1353 4034 477 61.8 MiB 0.04 0.00 2.82083 -78.2516 -2.82083 2.82083 0.65 0.000398447 0.000370144 0.0182796 0.016993 34 1359 37 6.79088e+06 80832 618332. 2139.56 1.25 0.105956 0.0913965 25102 150614 -1 1162 13 425 576 48317 11363 2.60599 2.60599 -79.9872 -2.60599 0 0 787024. 2723.27 0.20 0.03 0.14 -1 -1 0.20 0.0120408 0.0106331 42 37 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.17 vpr 61.50 MiB 0.03 6044 -1 -1 9 0.07 -1 -1 32312 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 23.1 MiB 0.99 569 6429 1548 4565 316 61.5 MiB 0.05 0.00 3.45087 -87.8964 -3.45087 3.45087 0.65 0.00051247 0.000475924 0.0202475 0.0187956 30 1346 15 6.79088e+06 80832 556674. 1926.21 0.74 0.0679099 0.0596845 24526 138013 -1 1199 10 435 591 33788 8803 3.20027 3.20027 -91.596 -3.20027 0 0 706193. 2443.58 0.21 0.03 0.11 -1 -1 0.21 0.0118123 0.0104744 45 40 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_024bits.v common 5.06 vpr 61.68 MiB 0.01 5952 -1 -1 10 0.08 -1 -1 32656 -1 -1 6 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 23.2 MiB 1.04 490 11088 4620 6440 28 61.7 MiB 0.08 0.00 3.70153 -100.305 -3.70153 3.70153 0.65 0.00055466 0.000514496 0.035894 0.0332878 36 1543 32 6.79088e+06 80832 648988. 2245.63 1.51 0.112577 0.0991462 25390 158009 -1 1146 12 527 713 45707 11961 3.40059 3.40059 -96.9203 -3.40059 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0135838 0.0120854 48 43 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.87 vpr 61.81 MiB 0.03 5960 -1 -1 11 0.07 -1 -1 32692 -1 -1 9 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63292 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 23.3 MiB 2.03 858 13919 3611 9607 701 61.8 MiB 0.11 0.00 4.45687 -136.905 -4.45687 4.45687 0.79 0.000680964 0.000634009 0.0527421 0.0490878 30 1959 44 6.79088e+06 121248 556674. 1926.21 1.16 0.139955 0.124106 24526 138013 -1 1696 13 587 803 53198 12346 3.99143 3.99143 -133.711 -3.99143 0 0 706193. 2443.58 0.20 0.04 0.12 -1 -1 0.20 0.0170538 0.0150973 59 57 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_032bits.v common 5.99 vpr 61.79 MiB 0.02 6180 -1 -1 13 0.09 -1 -1 31948 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63272 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 23.2 MiB 1.30 636 20347 6786 10007 3554 61.8 MiB 0.12 0.00 5.42361 -161.246 -5.42361 5.42361 0.66 0.000797114 0.00072738 0.0586558 0.0546299 40 1688 41 6.79088e+06 121248 706193. 2443.58 1.98 0.214939 0.190014 26254 175826 -1 1351 20 710 934 110100 45329 4.92241 4.92241 -150.99 -4.92241 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0262457 0.0232549 65 62 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.04 vpr 62.90 MiB 0.02 6352 -1 -1 19 0.10 -1 -1 32464 -1 -1 14 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1414 32276 9655 19397 3224 62.9 MiB 0.17 0.00 7.54987 -303.629 -7.54987 7.54987 0.66 0.000980362 0.00091467 0.0773462 0.0721599 34 3140 17 6.79088e+06 188608 618332. 2139.56 1.59 0.268783 0.240646 25102 150614 -1 2897 31 1069 1507 318632 156581 6.95914 6.95914 -294.439 -6.95914 0 0 787024. 2723.27 0.20 0.16 0.15 -1 -1 0.20 0.0556205 0.0494543 100 98 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml adder_064bits.v common 10.92 vpr 63.64 MiB 0.04 6584 -1 -1 26 0.15 -1 -1 32604 -1 -1 19 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 24.7 MiB 4.34 1780 46568 16006 26324 4238 63.6 MiB 0.25 0.00 9.37941 -468.754 -9.37941 9.37941 0.67 0.00135586 0.00126941 0.109716 0.102823 36 3957 39 6.79088e+06 255968 648988. 2245.63 3.58 0.49778 0.448354 25390 158009 -1 3260 14 1249 1621 102007 25537 8.75291 8.75291 -440.979 -8.75291 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0394467 0.0357159 133 132 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 2.62 vpr 61.15 MiB 0.02 6100 -1 -1 1 0.02 -1 -1 30060 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62616 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.6 MiB 0.02 29 285 62 205 18 61.1 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.71 7.0308e-05 6.3187e-05 0.00176289 0.00157812 18 105 9 6.87369e+06 13973.8 376052. 1301.22 0.44 0.0047689 0.00427134 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00279541 0.00253068 8 2 5 5 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.18 MiB 0.01 6176 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62644 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.6 MiB 0.03 77 376 88 272 16 61.2 MiB 0.01 0.00 0.789073 -10.1499 -0.789073 0.789073 0.65 8.7824e-05 7.9843e-05 0.00193658 0.00175777 18 164 14 6.87369e+06 27947.7 376052. 1301.22 0.44 0.00578992 0.00509344 22882 88689 -1 147 11 71 71 2907 994 0.914373 0.914373 -11.3046 -0.914373 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00365629 0.00322932 10 2 6 6 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 2.71 vpr 61.23 MiB 0.01 6080 -1 -1 1 0.02 -1 -1 30032 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62700 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.6 MiB 0.04 78 444 92 346 6 61.2 MiB 0.01 0.00 0.811073 -13.1985 -0.811073 0.811073 0.68 0.000104357 9.5107e-05 0.00217775 0.00198031 18 261 23 6.87369e+06 27947.7 376052. 1301.22 0.45 0.00846248 0.00733992 22882 88689 -1 206 10 111 111 5751 1825 1.06167 1.06167 -15.482 -1.06167 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00338245 0.00298701 12 2 7 7 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.92 vpr 61.31 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 29848 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62780 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.7 MiB 0.05 164 1102 278 658 166 61.3 MiB 0.02 0.00 0.833073 -17.1401 -0.833073 0.833073 0.67 0.000150045 0.000137523 0.00588988 0.00537748 26 350 12 6.87369e+06 27947.7 503264. 1741.40 0.62 0.019408 0.016588 24322 120374 -1 344 11 172 172 16807 3937 1.05067 1.05067 -19.2271 -1.05067 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00399244 0.00349402 14 2 8 8 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.91 vpr 61.46 MiB 0.03 6080 -1 -1 1 0.03 -1 -1 29972 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62940 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.8 MiB 0.06 117 862 186 627 49 61.5 MiB 0.01 0.00 1.38906 -18.532 -1.38906 1.38906 0.65 0.000138896 0.000127612 0.00358769 0.00330198 26 367 24 6.87369e+06 41921.5 503264. 1741.40 0.59 0.0195547 0.0164235 24322 120374 -1 302 12 192 192 11322 3550 1.11467 1.11467 -21.4021 -1.11467 0 0 618332. 2139.56 0.18 0.01 0.12 -1 -1 0.18 0.0042945 0.00374442 17 2 9 9 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 2.93 vpr 61.27 MiB 0.02 6076 -1 -1 1 0.03 -1 -1 30192 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62736 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.6 MiB 0.05 109 1525 373 1057 95 61.3 MiB 0.02 0.00 1.2154 -20.8491 -1.2154 1.2154 0.65 0.000156775 0.000144444 0.00591041 0.00544482 30 288 13 6.87369e+06 41921.5 556674. 1926.21 0.65 0.0231395 0.0197269 25186 138497 -1 215 15 199 199 7654 2862 1.08167 1.08167 -22.8352 -1.08167 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00633098 0.00540553 18 2 10 10 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.08 vpr 61.20 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30044 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62668 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.8 MiB 0.05 195 882 180 665 37 61.2 MiB 0.01 0.00 1.2264 -24.8855 -1.2264 1.2264 0.71 0.000209462 0.000193512 0.00415639 0.00382763 26 454 15 6.87369e+06 41921.5 503264. 1741.40 0.64 0.0250019 0.0211696 24322 120374 -1 422 13 236 236 19643 4836 1.00037 1.00037 -27.4072 -1.00037 0 0 618332. 2139.56 0.19 0.02 0.11 -1 -1 0.19 0.00583501 0.00506691 20 2 11 11 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.04 vpr 61.43 MiB 0.02 6120 -1 -1 1 0.03 -1 -1 30004 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.0 MiB 0.06 144 2885 1076 1578 231 61.4 MiB 0.03 0.00 1.2374 -27.0881 -1.2374 1.2374 0.66 0.000229592 0.000212414 0.011456 0.0105854 26 522 24 6.87369e+06 41921.5 503264. 1741.40 0.66 0.036044 0.0309881 24322 120374 -1 432 11 246 246 25419 6521 1.27297 1.27297 -32.5697 -1.27297 0 0 618332. 2139.56 0.17 0.03 0.11 -1 -1 0.17 0.00892762 0.00759384 22 2 12 12 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.14 vpr 61.39 MiB 0.01 6160 -1 -1 1 0.02 -1 -1 30032 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62860 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.06 161 3141 1140 1427 574 61.4 MiB 0.03 0.00 1.2484 -30.254 -1.2484 1.2484 0.67 0.000249444 0.000230864 0.0127135 0.0117698 30 483 13 6.87369e+06 55895.4 556674. 1926.21 0.68 0.0357906 0.031048 25186 138497 -1 417 18 332 332 25461 6749 1.23997 1.23997 -32.3745 -1.23997 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00813288 0.0069899 24 2 13 13 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.08 vpr 61.46 MiB 0.03 6176 -1 -1 1 0.03 -1 -1 30008 -1 -1 4 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 62936 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.1 MiB 0.06 257 1698 288 1343 67 61.5 MiB 0.02 0.00 1.2594 -33.773 -1.2594 1.2594 0.65 0.000224753 0.000208541 0.0059376 0.00550688 30 636 21 6.87369e+06 55895.4 556674. 1926.21 0.67 0.0338937 0.0289757 25186 138497 -1 556 13 252 252 17457 4364 1.16967 1.16967 -37.8151 -1.16967 0 0 706193. 2443.58 0.22 0.03 0.12 -1 -1 0.22 0.00956834 0.00822968 26 2 14 14 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.23 vpr 61.54 MiB 0.01 6132 -1 -1 1 0.02 -1 -1 30124 -1 -1 4 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 63016 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.1 MiB 0.07 199 2525 555 1893 77 61.5 MiB 0.03 0.00 1.2704 -35.5781 -1.2704 1.2704 0.66 0.000295296 0.000274169 0.00987626 0.00915734 26 688 26 6.87369e+06 55895.4 503264. 1741.40 0.69 0.0431168 0.0371423 24322 120374 -1 552 13 342 342 21118 6466 1.12567 1.12567 -39.0948 -1.12567 0 0 618332. 2139.56 0.21 0.01 0.12 -1 -1 0.21 0.0057059 0.00496797 28 2 15 15 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.87 vpr 61.66 MiB 0.02 6084 -1 -1 1 0.03 -1 -1 30344 -1 -1 4 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 63144 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.2 MiB 0.11 254 5703 2371 3279 53 61.7 MiB 0.05 0.00 1.2814 -38.5865 -1.2814 1.2814 0.66 0.000304379 0.000282065 0.0205001 0.0189797 36 743 32 6.87369e+06 55895.4 648988. 2245.63 1.28 0.0728403 0.0627058 26050 158493 -1 559 22 432 432 29016 7596 1.17597 1.17597 -38.2444 -1.17597 0 0 828058. 2865.25 0.21 0.03 0.16 -1 -1 0.21 0.0110775 0.00951649 31 2 16 16 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.57 MiB 0.03 6208 -1 -1 1 0.02 -1 -1 30244 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63044 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.0 MiB 0.16 339 2768 498 2177 93 61.6 MiB 0.03 0.00 1.65273 -43.0941 -1.65273 1.65273 0.65 0.000319723 0.000296981 0.00974148 0.00904919 30 844 15 6.87369e+06 69869.2 556674. 1926.21 0.69 0.0394877 0.0341834 25186 138497 -1 747 16 341 341 24842 6127 1.22267 1.22267 -46.5824 -1.22267 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00926254 0.00801814 33 2 17 17 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.32 vpr 61.62 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30228 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 294 6191 2575 3554 62 61.6 MiB 0.05 0.00 1.66373 -46.2163 -1.66373 1.66373 0.68 0.000340842 0.000315743 0.0211013 0.0195687 28 838 43 6.87369e+06 69869.2 531479. 1839.03 0.78 0.0679041 0.0590003 24610 126494 -1 690 17 444 444 39147 10286 1.30397 1.30397 -48.7671 -1.30397 0 0 648988. 2245.63 0.18 0.03 0.12 -1 -1 0.18 0.0110976 0.00957938 34 2 18 18 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.34 vpr 61.80 MiB 0.01 6188 -1 -1 1 0.03 -1 -1 30480 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.2 MiB 0.08 394 3301 624 2568 109 61.8 MiB 0.03 0.00 1.68573 -53.1175 -1.68573 1.68573 0.66 0.000328768 0.000306067 0.00997869 0.00930126 30 904 14 6.87369e+06 69869.2 556674. 1926.21 0.72 0.0475417 0.0410943 25186 138497 -1 797 14 388 388 23146 6118 1.15867 1.15867 -53.1603 -1.15867 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0101719 0.00881235 38 2 20 20 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.34 vpr 61.74 MiB 0.01 6208 -1 -1 1 0.04 -1 -1 30344 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.2 MiB 0.10 378 8210 2985 4229 996 61.7 MiB 0.06 0.00 1.70773 -58.8485 -1.70773 1.70773 0.68 0.00042459 0.000394706 0.0249675 0.0232242 32 984 15 6.87369e+06 83843 586450. 2029.24 0.77 0.0684882 0.0601848 25474 144626 -1 837 15 474 474 34249 9299 1.25567 1.25567 -59.9491 -1.25567 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.0125641 0.0109129 42 2 22 22 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 3.84 vpr 61.85 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 30300 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.13 726 8754 2873 4502 1379 61.9 MiB 0.06 0.00 1.72973 -73.6047 -1.72973 1.72973 0.68 0.000465959 0.000433528 0.0261596 0.0243438 34 1433 18 6.87369e+06 83843 618332. 2139.56 1.19 0.105255 0.091708 25762 151098 -1 1320 19 593 593 59737 12698 1.19167 1.19167 -70.5448 -1.19167 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0157244 0.0136661 47 2 24 24 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.87 vpr 61.85 MiB 0.03 6244 -1 -1 1 0.03 -1 -1 30356 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.3 MiB 0.09 625 7256 1774 5266 216 61.9 MiB 0.06 0.00 2.11206 -76.8475 -2.11206 2.11206 0.69 0.000422817 0.000393817 0.0209851 0.0195604 34 1477 19 6.87369e+06 97816.9 618332. 2139.56 1.19 0.104641 0.0910665 25762 151098 -1 1234 15 608 608 61449 14229 1.34167 1.34167 -76.3842 -1.34167 0 0 787024. 2723.27 0.21 0.04 0.15 -1 -1 0.21 0.0140436 0.0123091 50 2 26 26 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 3.97 vpr 62.08 MiB 0.03 6284 -1 -1 1 0.03 -1 -1 30108 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 776 15004 5726 8363 915 62.1 MiB 0.10 0.00 2.15606 -94.9711 -2.15606 2.15606 0.68 0.00049284 0.00045922 0.038032 0.0353989 34 1613 19 6.87369e+06 111791 618332. 2139.56 1.21 0.133854 0.117878 25762 151098 -1 1483 17 717 717 66075 14749 1.33697 1.33697 -88.3319 -1.33697 0 0 787024. 2723.27 0.23 0.05 0.14 -1 -1 0.23 0.0188411 0.0166286 58 2 30 30 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.15 vpr 62.26 MiB 0.02 6316 -1 -1 1 0.03 -1 -1 30400 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.11 954 16046 4777 9693 1576 62.3 MiB 0.09 0.00 2.56039 -113.756 -2.56039 2.56039 0.68 0.000416276 0.000382484 0.0323641 0.030007 34 2130 16 6.87369e+06 125765 618332. 2139.56 1.43 0.127044 0.11157 25762 151098 -1 1787 15 792 792 74414 16730 1.39467 1.39467 -104.5 -1.39467 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0267273 0.0237342 66 2 34 34 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.80 vpr 63.08 MiB 0.04 6680 -1 -1 1 0.03 -1 -1 30260 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1267 31119 10636 17936 2547 63.1 MiB 0.19 0.00 3.45705 -187.252 -3.45705 3.45705 0.67 0.000866354 0.000811486 0.0652057 0.0611076 34 3112 27 6.87369e+06 181660 618332. 2139.56 1.87 0.246571 0.221407 25762 151098 -1 2639 15 1172 1172 115640 25841 1.66097 1.66097 -158.316 -1.66097 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0272897 0.024447 98 2 50 50 0 0 -fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 7.11 vpr 63.58 MiB 0.03 6748 -1 -1 1 0.04 -1 -1 30320 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1676 49117 18403 27988 2726 63.6 MiB 0.30 0.01 4.35372 -277.769 -4.35372 4.35372 0.67 0.00138414 0.00129463 0.0958201 0.0898955 38 3774 17 6.87369e+06 237555 678818. 2348.85 4.00 0.434922 0.393102 26626 170182 -1 3207 16 1541 1541 147996 32812 1.85967 1.85967 -213.59 -1.85967 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0382639 0.0345451 130 2 66 66 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 2.64 vpr 60.99 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 29900 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.4 MiB 0.02 29 285 62 205 18 61.0 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.66 7.0281e-05 6.3174e-05 0.00177475 0.00158971 18 105 9 6.89349e+06 14093.8 376052. 1301.22 0.46 0.00486865 0.00436213 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00193885 0.00180429 8 2 5 5 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 2.74 vpr 61.37 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 29896 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62844 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.8 MiB 0.05 78 376 85 271 20 61.4 MiB 0.01 0.00 0.828273 -10.1712 -0.828273 0.828273 0.66 8.7255e-05 7.9141e-05 0.00195941 0.00177683 18 170 7 6.89349e+06 28187.7 376052. 1301.22 0.50 0.00661946 0.0060564 22882 88689 -1 164 10 60 60 2719 975 0.87204 0.87204 -11.6748 -0.87204 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.0032222 0.00287079 10 2 6 6 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 2.73 vpr 61.13 MiB 0.03 5976 -1 -1 1 0.03 -1 -1 30044 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.5 MiB 0.04 78 444 92 346 6 61.1 MiB 0.01 0.00 0.850273 -13.3945 -0.850273 0.850273 0.68 0.000123469 0.00011253 0.00251789 0.00228139 18 265 10 6.89349e+06 28187.7 376052. 1301.22 0.45 0.00629213 0.00559388 22882 88689 -1 213 11 119 119 6760 2059 0.975573 0.975573 -15.1768 -0.975573 0 0 470940. 1629.55 0.15 0.01 0.10 -1 -1 0.15 0.00367489 0.00328141 12 2 7 7 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.49 vpr 61.22 MiB 0.01 6012 -1 -1 1 0.02 -1 -1 30056 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62688 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.6 MiB 0.04 200 1012 243 655 114 61.2 MiB 0.01 0.00 0.872273 -18.5692 -0.872273 0.872273 0.65 0.000121904 0.000111517 0.00448231 0.00411053 24 432 15 6.89349e+06 28187.7 470940. 1629.55 1.25 0.0376156 0.0310544 24034 113901 -1 407 11 172 172 14117 3086 1.06167 1.06167 -21.3831 -1.06167 0 0 586450. 2029.24 0.16 0.01 0.11 -1 -1 0.16 0.00429559 0.0037877 14 2 8 8 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.05 vpr 61.16 MiB 0.01 6028 -1 -1 1 0.02 -1 -1 29964 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.5 MiB 0.09 118 862 183 616 63 61.2 MiB 0.01 0.00 1.2657 -18.4312 -1.2657 1.2657 0.66 0.000140098 0.000128724 0.00356136 0.00327094 28 343 16 6.89349e+06 42281.5 531479. 1839.03 0.70 0.0197091 0.0166329 24610 126494 -1 278 12 173 173 9204 2785 1.08787 1.08787 -20.7701 -1.08787 0 0 648988. 2245.63 0.17 0.01 0.12 -1 -1 0.17 0.0049179 0.00429209 17 2 9 9 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.07 vpr 61.41 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 30076 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62888 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.8 MiB 0.06 149 1217 254 894 69 61.4 MiB 0.01 0.00 1.2326 -21.9687 -1.2326 1.2326 0.67 0.000160338 0.000147814 0.0049584 0.00458339 30 358 10 6.89349e+06 42281.5 556674. 1926.21 0.68 0.0246886 0.0212999 25186 138497 -1 321 16 186 186 12484 3682 1.00232 1.00232 -23.8775 -1.00232 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.005796 0.0049871 18 2 10 10 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.07 vpr 61.27 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 30080 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62744 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.8 MiB 0.06 200 932 174 705 53 61.3 MiB 0.01 0.00 1.2436 -25.1484 -1.2436 1.2436 0.68 0.000174877 0.00016186 0.003772 0.00349402 26 461 11 6.89349e+06 42281.5 503264. 1741.40 0.63 0.023094 0.0196071 24322 120374 -1 420 11 219 219 14780 3879 1.00037 1.00037 -27.3852 -1.00037 0 0 618332. 2139.56 0.18 0.02 0.11 -1 -1 0.18 0.00780658 0.00688177 20 2 11 11 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.13 vpr 61.19 MiB 0.03 6060 -1 -1 1 0.02 -1 -1 30008 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62660 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.8 MiB 0.05 144 2828 1054 1431 343 61.2 MiB 0.02 0.00 1.2546 -27.4315 -1.2546 1.2546 0.66 0.000191502 0.00017707 0.0101408 0.00937194 32 374 10 6.89349e+06 42281.5 586450. 2029.24 0.68 0.0304 0.0262275 25474 144626 -1 343 12 206 206 13022 3666 1.02237 1.02237 -27.4544 -1.02237 0 0 744469. 2576.02 0.21 0.03 0.13 -1 -1 0.21 0.00951205 0.00812297 22 2 12 12 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.13 vpr 61.35 MiB 0.02 6048 -1 -1 1 0.03 -1 -1 29988 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.05 160 3141 1095 1440 606 61.4 MiB 0.03 0.00 1.2656 -30.185 -1.2656 1.2656 0.66 0.000245974 0.00022759 0.011324 0.0104815 30 467 12 6.89349e+06 56375.4 556674. 1926.21 0.67 0.0337847 0.0291761 25186 138497 -1 386 14 243 243 14853 3925 1.15867 1.15867 -31.0145 -1.15867 0 0 706193. 2443.58 0.26 0.02 0.13 -1 -1 0.26 0.0068877 0.00603854 24 2 13 13 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.17 vpr 61.41 MiB 0.02 6224 -1 -1 1 0.02 -1 -1 30084 -1 -1 4 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 62884 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.0 MiB 0.05 266 2346 496 1701 149 61.4 MiB 0.02 0.00 1.2766 -33.6936 -1.2766 1.2766 0.72 0.000263537 0.000243992 0.00937388 0.00868446 30 630 15 6.89349e+06 56375.4 556674. 1926.21 0.69 0.0355263 0.0306465 25186 138497 -1 552 10 238 238 15903 3959 1.14287 1.14287 -36.6551 -1.14287 0 0 706193. 2443.58 0.19 0.03 0.08 -1 -1 0.19 0.0107139 0.00920244 26 2 14 14 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.02 vpr 61.32 MiB 0.03 6140 -1 -1 1 0.03 -1 -1 30112 -1 -1 4 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 62796 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.06 176 2845 630 2149 66 61.3 MiB 0.04 0.00 1.2876 -35.1215 -1.2876 1.2876 0.66 0.000317056 0.000293655 0.0164775 0.0152256 26 673 35 6.89349e+06 56375.4 503264. 1741.40 1.52 0.0811743 0.0691527 24322 120374 -1 579 12 333 333 22000 6590 1.27917 1.27917 -40.8337 -1.27917 0 0 618332. 2139.56 0.22 0.02 0.13 -1 -1 0.22 0.00899422 0.00797406 28 2 15 15 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 3.17 vpr 61.52 MiB 0.03 6028 -1 -1 1 0.02 -1 -1 30236 -1 -1 4 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 63000 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.0 MiB 0.07 407 5703 1643 3514 546 61.5 MiB 0.04 0.00 1.2986 -43.2206 -1.2986 1.2986 0.66 0.000252206 0.000233258 0.0192145 0.0177633 32 861 15 6.89349e+06 56375.4 586450. 2029.24 0.71 0.0471833 0.0413288 25474 144626 -1 772 16 354 354 33051 7619 1.17597 1.17597 -43.3002 -1.17597 0 0 744469. 2576.02 0.19 0.03 0.14 -1 -1 0.19 0.00894542 0.00776425 31 2 16 16 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.59 MiB 0.02 6160 -1 -1 1 0.03 -1 -1 30240 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.1 MiB 0.15 339 2477 446 1968 63 61.6 MiB 0.02 0.00 1.66993 -43.2794 -1.66993 1.66993 0.66 0.000275121 0.00025543 0.00767111 0.00711693 30 841 17 6.89349e+06 70469.2 556674. 1926.21 0.70 0.0389343 0.0334446 25186 138497 -1 753 13 329 329 22766 5542 1.33217 1.33217 -47.2275 -1.33217 0 0 706193. 2443.58 0.19 0.02 0.11 -1 -1 0.19 0.00812679 0.00708604 33 2 17 17 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.31 vpr 61.48 MiB 0.02 6176 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62960 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 533 6191 2070 2945 1176 61.5 MiB 0.04 0.00 1.68093 -51.8948 -1.68093 1.68093 0.66 0.000290552 0.000269498 0.0182119 0.0168976 32 1018 16 6.89349e+06 70469.2 586450. 2029.24 0.72 0.0526262 0.0460119 25474 144626 -1 972 16 402 402 40039 8856 1.34797 1.34797 -56.3309 -1.34797 0 0 744469. 2576.02 0.23 0.04 0.13 -1 -1 0.23 0.0131992 0.0115226 34 2 18 18 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.19 vpr 61.73 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30264 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 23.2 MiB 0.07 387 3901 827 2954 120 61.7 MiB 0.04 0.00 1.70293 -53.0623 -1.70293 1.70293 0.66 0.000389504 0.000362966 0.0140394 0.0130766 32 965 15 6.89349e+06 70469.2 586450. 2029.24 0.73 0.0497377 0.0431747 25474 144626 -1 812 13 414 414 32698 8490 1.11467 1.11467 -51.9686 -1.11467 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.00981715 0.00856157 38 2 20 20 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.84 vpr 61.52 MiB 0.02 6156 -1 -1 1 0.03 -1 -1 30352 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 22.9 MiB 0.08 542 9176 2598 5872 706 61.5 MiB 0.07 0.00 1.72493 -64.2553 -1.72493 1.72493 0.68 0.000427384 0.000398049 0.0292834 0.0272484 34 1221 18 6.89349e+06 84563 618332. 2139.56 1.20 0.107211 0.0930607 25762 151098 -1 1089 13 448 448 37853 8705 1.18067 1.18067 -62.7217 -1.18067 0 0 787024. 2723.27 0.21 0.03 0.14 -1 -1 0.21 0.0103702 0.00904003 42 2 22 22 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 3.81 vpr 61.78 MiB 0.01 6192 -1 -1 1 0.03 -1 -1 30444 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.12 723 8754 3239 4614 901 61.8 MiB 0.06 0.00 1.74693 -73.4399 -1.74693 1.74693 0.66 0.000389849 0.000362479 0.0231872 0.0215623 34 1405 14 6.89349e+06 84563 618332. 2139.56 1.23 0.104966 0.0908459 25762 151098 -1 1319 12 478 478 44532 9854 1.16487 1.16487 -69.1891 -1.16487 0 0 787024. 2723.27 0.21 0.03 0.15 -1 -1 0.21 0.00899502 0.00792887 47 2 24 24 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 3.72 vpr 61.84 MiB 0.03 6368 -1 -1 1 0.03 -1 -1 30312 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.2 MiB 0.10 631 6906 1526 5153 227 61.8 MiB 0.05 0.00 2.12926 -78.3694 -2.12926 2.12926 0.65 0.000415919 0.000386967 0.017901 0.016691 34 1472 17 6.89349e+06 98656.9 618332. 2139.56 1.14 0.0987786 0.085825 25762 151098 -1 1305 16 554 554 53475 11899 1.20067 1.20067 -74.546 -1.20067 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0137468 0.0120008 50 2 26 26 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 3.93 vpr 61.91 MiB 0.03 6408 -1 -1 1 0.03 -1 -1 29984 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 23.5 MiB 0.09 807 15217 5536 8453 1228 61.9 MiB 0.09 0.00 2.17326 -96.6426 -2.17326 2.17326 0.67 0.000488645 0.000454915 0.0362765 0.033811 34 1706 22 6.89349e+06 112751 618332. 2139.56 1.24 0.134486 0.118283 25762 151098 -1 1506 13 634 634 52882 12034 1.38087 1.38087 -90.2802 -1.38087 0 0 787024. 2723.27 0.22 0.04 0.14 -1 -1 0.22 0.0136986 0.0121331 58 2 30 30 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 3.93 vpr 61.96 MiB 0.02 6308 -1 -1 1 0.03 -1 -1 30472 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.5 MiB 0.10 932 16046 5153 9164 1729 62.0 MiB 0.10 0.00 2.57759 -112.715 -2.57759 2.57759 0.66 0.000567205 0.000529745 0.0376243 0.035133 34 1931 21 6.89349e+06 126845 618332. 2139.56 1.21 0.148713 0.131075 25762 151098 -1 1724 12 674 674 55073 12631 1.42297 1.42297 -103.442 -1.42297 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0156217 0.0138238 66 2 34 34 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.24 vpr 62.80 MiB 0.03 6468 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.1 MiB 0.09 1295 31119 10716 17608 2795 62.8 MiB 0.19 0.00 3.47425 -188.48 -3.47425 3.47425 0.66 0.000876758 0.000822682 0.0660818 0.0619761 34 3041 16 6.89349e+06 183220 618332. 2139.56 1.49 0.235846 0.212257 25762 151098 -1 2661 17 1201 1201 117945 26410 1.80817 1.80817 -167.482 -1.80817 0 0 787024. 2723.27 0.21 0.08 0.11 -1 -1 0.21 0.0294933 0.0263278 98 2 50 50 0 0 -fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.21 vpr 63.39 MiB 0.04 6768 -1 -1 1 0.05 -1 -1 30248 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.6 MiB 0.14 1716 49117 18160 27971 2986 63.4 MiB 0.31 0.01 4.37092 -279.363 -4.37092 4.37092 0.66 0.00119557 0.00112429 0.0996286 0.0936119 34 4563 35 6.89349e+06 239595 618332. 2139.56 2.07 0.317301 0.288503 25762 151098 -1 3491 15 1497 1497 159197 35778 1.79097 1.79097 -213.79 -1.79097 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0361634 0.0326969 130 2 66 66 0 0 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.35 vpr 60.85 MiB 0.01 6024 -1 -1 1 0.05 -1 -1 31840 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62312 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 22.3 MiB 0.01 50 298 76 216 6 60.9 MiB 0.01 0.00 0.701249 -6.72129 -0.701249 0.701249 0.95 9.2721e-05 8.3047e-05 0.00210233 0.0018767 20 111 5 6.55708e+06 24110 394039. 1363.46 0.56 0.00472379 0.00426113 19870 87366 -1 112 7 31 31 1535 531 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.16 0.01 0.12 -1 -1 0.16 0.0027288 0.00249642 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.50 vpr 61.01 MiB 0.01 5816 -1 -1 2 0.05 -1 -1 31892 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62472 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 22.4 MiB 0.01 72 444 121 288 35 61.0 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.95 0.000147916 0.000134485 0.00301238 0.00273498 22 213 10 6.55708e+06 24110 420624. 1455.45 0.64 0.0194369 0.0168614 20158 92377 -1 158 12 95 98 5293 1758 0.83871 0.83871 -12.913 -0.83871 0 0 500653. 1732.36 0.17 0.01 0.13 -1 -1 0.17 0.0048254 0.00430326 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.60 vpr 61.00 MiB 0.02 6064 -1 -1 3 0.06 -1 -1 31956 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62468 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 22.4 MiB 0.01 91 855 163 648 44 61.0 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.95 0.000177402 0.000162269 0.00519947 0.00475699 24 295 11 6.55708e+06 36165 448715. 1552.65 0.71 0.0249257 0.0217293 20734 103517 -1 254 10 116 129 6964 2198 1.50711 1.50711 -17.293 -1.50711 0 0 554710. 1919.41 0.18 0.01 0.15 -1 -1 0.18 0.00501074 0.00449096 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.69 vpr 60.88 MiB 0.01 5880 -1 -1 3 0.06 -1 -1 32376 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62336 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.01 99 1014 271 604 139 60.9 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.96 0.000203904 0.000186784 0.0059962 0.00548251 26 398 20 6.55708e+06 36165 477104. 1650.88 0.77 0.0318265 0.027733 21022 109990 -1 272 8 150 171 7737 2724 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.19 0.01 0.16 -1 -1 0.19 0.00489735 0.00439557 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.85 vpr 61.05 MiB 0.01 5884 -1 -1 3 0.07 -1 -1 32092 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62512 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 22.2 MiB 0.06 120 628 136 477 15 61.0 MiB 0.01 0.00 1.70831 -21.0872 -1.70831 1.70831 0.96 0.000251482 0.000230868 0.00407859 0.00374317 28 337 17 6.55708e+06 48220 500653. 1732.36 1.89 0.0668127 0.057696 21310 115450 -1 293 12 147 164 8042 2499 1.58811 1.58811 -21.8318 -1.58811 0 0 612192. 2118.31 0.21 0.02 0.16 -1 -1 0.21 0.00738294 0.00656787 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.70 vpr 61.07 MiB 0.02 5956 -1 -1 4 0.06 -1 -1 31980 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62532 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.3 MiB 0.02 142 1229 224 959 46 61.1 MiB 0.02 0.00 1.58811 -24.8435 -1.58811 1.58811 0.95 0.000261776 0.000240893 0.00688308 0.00632377 26 425 11 6.55708e+06 48220 477104. 1650.88 0.77 0.0357697 0.0312968 21022 109990 -1 380 16 211 268 12350 3922 1.59011 1.59011 -25.4098 -1.59011 0 0 585099. 2024.56 0.19 0.02 0.16 -1 -1 0.19 0.00945114 0.00833258 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.45 vpr 61.21 MiB 0.03 5844 -1 -1 4 0.06 -1 -1 31764 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 21 11 69 80 1 54 37 17 17 289 -1 unnamed_device 22.7 MiB 0.05 255 1379 224 1089 66 61.2 MiB 0.02 0.00 1.74751 -29.3828 -1.74751 1.74751 0.98 0.000301732 0.000278383 0.00759182 0.0070033 26 631 16 6.55708e+06 60275 477104. 1650.88 2.35 0.0681668 0.0593772 21022 109990 -1 573 15 226 325 21349 5594 1.59211 1.59211 -31.6197 -1.59211 0 0 585099. 2024.56 0.19 0.02 0.16 -1 -1 0.19 0.0101978 0.00903499 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.82 vpr 60.99 MiB 0.01 5896 -1 -1 5 0.04 -1 -1 32356 -1 -1 5 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 22.3 MiB 0.02 278 3032 1045 1570 417 61.0 MiB 0.03 0.00 2.03736 -35.0243 -2.03736 2.03736 0.99 0.000313724 0.000288155 0.0147363 0.0135526 26 630 14 6.55708e+06 60275 477104. 1650.88 0.80 0.05062 0.044825 21022 109990 -1 591 12 246 332 19803 5342 2.03736 2.03736 -37.4544 -2.03736 0 0 585099. 2024.56 0.20 0.02 0.16 -1 -1 0.20 0.00906154 0.00809068 35 16 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.90 vpr 61.21 MiB 0.01 6096 -1 -1 5 0.06 -1 -1 31996 -1 -1 6 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62684 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 22.5 MiB 0.02 261 1738 345 1379 14 61.2 MiB 0.02 0.00 2.11777 -37.2459 -2.11777 2.11777 0.96 0.000351899 0.000323529 0.00882293 0.00811274 28 700 13 6.55708e+06 72330 500653. 1732.36 0.90 0.0481305 0.0424594 21310 115450 -1 582 11 253 352 21177 5630 1.7847 1.7847 -38.388 -1.7847 0 0 612192. 2118.31 0.20 0.02 0.17 -1 -1 0.20 0.00821106 0.00733367 40 20 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.91 vpr 61.17 MiB 0.03 6144 -1 -1 5 0.06 -1 -1 32156 -1 -1 7 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62636 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.5 MiB 0.02 359 1875 334 1509 32 61.2 MiB 0.02 0.00 1.74751 -38.0286 -1.74751 1.74751 0.95 0.000399123 0.000368654 0.00960368 0.00887756 26 782 16 6.55708e+06 84385 477104. 1650.88 0.88 0.055629 0.0490976 21022 109990 -1 739 13 288 437 26332 6701 1.61564 1.61564 -41.0607 -1.61564 0 0 585099. 2024.56 0.19 0.03 0.16 -1 -1 0.19 0.0114245 0.0101843 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.89 vpr 61.09 MiB 0.01 6012 -1 -1 6 0.08 -1 -1 31864 -1 -1 7 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62560 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.6 MiB 0.04 393 3811 1258 2017 536 61.1 MiB 0.04 0.00 2.47436 -47.7903 -2.47436 2.47436 0.95 0.000410482 0.000378211 0.0175403 0.0161537 26 836 30 6.55708e+06 84385 477104. 1650.88 0.89 0.0766164 0.0677414 21022 109990 -1 781 10 297 399 27292 6696 2.23396 2.23396 -48.1296 -2.23396 0 0 585099. 2024.56 0.20 0.03 0.12 -1 -1 0.20 0.0100811 0.00903196 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.17 vpr 61.22 MiB 0.02 5976 -1 -1 6 0.06 -1 -1 31852 -1 -1 9 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62688 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 22.7 MiB 0.14 318 5620 1687 2850 1083 61.2 MiB 0.04 0.00 2.31696 -46.1298 -2.31696 2.31696 0.95 0.000322878 0.000295631 0.0181944 0.0166554 28 899 16 6.55708e+06 108495 500653. 1732.36 1.00 0.0708566 0.0627012 21310 115450 -1 747 12 319 467 28038 7282 2.07656 2.07656 -46.8018 -2.07656 0 0 612192. 2118.31 0.20 0.03 0.17 -1 -1 0.20 0.0125221 0.0111438 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.94 vpr 61.47 MiB 0.01 6004 -1 -1 7 0.06 -1 -1 31832 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 23.0 MiB 0.03 550 4526 1045 3142 339 61.5 MiB 0.04 0.00 3.16202 -64.7432 -3.16202 3.16202 0.95 0.000463838 0.000428431 0.0203095 0.0187574 30 1080 27 6.55708e+06 84385 526063. 1820.29 0.90 0.08197 0.0728203 21886 126133 -1 971 12 307 433 28025 6683 2.92162 2.92162 -64.2421 -2.92162 0 0 666494. 2306.21 0.22 0.03 0.18 -1 -1 0.22 0.0128013 0.011434 51 26 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 6.02 vpr 61.43 MiB 0.01 5940 -1 -1 7 0.07 -1 -1 32640 -1 -1 8 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62904 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 22.7 MiB 0.20 514 6795 1522 4730 543 61.4 MiB 0.06 0.00 3.00462 -67.1078 -3.00462 3.00462 0.96 0.000542022 0.000497119 0.0304047 0.0280285 30 1090 15 6.55708e+06 96440 526063. 1820.29 2.69 0.171612 0.152175 21886 126133 -1 946 13 343 485 26736 6931 2.76422 2.76422 -66.3273 -2.76422 0 0 666494. 2306.21 0.22 0.03 0.18 -1 -1 0.22 0.0157454 0.0141273 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.43 vpr 61.74 MiB 0.02 6248 -1 -1 8 0.07 -1 -1 32048 -1 -1 10 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 23.1 MiB 0.15 466 7224 1587 4756 881 61.7 MiB 0.06 0.00 3.12482 -72.4463 -3.12482 3.12482 0.94 0.000585941 0.000537805 0.0296336 0.0273828 26 1176 14 6.55708e+06 120550 477104. 1650.88 1.03 0.0959116 0.0860609 21022 109990 -1 992 60 521 751 349760 277715 2.88442 2.88442 -73.8868 -2.88442 0 0 585099. 2024.56 0.20 0.22 0.16 -1 -1 0.20 0.0605657 0.0536567 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.97 vpr 61.59 MiB 0.03 6236 -1 -1 9 0.07 -1 -1 32300 -1 -1 11 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 22.9 MiB 0.06 700 10219 3011 5707 1501 61.6 MiB 0.08 0.00 3.23076 -85.7251 -3.23076 3.23076 0.96 0.000636299 0.000587737 0.040168 0.0371027 30 1350 16 6.55708e+06 132605 526063. 1820.29 2.73 0.217915 0.194235 21886 126133 -1 1250 15 429 583 35763 8490 2.9787 2.9787 -84.954 -2.9787 0 0 666494. 2306.21 0.21 0.04 0.18 -1 -1 0.21 0.0202543 0.018224 74 40 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 6.42 vpr 61.94 MiB 0.01 6140 -1 -1 10 0.07 -1 -1 32668 -1 -1 11 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63428 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 23.3 MiB 0.23 510 10687 3828 4882 1977 61.9 MiB 0.08 0.00 3.62716 -93.9579 -3.62716 3.62716 0.95 0.000577829 0.000539911 0.0408866 0.0377321 34 1348 13 6.55708e+06 132605 585099. 2024.56 3.01 0.222018 0.198376 22462 138074 -1 1076 12 464 619 34731 9575 3.50696 3.50696 -93.1779 -3.50696 0 0 742403. 2568.87 0.24 0.04 0.20 -1 -1 0.24 0.0188192 0.0170145 79 43 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.65 vpr 61.80 MiB 0.01 6420 -1 -1 11 0.08 -1 -1 32568 -1 -1 14 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 23.0 MiB 0.23 782 9380 2186 6081 1113 61.8 MiB 0.07 0.00 4.46034 -123.44 -4.46034 4.46034 0.96 0.000605841 0.000559835 0.0339911 0.0314438 30 1804 48 6.55708e+06 168770 526063. 1820.29 1.19 0.174767 0.156836 21886 126133 -1 1460 13 570 852 45024 11444 3.85934 3.85934 -118.77 -3.85934 0 0 666494. 2306.21 0.22 0.05 0.18 -1 -1 0.22 0.0236573 0.0213575 93 57 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.68 vpr 62.28 MiB 0.01 6352 -1 -1 13 0.08 -1 -1 32060 -1 -1 15 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 23.4 MiB 0.44 1034 16493 4993 9000 2500 62.3 MiB 0.11 0.00 4.49339 -150.828 -4.49339 4.49339 0.96 0.000937882 0.00086809 0.0590234 0.0546171 28 2094 24 6.55708e+06 180825 500653. 1732.36 1.03 0.179539 0.162231 21310 115450 -1 1921 12 695 915 63028 15444 4.26336 4.26336 -151.13 -4.26336 0 0 612192. 2118.31 0.20 0.06 0.16 -1 -1 0.20 0.0249062 0.0225707 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 7.38 vpr 62.89 MiB 0.02 6432 -1 -1 19 0.11 -1 -1 32496 -1 -1 24 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1415 34950 10191 20929 3830 62.9 MiB 0.22 0.00 6.91256 -283.047 -6.91256 6.91256 0.96 0.00143473 0.00132934 0.110179 0.102108 34 2902 25 6.55708e+06 289320 585099. 2024.56 3.54 0.507859 0.460642 22462 138074 -1 2593 11 922 1294 92517 23588 6.61819 6.61819 -278.129 -6.61819 0 0 742403. 2568.87 0.23 0.08 0.20 -1 -1 0.23 0.0358744 0.0328197 160 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 12.55 vpr 63.77 MiB 0.03 6688 -1 -1 26 0.11 -1 -1 32544 -1 -1 31 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1738 52893 17102 30066 5725 63.8 MiB 0.32 0.00 9.58349 -458.959 -9.58349 9.58349 0.95 0.00192435 0.00178641 0.153331 0.142328 34 3942 23 6.55708e+06 373705 585099. 2024.56 8.61 0.838476 0.764406 22462 138074 -1 3385 12 1244 1747 115011 28796 9.09424 9.09424 -446.392 -9.09424 0 0 742403. 2568.87 0.23 0.10 0.20 -1 -1 0.23 0.0511318 0.0469612 213 132 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.34 abc 29.28 MiB 0.01 6260 -1 -1 1 0.02 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23228 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.39 abc 29.26 MiB 0.02 6300 -1 -1 1 0.03 -1 -1 29964 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23020 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.38 abc 29.34 MiB 0.03 6396 -1 -1 1 0.02 -1 -1 30044 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23352 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.46 abc 29.38 MiB 0.03 6136 -1 -1 1 0.02 -1 -1 30084 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23228 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.39 abc 29.30 MiB 0.01 6252 -1 -1 1 0.03 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23204 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.40 abc 29.33 MiB 0.01 6264 -1 -1 1 0.03 -1 -1 30036 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23244 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.40 abc 29.36 MiB 0.02 6296 -1 -1 1 0.03 -1 -1 30060 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23272 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.40 abc 29.45 MiB 0.03 6332 -1 -1 1 0.02 -1 -1 30156 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23344 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.40 abc 29.30 MiB 0.01 6436 -1 -1 1 0.02 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23364 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.38 abc 29.47 MiB 0.01 6184 -1 -1 1 0.03 -1 -1 30176 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23392 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.41 abc 29.29 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23304 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.37 abc 29.25 MiB 0.01 6484 -1 -1 1 0.03 -1 -1 29956 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23404 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.41 abc 29.58 MiB 0.01 6388 -1 -1 1 0.02 -1 -1 30292 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23776 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.38 abc 29.61 MiB 0.01 6344 -1 -1 1 0.03 -1 -1 30324 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23540 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.42 abc 29.65 MiB 0.03 6444 -1 -1 1 0.02 -1 -1 30360 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23832 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.41 abc 29.82 MiB 0.01 6280 -1 -1 1 0.03 -1 -1 30536 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23516 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.40 abc 29.66 MiB 0.01 6356 -1 -1 1 0.02 -1 -1 30376 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23880 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.36 abc 29.73 MiB 0.02 6616 -1 -1 1 0.03 -1 -1 30448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23668 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.39 abc 29.64 MiB 0.02 6516 -1 -1 1 0.03 -1 -1 30348 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23616 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.47 abc 29.82 MiB 0.03 6716 -1 -1 1 0.03 -1 -1 30532 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23984 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.45 abc 29.70 MiB 0.02 6940 -1 -1 1 0.04 -1 -1 30412 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 24276 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.35 abc 29.25 MiB 0.01 6252 -1 -1 1 0.03 -1 -1 29952 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22868 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.39 abc 29.38 MiB 0.03 6260 -1 -1 1 0.02 -1 -1 30088 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22928 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.41 abc 29.36 MiB 0.01 6260 -1 -1 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22928 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.41 abc 29.32 MiB 0.01 6304 -1 -1 1 0.03 -1 -1 30020 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23048 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.35 abc 29.46 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 30172 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23044 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.43 abc 29.31 MiB 0.03 6260 -1 -1 1 0.02 -1 -1 30012 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22900 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.40 abc 29.30 MiB 0.03 6412 -1 -1 1 0.02 -1 -1 30004 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22968 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.40 abc 29.30 MiB 0.02 6284 -1 -1 1 0.02 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23068 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.42 abc 29.35 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 30056 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22976 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.37 abc 29.36 MiB 0.02 6360 -1 -1 1 0.03 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23120 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.36 abc 29.46 MiB 0.01 6348 -1 -1 1 0.03 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22964 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.41 abc 29.36 MiB 0.01 6316 -1 -1 1 0.03 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23180 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.36 abc 29.51 MiB 0.01 6396 -1 -1 1 0.02 -1 -1 30216 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23232 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.37 abc 29.62 MiB 0.01 6408 -1 -1 1 0.02 -1 -1 30336 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23256 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.35 abc 29.62 MiB 0.01 6452 -1 -1 1 0.03 -1 -1 30332 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23508 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.43 abc 29.68 MiB 0.02 6344 -1 -1 1 0.02 -1 -1 30388 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23152 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.36 abc 29.77 MiB 0.02 6460 -1 -1 1 0.03 -1 -1 30488 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23392 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.38 abc 29.66 MiB 0.02 6356 -1 -1 1 0.03 -1 -1 30376 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23252 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.39 abc 29.69 MiB 0.01 6520 -1 -1 1 0.03 -1 -1 30404 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23656 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.40 abc 29.68 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30392 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23700 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.41 abc 29.86 MiB 0.02 6776 -1 -1 1 0.04 -1 -1 30572 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 24068 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.64 vpr 61.33 MiB 0.03 6208 -1 -1 1 0.02 -1 -1 29948 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.7 MiB 0.01 56 223 48 166 9 61.3 MiB 0.01 0.00 0.770048 -7.07635 -0.770048 0.770048 1.03 9.6654e-05 8.7089e-05 0.00201802 0.0018348 20 108 7 6.64007e+06 25116 394039. 1363.46 0.67 0.00542768 0.00486645 20530 87850 -1 104 7 26 26 1468 428 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.16 0.01 0.11 -1 -1 0.16 0.00282456 0.00257808 10 2 5 5 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.63 vpr 61.31 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 30196 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62780 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.6 MiB 0.02 63 419 85 325 9 61.3 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 1.01 0.000115703 0.000104219 0.00248269 0.00222935 22 232 10 6.64007e+06 25116 420624. 1455.45 0.70 0.0188354 0.0162609 20818 92861 -1 196 8 97 97 4416 1451 0.912248 0.912248 -13.152 -0.912248 0 0 500653. 1732.36 0.17 0.01 0.13 -1 -1 0.17 0.00390172 0.0035265 16 2 7 7 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.58 vpr 61.36 MiB 0.03 6392 -1 -1 1 0.02 -1 -1 30016 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62836 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.7 MiB 0.02 113 727 127 584 16 61.4 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.99 0.000125571 0.00011309 0.00358775 0.00322947 26 247 6 6.64007e+06 37674 477104. 1650.88 0.67 0.0135043 0.0116866 21682 110474 -1 253 10 96 96 5814 1694 0.825048 0.825048 -15.7267 -0.825048 0 0 585099. 2024.56 0.20 0.01 0.16 -1 -1 0.20 0.00487818 0.00437432 19 2 8 8 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.71 vpr 61.23 MiB 0.01 6108 -1 -1 1 0.02 -1 -1 30120 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62700 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.5 MiB 0.02 103 938 201 719 18 61.2 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.98 0.000194182 0.000177814 0.00531568 0.0048707 26 296 14 6.64007e+06 37674 477104. 1650.88 0.78 0.027702 0.0241689 21682 110474 -1 255 12 171 171 7592 2494 0.954248 0.954248 -18.6358 -0.954248 0 0 585099. 2024.56 0.23 0.02 0.16 -1 -1 0.23 0.00640486 0.00575347 22 2 9 9 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.77 vpr 61.42 MiB 0.01 6304 -1 -1 1 0.03 -1 -1 30016 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62892 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.7 MiB 0.03 174 858 170 673 15 61.4 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.98 0.000158989 0.000143916 0.00348312 0.00316506 26 351 9 6.64007e+06 50232 477104. 1650.88 0.76 0.0272919 0.0237987 21682 110474 -1 343 15 138 138 7704 2264 0.921248 0.921248 -21.734 -0.921248 0 0 585099. 2024.56 0.22 0.02 0.16 -1 -1 0.22 0.00679754 0.00601394 25 2 10 10 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.84 vpr 61.36 MiB 0.01 6232 -1 -1 1 0.02 -1 -1 30048 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62836 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.8 MiB 0.03 216 1021 207 713 101 61.4 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.99 0.000243033 0.000223112 0.00533354 0.00490576 26 442 13 6.64007e+06 50232 477104. 1650.88 0.85 0.0281258 0.0244045 21682 110474 -1 419 12 187 187 12739 3257 0.987248 0.987248 -25.9698 -0.987248 0 0 585099. 2024.56 0.23 0.02 0.16 -1 -1 0.23 0.00723711 0.0064074 28 2 11 11 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.88 vpr 61.54 MiB 0.01 6412 -1 -1 1 0.02 -1 -1 30048 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.1 MiB 0.03 214 1623 338 1262 23 61.5 MiB 0.02 0.00 1.21836 -25.661 -1.21836 1.21836 0.98 0.000272138 0.000250413 0.00831597 0.00767986 28 467 13 6.64007e+06 62790 500653. 1732.36 0.86 0.038732 0.0339266 21970 115934 -1 429 12 134 134 7869 2282 0.943248 0.943248 -27.0018 -0.943248 0 0 612192. 2118.31 0.21 0.02 0.16 -1 -1 0.21 0.00746885 0.00664669 31 2 12 12 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.67 vpr 61.50 MiB 0.01 6276 -1 -1 1 0.03 -1 -1 30260 -1 -1 5 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62980 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.8 MiB 0.04 261 1536 299 1189 48 61.5 MiB 0.02 0.00 1.22936 -29.0547 -1.22936 1.22936 0.92 0.000295184 0.000271395 0.00731757 0.00672944 22 568 14 6.64007e+06 62790 420624. 1455.45 0.75 0.0410044 0.0359424 20818 92861 -1 506 11 199 199 13088 3699 1.10745 1.10745 -32.0351 -1.10745 0 0 500653. 1732.36 0.20 0.03 0.13 -1 -1 0.20 0.0151575 0.0133105 34 2 13 13 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.80 vpr 61.47 MiB 0.01 6260 -1 -1 1 0.03 -1 -1 30052 -1 -1 5 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62944 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.8 MiB 0.03 303 1618 294 1276 48 61.5 MiB 0.02 0.00 1.24036 -31.9481 -1.24036 1.24036 0.96 0.000316354 0.000291154 0.00757555 0.00697705 26 656 12 6.64007e+06 62790 477104. 1650.88 0.81 0.0424619 0.0373186 21682 110474 -1 635 11 267 267 20790 5144 1.10745 1.10745 -34.9991 -1.10745 0 0 585099. 2024.56 0.19 0.02 0.16 -1 -1 0.19 0.00835673 0.00743413 37 2 14 14 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.82 vpr 61.52 MiB 0.01 6324 -1 -1 1 0.02 -1 -1 30064 -1 -1 6 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 23.1 MiB 0.03 324 2231 466 1582 183 61.5 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.95 0.000328185 0.000301419 0.0096156 0.00882967 26 657 19 6.64007e+06 75348 477104. 1650.88 0.80 0.0487004 0.0427251 21682 110474 -1 642 12 177 177 12847 3231 1.04225 1.04225 -37.0687 -1.04225 0 0 585099. 2024.56 0.26 0.02 0.14 -1 -1 0.26 0.00776323 0.00696115 40 2 15 15 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.01 vpr 61.71 MiB 0.03 6292 -1 -1 1 0.02 -1 -1 30268 -1 -1 6 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63196 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 23.2 MiB 0.03 332 2626 448 2137 41 61.7 MiB 0.03 0.00 1.26236 -36.933 -1.26236 1.26236 0.95 0.000354517 0.000326698 0.0110615 0.0101922 32 715 15 6.64007e+06 75348 554710. 1919.41 0.91 0.0518265 0.0457882 22834 132086 -1 665 9 264 264 19013 4931 0.956248 0.956248 -38.329 -0.956248 0 0 701300. 2426.64 0.25 0.02 0.20 -1 -1 0.25 0.00834853 0.00750376 43 2 16 16 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.85 vpr 61.70 MiB 0.02 6236 -1 -1 1 0.02 -1 -1 30304 -1 -1 7 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 23.2 MiB 0.03 430 4134 883 2967 284 61.7 MiB 0.04 0.00 1.62267 -42.2033 -1.62267 1.62267 0.96 0.000381488 0.000351602 0.0165045 0.0152134 26 840 9 6.64007e+06 87906 477104. 1650.88 0.80 0.0565092 0.0501826 21682 110474 -1 803 16 354 354 25144 6064 1.07325 1.07325 -43.1628 -1.07325 0 0 585099. 2024.56 0.24 0.03 0.16 -1 -1 0.24 0.0129664 0.0115094 46 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.97 vpr 61.71 MiB 0.03 6336 -1 -1 1 0.03 -1 -1 30528 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 23.2 MiB 0.03 400 5507 1293 3991 223 61.7 MiB 0.05 0.00 1.63367 -44.5064 -1.63367 1.63367 1.06 0.000408945 0.000377519 0.0214126 0.0197253 26 883 13 6.64007e+06 87906 477104. 1650.88 0.84 0.0663624 0.0590511 21682 110474 -1 791 19 389 389 30948 7774 1.06345 1.06345 -44.7308 -1.06345 0 0 585099. 2024.56 0.19 0.04 0.15 -1 -1 0.19 0.0147011 0.0129749 49 2 18 18 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.83 vpr 61.86 MiB 0.02 6216 -1 -1 1 0.03 -1 -1 30340 -1 -1 8 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 23.3 MiB 0.04 467 4001 820 3044 137 61.9 MiB 0.04 0.00 1.65567 -51.2944 -1.65567 1.65567 0.97 0.000459785 0.000424853 0.015202 0.0140269 26 1042 14 6.64007e+06 100464 477104. 1650.88 0.81 0.0658689 0.0583462 21682 110474 -1 917 13 352 352 28690 6808 1.17145 1.17145 -51.8759 -1.17145 0 0 585099. 2024.56 0.19 0.03 0.16 -1 -1 0.19 0.0124416 0.0110161 55 2 20 20 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.02 vpr 61.92 MiB 0.02 6408 -1 -1 1 0.02 -1 -1 30420 -1 -1 8 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 23.3 MiB 0.04 551 4966 1056 3737 173 61.9 MiB 0.05 0.00 1.67767 -59.443 -1.67767 1.67767 0.93 0.000500905 0.000462299 0.0184939 0.0170705 32 1095 12 6.64007e+06 100464 554710. 1919.41 0.94 0.0734061 0.0652999 22834 132086 -1 968 14 416 416 31553 7556 1.07325 1.07325 -55.2431 -1.07325 0 0 701300. 2426.64 0.23 0.04 0.19 -1 -1 0.23 0.0152335 0.0135691 61 2 22 22 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.21 vpr 62.12 MiB 0.03 6456 -1 -1 1 0.02 -1 -1 30496 -1 -1 9 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 23.5 MiB 0.04 584 6760 1544 5011 205 62.1 MiB 0.05 0.00 1.69967 -63.9386 -1.69967 1.69967 1.14 0.000553185 0.0005114 0.0216194 0.0199584 28 1213 14 6.64007e+06 113022 500653. 1732.36 0.91 0.0826337 0.0737112 21970 115934 -1 1091 11 457 457 39339 9371 1.11845 1.11845 -61.1772 -1.11845 0 0 612192. 2118.31 0.20 0.04 0.17 -1 -1 0.20 0.0134772 0.0121033 67 2 24 24 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.11 vpr 61.82 MiB 0.02 6576 -1 -1 1 0.02 -1 -1 30284 -1 -1 10 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.1 MiB 0.04 754 12711 4339 7261 1111 61.8 MiB 0.09 0.00 2.07098 -75.5183 -2.07098 2.07098 0.97 0.000599035 0.000553004 0.0428346 0.0395009 30 1330 13 6.64007e+06 125580 526063. 1820.29 0.93 0.108506 0.097651 22546 126617 -1 1194 13 486 486 33990 8082 1.18125 1.18125 -69.8231 -1.18125 0 0 666494. 2306.21 0.22 0.04 0.18 -1 -1 0.22 0.0166537 0.0149633 73 2 26 26 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.10 vpr 62.04 MiB 0.01 6400 -1 -1 1 0.03 -1 -1 29960 -1 -1 11 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.4 MiB 0.04 781 12973 3128 9205 640 62.0 MiB 0.10 0.00 2.11498 -88.6474 -2.11498 2.11498 0.96 0.000688368 0.000636098 0.0448878 0.0414394 28 1578 16 6.64007e+06 138138 500653. 1732.36 0.93 0.124055 0.111839 21970 115934 -1 1448 16 714 714 62305 14306 1.22525 1.22525 -82.5246 -1.22525 0 0 612192. 2118.31 0.20 0.06 0.17 -1 -1 0.20 0.0225172 0.0202093 85 2 30 30 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.48 vpr 62.51 MiB 0.02 6396 -1 -1 1 0.02 -1 -1 30360 -1 -1 13 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.7 MiB 0.07 1016 17401 7183 10118 100 62.5 MiB 0.15 0.00 2.50829 -106.175 -2.50829 2.50829 1.04 0.00111944 0.00103172 0.0660215 0.0610914 32 1822 12 6.64007e+06 163254 554710. 1919.41 1.05 0.153471 0.139055 22834 132086 -1 1725 13 707 707 61118 14144 1.31125 1.31125 -94.7939 -1.31125 0 0 701300. 2426.64 0.23 0.06 0.19 -1 -1 0.23 0.0222217 0.0200178 97 2 34 34 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.68 vpr 63.29 MiB 0.03 6728 -1 -1 1 0.03 -1 -1 30476 -1 -1 19 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 24.3 MiB 0.06 1599 34969 13035 19621 2313 63.3 MiB 0.24 0.00 3.38291 -183.275 -3.38291 3.38291 0.95 0.000963566 0.000889534 0.0970877 0.0900944 30 2918 27 6.64007e+06 238602 526063. 1820.29 1.24 0.242446 0.220945 22546 126617 -1 2584 20 1013 1013 84748 19026 1.51625 1.51625 -149.177 -1.51625 0 0 666494. 2306.21 0.23 0.09 0.18 -1 -1 0.23 0.0338627 0.030536 145 2 50 50 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.00 vpr 63.69 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30296 -1 -1 25 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.6 MiB 0.08 1778 56234 21152 30749 4333 63.7 MiB 0.40 0.01 4.25753 -263.048 -4.25753 4.25753 0.96 0.00166468 0.00155049 0.144367 0.134295 32 3642 14 6.64007e+06 313950 554710. 1919.41 1.24 0.332515 0.305368 22834 132086 -1 3143 13 1268 1268 107582 25490 1.71025 1.71025 -195.441 -1.71025 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0456319 0.0418789 193 2 66 66 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.40 vpr 60.98 MiB 0.03 6148 -1 -1 1 0.02 -1 -1 30056 -1 -1 2 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62444 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.4 MiB 0.01 53 208 48 152 8 61.0 MiB 0.01 0.00 0.770048 -7.13557 -0.770048 0.770048 0.96 9.5084e-05 8.544e-05 0.00155705 0.00139374 20 105 7 6.65987e+06 25356 394039. 1363.46 0.57 0.00492421 0.00445711 20530 87850 -1 101 4 27 27 1472 482 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.16 0.01 0.13 -1 -1 0.16 0.00248535 0.00228832 10 2 5 5 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.50 vpr 61.26 MiB 0.01 6352 -1 -1 1 0.03 -1 -1 30152 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62732 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.6 MiB 0.01 67 419 80 331 8 61.3 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.96 0.000100883 8.92e-05 0.00277665 0.00250861 22 251 10 6.65987e+06 25356 420624. 1455.45 0.65 0.0192068 0.0166272 20818 92861 -1 198 8 93 93 4666 1476 1.04345 1.04345 -14.1496 -1.04345 0 0 500653. 1732.36 0.18 0.01 0.12 -1 -1 0.18 0.00386653 0.00348934 16 2 7 7 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.35 vpr 61.01 MiB 0.01 6268 -1 -1 1 0.02 -1 -1 30016 -1 -1 3 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62476 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.3 MiB 0.01 108 791 160 615 16 61.0 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.95 0.000169095 0.000154616 0.00465786 0.00425356 20 310 11 6.65987e+06 38034 394039. 1363.46 0.60 0.0103609 0.00931345 20530 87850 -1 273 13 145 145 8632 2391 1.01045 1.01045 -16.4625 -1.01045 0 0 477104. 1650.88 0.16 0.01 0.12 -1 -1 0.16 0.005724 0.00508009 19 2 8 8 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.79 vpr 61.41 MiB 0.02 6244 -1 -1 1 0.02 -1 -1 30088 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62880 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.7 MiB 0.01 103 938 195 725 18 61.4 MiB 0.02 0.00 1.18536 -16.8309 -1.18536 1.18536 0.98 0.000193864 0.000177492 0.00558839 0.0051449 26 280 9 6.65987e+06 38034 477104. 1650.88 0.78 0.0269008 0.0235315 21682 110474 -1 240 14 202 202 9762 3215 0.856048 0.856048 -17.9184 -0.856048 0 0 585099. 2024.56 0.20 0.02 0.16 -1 -1 0.20 0.00667954 0.00590523 22 2 9 9 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.80 vpr 61.09 MiB 0.03 6272 -1 -1 1 0.02 -1 -1 30056 -1 -1 4 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62552 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.3 MiB 0.01 116 1180 259 878 43 61.1 MiB 0.02 0.00 1.19636 -19.5997 -1.19636 1.19636 0.97 0.000217451 0.000199682 0.00650152 0.00598531 28 330 14 6.65987e+06 50712 500653. 1732.36 0.80 0.0316253 0.0276052 21970 115934 -1 304 12 160 160 9006 2849 0.943248 0.943248 -21.1931 -0.943248 0 0 612192. 2118.31 0.20 0.02 0.17 -1 -1 0.20 0.0083688 0.00747062 25 2 10 10 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.57 vpr 61.09 MiB 0.01 6300 -1 -1 1 0.02 -1 -1 30076 -1 -1 4 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62556 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.01 185 1229 259 944 26 61.1 MiB 0.02 0.00 1.20736 -22.7097 -1.20736 1.20736 0.96 0.000244189 0.000224599 0.00651595 0.00597007 24 425 18 6.65987e+06 50712 448715. 1552.65 0.72 0.035757 0.0311618 21394 104001 -1 393 6 120 120 8172 2256 0.987248 0.987248 -24.888 -0.987248 0 0 554710. 1919.41 0.18 0.01 0.15 -1 -1 0.18 0.00453384 0.00411147 28 2 11 11 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.85 vpr 61.46 MiB 0.01 6308 -1 -1 1 0.03 -1 -1 29992 -1 -1 5 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62940 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.0 MiB 0.02 281 1379 251 1074 54 61.5 MiB 0.02 0.00 1.21836 -28.8147 -1.21836 1.21836 1.01 0.000269729 0.000248566 0.00676327 0.00622247 26 546 11 6.65987e+06 63390 477104. 1650.88 0.76 0.0361795 0.031706 21682 110474 -1 503 16 222 222 18646 4362 0.943248 0.943248 -28.6047 -0.943248 0 0 585099. 2024.56 0.20 0.02 0.16 -1 -1 0.20 0.0097473 0.00860352 31 2 12 12 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.57 vpr 61.52 MiB 0.02 6280 -1 -1 1 0.02 -1 -1 30032 -1 -1 5 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.8 MiB 0.02 256 1536 305 1173 58 61.5 MiB 0.03 0.00 1.22936 -28.8616 -1.22936 1.22936 0.94 0.000904834 0.000833633 0.00784941 0.00717263 22 582 9 6.65987e+06 63390 420624. 1455.45 0.71 0.0387895 0.0339824 20818 92861 -1 499 15 192 192 11326 3279 1.12945 1.12945 -32.4515 -1.12945 0 0 500653. 1732.36 0.17 0.02 0.13 -1 -1 0.17 0.00865158 0.00766782 34 2 13 13 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.78 vpr 61.39 MiB 0.01 6200 -1 -1 1 0.02 -1 -1 30192 -1 -1 5 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62868 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.7 MiB 0.02 293 2293 540 1476 277 61.4 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.96 0.000313177 0.000288035 0.010364 0.00953574 26 636 12 6.65987e+06 63390 477104. 1650.88 0.79 0.0451094 0.039711 21682 110474 -1 608 15 296 296 22531 5808 1.02025 1.02025 -34.0861 -1.02025 0 0 585099. 2024.56 0.20 0.03 0.16 -1 -1 0.20 0.0106445 0.00943593 37 2 14 14 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.83 vpr 61.36 MiB 0.01 6236 -1 -1 1 0.03 -1 -1 30124 -1 -1 6 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62832 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.9 MiB 0.02 378 2231 478 1580 173 61.4 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.96 0.000339532 0.000312504 0.0097423 0.00897193 30 668 13 6.65987e+06 76068 526063. 1820.29 0.86 0.0468599 0.0413419 22546 126617 -1 622 11 216 216 15522 3800 0.856048 0.856048 -34.1489 -0.856048 0 0 666494. 2306.21 0.22 0.02 0.18 -1 -1 0.22 0.00895817 0.00799451 40 2 15 15 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.68 vpr 61.53 MiB 0.01 6456 -1 -1 1 0.03 -1 -1 30324 -1 -1 6 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63004 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 23.0 MiB 0.02 331 2442 412 1993 37 61.5 MiB 0.03 0.00 1.26236 -36.7774 -1.26236 1.26236 0.96 0.00035608 0.00032823 0.0103726 0.0095505 26 789 11 6.65987e+06 76068 477104. 1650.88 0.76 0.0486244 0.0429782 21682 110474 -1 724 15 378 378 28843 7348 1.06545 1.06545 -39.427 -1.06545 0 0 585099. 2024.56 0.20 0.03 0.16 -1 -1 0.20 0.0118046 0.010488 43 2 16 16 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.78 vpr 61.38 MiB 0.03 6324 -1 -1 1 0.03 -1 -1 30284 -1 -1 7 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62848 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.9 MiB 0.02 435 3216 703 2283 230 61.4 MiB 0.03 0.00 1.62267 -42.4629 -1.62267 1.62267 0.96 0.000387867 0.000357866 0.0129899 0.0119562 26 863 15 6.65987e+06 88746 477104. 1650.88 0.80 0.0548182 0.0484952 21682 110474 -1 825 14 376 376 28737 7038 1.05019 1.05019 -43.3518 -1.05019 0 0 585099. 2024.56 0.19 0.03 0.16 -1 -1 0.19 0.0118349 0.0105148 46 2 17 17 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.85 vpr 61.43 MiB 0.01 6336 -1 -1 1 0.03 -1 -1 30284 -1 -1 7 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62900 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.9 MiB 0.02 427 6052 1399 4413 240 61.4 MiB 0.05 0.00 1.63367 -46.0647 -1.63367 1.63367 0.88 0.000406209 0.000374769 0.0236579 0.0218125 26 862 21 6.65987e+06 88746 477104. 1650.88 0.87 0.0742398 0.0660048 21682 110474 -1 837 14 393 393 28781 7241 1.11845 1.11845 -46.125 -1.11845 0 0 585099. 2024.56 0.19 0.03 0.16 -1 -1 0.19 0.0126558 0.0112639 49 2 18 18 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.82 vpr 61.51 MiB 0.01 6388 -1 -1 1 0.02 -1 -1 30428 -1 -1 8 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62984 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.9 MiB 0.03 445 3874 792 2975 107 61.5 MiB 0.04 0.00 1.65567 -51.2172 -1.65567 1.65567 0.95 0.000460503 0.000424986 0.0152265 0.0140619 26 992 15 6.65987e+06 101424 477104. 1650.88 0.81 0.0670759 0.0593805 21682 110474 -1 910 9 291 291 23544 5719 0.998248 0.998248 -49.3833 -0.998248 0 0 585099. 2024.56 0.19 0.03 0.14 -1 -1 0.19 0.0103412 0.0092779 55 2 20 20 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.15 vpr 61.58 MiB 0.02 6244 -1 -1 1 0.03 -1 -1 30348 -1 -1 8 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.9 MiB 0.03 520 5398 1104 4106 188 61.6 MiB 0.04 0.00 1.67767 -57.8445 -1.67767 1.67767 1.16 0.000354127 0.000324236 0.0142968 0.0131059 26 1167 18 6.65987e+06 101424 477104. 1650.88 0.92 0.0743359 0.0657077 21682 110474 -1 1020 15 478 478 40381 9828 1.16365 1.16365 -56.2165 -1.16365 0 0 585099. 2024.56 0.19 0.04 0.16 -1 -1 0.19 0.0160398 0.0142861 61 2 22 22 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.02 vpr 61.64 MiB 0.02 6448 -1 -1 1 0.02 -1 -1 30436 -1 -1 9 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 23.0 MiB 0.03 581 5945 1255 4536 154 61.6 MiB 0.05 0.00 1.69967 -64.3369 -1.69967 1.69967 0.96 0.000550012 0.000508564 0.0213419 0.0197238 26 1300 17 6.65987e+06 114102 477104. 1650.88 0.96 0.0818291 0.072972 21682 110474 -1 1217 13 513 513 50907 12107 1.12825 1.12825 -63.3864 -1.12825 0 0 585099. 2024.56 0.19 0.04 0.17 -1 -1 0.19 0.0157505 0.0141038 67 2 24 24 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.18 vpr 61.81 MiB 0.03 6412 -1 -1 1 0.03 -1 -1 30460 -1 -1 10 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63292 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.2 MiB 0.03 752 12711 4741 7378 592 61.8 MiB 0.10 0.00 2.07098 -75.6352 -2.07098 2.07098 1.05 0.000596515 0.000551074 0.0431521 0.0398594 30 1346 13 6.65987e+06 126780 526063. 1820.29 0.93 0.108937 0.0980561 22546 126617 -1 1230 11 477 477 35854 8787 1.07325 1.07325 -67.1967 -1.07325 0 0 666494. 2306.21 0.22 0.04 0.18 -1 -1 0.22 0.0150109 0.0135002 73 2 26 26 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.23 vpr 62.10 MiB 0.01 6608 -1 -1 1 0.03 -1 -1 30016 -1 -1 11 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.4 MiB 0.03 728 12751 3280 8876 595 62.1 MiB 0.09 0.00 2.11498 -85.6644 -2.11498 2.11498 0.97 0.000693276 0.000640716 0.041245 0.0381323 32 1538 17 6.65987e+06 139458 554710. 1919.41 1.01 0.133302 0.120096 22834 132086 -1 1375 14 555 555 43916 11014 1.23625 1.23625 -78.4834 -1.23625 0 0 701300. 2426.64 0.23 0.05 0.19 -1 -1 0.23 0.0202577 0.0181988 85 2 30 30 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.19 vpr 62.18 MiB 0.02 6540 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.3 MiB 0.03 1003 17401 6715 9666 1020 62.2 MiB 0.10 0.00 2.50829 -107.27 -2.50829 2.50829 1.00 0.000548682 0.000502477 0.0376135 0.0344688 30 1823 16 6.65987e+06 164814 526063. 1820.29 1.00 0.0936072 0.0838571 22546 126617 -1 1651 10 590 590 47664 10569 1.19105 1.19105 -91.7889 -1.19105 0 0 666494. 2306.21 0.22 0.05 0.18 -1 -1 0.22 0.0182405 0.016508 97 2 34 34 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.62 vpr 62.83 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1557 34969 14570 20249 150 62.8 MiB 0.24 0.00 3.38291 -180.939 -3.38291 3.38291 0.96 0.00120847 0.00112183 0.0956094 0.0886387 32 2852 16 6.65987e+06 240882 554710. 1919.41 1.11 0.235279 0.214708 22834 132086 -1 2637 14 986 986 93107 21501 1.40705 1.40705 -143.206 -1.40705 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0351936 0.032057 145 2 50 50 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.00 vpr 63.64 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 30496 -1 -1 25 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.5 MiB 0.07 1798 56234 20467 31758 4009 63.6 MiB 0.39 0.01 4.25753 -264.232 -4.25753 4.25753 0.95 0.00163834 0.00152363 0.143706 0.133709 32 3889 17 6.65987e+06 316950 554710. 1919.41 1.28 0.340505 0.312972 22834 132086 -1 3343 13 1362 1362 136503 31547 1.62319 1.62319 -193.168 -1.62319 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0449119 0.0412713 193 2 66 66 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.48 vpr 61.91 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30096 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 23.3 MiB 0.02 26 246 57 175 14 61.9 MiB 0.01 0.00 0.712895 -7.69589 -0.712895 0.712895 0.99 9.6051e-05 8.6561e-05 0.00205743 0.00184801 18 87 4 6.95648e+06 14475.7 376052. 1301.22 0.59 0.0122573 0.0106001 22882 88689 -1 82 3 15 15 542 184 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.17 0.01 0.12 -1 -1 0.17 0.00224301 0.00209361 5 2 5 5 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 3.57 vpr 61.99 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 30188 -1 -1 1 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 23.3 MiB 0.05 128 64 26 37 1 62.0 MiB 0.00 0.00 1.08519 -14.9177 -1.08519 1.08519 0.99 0.000149912 0.000135307 0.00079922 0.000733994 20 222 9 6.95648e+06 14475.7 414966. 1435.87 0.60 0.00568486 0.00513575 23170 95770 -1 197 11 48 48 3484 991 0.99734 0.99734 -14.9468 -0.99734 0 0 503264. 1741.40 0.16 0.01 0.14 -1 -1 0.16 0.00458889 0.00411729 8 2 7 7 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 5.03 vpr 61.95 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30004 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.4 MiB 0.04 58 562 122 423 17 61.9 MiB 0.01 0.00 0.802432 -14.4781 -0.802432 0.802432 1.00 0.000169573 0.000154834 0.00365235 0.00333138 22 206 13 6.95648e+06 28951.4 443629. 1535.05 1.96 0.0318908 0.0275353 23458 102101 -1 189 12 79 79 5519 1756 0.87204 0.87204 -15.9569 -0.87204 0 0 531479. 1839.03 0.17 0.01 0.14 -1 -1 0.17 0.00546236 0.00487674 10 2 8 8 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.92 vpr 62.06 MiB 0.01 6240 -1 -1 1 0.02 -1 -1 30112 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.4 MiB 0.04 82 673 149 507 17 62.1 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 1.01 0.000189877 0.000173438 0.00408628 0.00373528 26 255 11 6.95648e+06 28951.4 503264. 1741.40 0.79 0.0259901 0.0225783 24322 120374 -1 230 11 133 133 8411 2676 1.08123 1.08123 -19.0717 -1.08123 0 0 618332. 2139.56 0.20 0.01 0.17 -1 -1 0.20 0.00567044 0.00505407 11 2 9 9 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 5.20 vpr 62.09 MiB 0.02 6268 -1 -1 1 0.03 -1 -1 30072 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.5 MiB 0.04 90 868 248 501 119 62.1 MiB 0.01 0.00 0.841632 -19.379 -0.841632 0.841632 0.99 0.000218858 0.000200686 0.00511211 0.00469155 28 325 22 6.95648e+06 28951.4 531479. 1839.03 2.15 0.0644139 0.0553279 24610 126494 -1 279 19 266 266 15650 5074 1.08603 1.08603 -21.1602 -1.08603 0 0 648988. 2245.63 0.25 0.02 0.18 -1 -1 0.25 0.00918365 0.00807451 13 2 10 10 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 3.64 vpr 62.05 MiB 0.02 6304 -1 -1 1 0.04 -1 -1 30036 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.5 MiB 0.05 117 847 190 628 29 62.0 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.86 0.000242767 0.000223072 0.00496887 0.00456174 20 354 10 6.95648e+06 28951.4 414966. 1435.87 0.61 0.0124233 0.0112185 23170 95770 -1 335 31 235 235 43183 25608 0.999932 0.999932 -26.0857 -0.999932 0 0 503264. 1741.40 0.16 0.04 0.13 -1 -1 0.16 0.0146501 0.0127341 14 2 11 11 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 5.15 vpr 62.29 MiB 0.01 6296 -1 -1 1 0.02 -1 -1 30000 -1 -1 2 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.7 MiB 0.04 238 914 193 707 14 62.3 MiB 0.01 0.00 0.896632 -26.6731 -0.896632 0.896632 1.01 0.000270266 0.000248424 0.00535576 0.00493972 26 545 15 6.95648e+06 28951.4 503264. 1741.40 2.07 0.074246 0.0639801 24322 120374 -1 481 16 290 290 21220 5201 1.14723 1.14723 -30.8531 -1.14723 0 0 618332. 2139.56 0.20 0.02 0.17 -1 -1 0.20 0.00956601 0.00844827 16 2 12 12 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 6.07 vpr 62.29 MiB 0.03 6216 -1 -1 1 0.03 -1 -1 30016 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.8 MiB 0.04 198 1298 273 1012 13 62.3 MiB 0.02 0.00 0.907632 -28.5647 -0.907632 0.907632 1.04 0.00029901 0.00027047 0.00721245 0.00666785 28 564 12 6.95648e+06 43427 531479. 1839.03 2.86 0.0619113 0.0536396 24610 126494 -1 467 16 299 299 20091 5768 1.09703 1.09703 -32.2819 -1.09703 0 0 648988. 2245.63 0.26 0.02 0.18 -1 -1 0.26 0.00861915 0.00762778 17 2 13 13 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.68 vpr 62.27 MiB 0.03 6276 -1 -1 1 0.03 -1 -1 30020 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.7 MiB 0.03 368 1441 285 1041 115 62.3 MiB 0.02 0.00 0.918632 -34.4491 -0.918632 0.918632 1.00 0.000319623 0.000294645 0.00730307 0.00673586 34 738 16 6.95648e+06 43427 618332. 2139.56 1.49 0.0618501 0.0535835 25762 151098 -1 733 16 301 301 33303 7180 1.22233 1.22233 -39.9964 -1.22233 0 0 787024. 2723.27 0.24 0.03 0.22 -1 -1 0.24 0.0109102 0.00967308 19 2 14 14 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 4.99 vpr 62.43 MiB 0.02 6340 -1 -1 1 0.03 -1 -1 30156 -1 -1 3 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.9 MiB 0.04 180 3971 1477 2086 408 62.4 MiB 0.04 0.00 0.951632 -32.5735 -0.951632 0.951632 1.00 0.000331553 0.000304909 0.0184768 0.0170144 36 677 34 6.95648e+06 43427 648988. 2245.63 1.69 0.0808537 0.0710269 26050 158493 -1 479 36 638 638 44030 11892 1.21133 1.21133 -34.4716 -1.21133 0 0 828058. 2865.25 0.26 0.05 0.22 -1 -1 0.26 0.0226096 0.0198257 20 2 15 15 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 5.22 vpr 62.30 MiB 0.03 6472 -1 -1 1 0.03 -1 -1 30268 -1 -1 3 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.7 MiB 0.05 227 4331 1745 2561 25 62.3 MiB 0.04 0.00 0.962632 -36.3287 -0.962632 0.962632 1.02 0.00035448 0.000325727 0.0193523 0.0177854 36 789 39 6.95648e+06 43427 648988. 2245.63 1.96 0.102472 0.0898472 26050 158493 -1 644 21 474 474 83491 31666 1.26153 1.26153 -42.9574 -1.26153 0 0 828058. 2865.25 0.25 0.05 0.23 -1 -1 0.25 0.0153445 0.0135655 22 2 16 16 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 6.42 vpr 62.38 MiB 0.01 6456 -1 -1 1 0.03 -1 -1 30276 -1 -1 3 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.8 MiB 0.05 237 4098 1359 2534 205 62.4 MiB 0.04 0.00 1.33396 -39.0993 -1.33396 1.33396 0.99 0.000378149 0.000347979 0.0179355 0.0165115 34 808 17 6.95648e+06 43427 618332. 2139.56 3.21 0.103643 0.0909975 25762 151098 -1 646 18 461 461 34500 9850 1.27533 1.27533 -45.8927 -1.27533 0 0 787024. 2723.27 0.24 0.04 0.22 -1 -1 0.24 0.0143377 0.0126874 24 2 17 17 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.49 vpr 62.29 MiB 0.02 6264 -1 -1 1 0.02 -1 -1 30420 -1 -1 4 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.6 MiB 0.06 235 5052 1687 3325 40 62.3 MiB 0.04 0.00 1.34496 -41.9783 -1.34496 1.34496 0.99 0.000412054 0.00037856 0.0212184 0.019543 28 1109 36 6.95648e+06 57902.7 531479. 1839.03 1.33 0.0804775 0.0711135 24610 126494 -1 739 16 471 471 38139 11041 1.33033 1.33033 -50.7479 -1.33033 0 0 648988. 2245.63 0.22 0.04 0.18 -1 -1 0.22 0.0140088 0.0124314 25 2 18 18 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.99 vpr 62.40 MiB 0.03 6512 -1 -1 1 0.03 -1 -1 30320 -1 -1 4 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.8 MiB 0.07 309 3804 748 3002 54 62.4 MiB 0.04 0.00 1.36696 -48.8036 -1.36696 1.36696 0.99 0.000460438 0.000424713 0.0160477 0.0148083 34 938 31 6.95648e+06 57902.7 618332. 2139.56 1.68 0.110893 0.0972178 25762 151098 -1 734 16 470 470 37354 9848 1.21603 1.21603 -53.9097 -1.21603 0 0 787024. 2723.27 0.26 0.04 0.21 -1 -1 0.26 0.0162857 0.0145274 28 2 20 20 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 5.01 vpr 62.43 MiB 0.01 6544 -1 -1 1 0.02 -1 -1 30336 -1 -1 4 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 41 21 146 147 1 95 66 17 17 289 -1 unnamed_device 23.8 MiB 0.10 641 8312 2597 4950 765 62.4 MiB 0.07 0.00 1.38896 -61.8695 -1.38896 1.38896 0.99 0.000507906 0.000467999 0.0330058 0.030448 34 1241 36 6.95648e+06 57902.7 618332. 2139.56 1.62 0.148032 0.131083 25762 151098 -1 1165 19 479 479 56814 11213 1.37433 1.37433 -69.3665 -1.37433 0 0 787024. 2723.27 0.25 0.07 0.22 -1 -1 0.25 0.0283303 0.0250398 31 2 22 22 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 5.18 vpr 62.63 MiB 0.02 6344 -1 -1 1 0.02 -1 -1 30328 -1 -1 5 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 24.0 MiB 0.09 465 7673 2070 5539 64 62.6 MiB 0.06 0.00 1.41096 -62.1793 -1.41096 1.41096 1.01 0.000547141 0.000505303 0.0291978 0.0269352 34 1266 27 6.95648e+06 72378.4 618332. 2139.56 1.77 0.124749 0.110962 25762 151098 -1 1016 13 509 509 45134 10617 1.26003 1.26003 -66.2859 -1.26003 0 0 787024. 2723.27 0.24 0.04 0.22 -1 -1 0.24 0.0159133 0.0142759 34 2 24 24 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 5.26 vpr 62.62 MiB 0.03 6448 -1 -1 1 0.02 -1 -1 30484 -1 -1 5 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 24.0 MiB 0.10 477 11571 2984 8400 187 62.6 MiB 0.09 0.00 1.43296 -69.314 -1.43296 1.43296 0.99 0.000596576 0.000550832 0.0427617 0.0395109 34 1347 41 6.95648e+06 72378.4 618332. 2139.56 1.80 0.184439 0.163978 25762 151098 -1 1120 18 633 633 54926 13763 1.41833 1.41833 -77.2103 -1.41833 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0221904 0.0198589 37 2 26 26 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 7.89 vpr 62.66 MiB 0.03 6644 -1 -1 1 0.03 -1 -1 30024 -1 -1 6 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.8 MiB 0.07 835 13133 5530 7566 37 62.7 MiB 0.09 0.00 1.47696 -86.9535 -1.47696 1.47696 0.99 0.000684598 0.000632446 0.0451999 0.0417419 36 1680 30 6.95648e+06 86854.1 648988. 2245.63 4.35 0.229996 0.205242 26050 158493 -1 1507 18 793 793 88362 18399 1.47333 1.47333 -92.9617 -1.47333 0 0 828058. 2865.25 0.35 0.05 0.20 -1 -1 0.35 0.0189455 0.0169989 43 2 30 30 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 6.36 vpr 63.07 MiB 0.03 6596 -1 -1 1 0.03 -1 -1 30352 -1 -1 7 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 24.6 MiB 0.08 924 18136 7790 10245 101 63.1 MiB 0.13 0.00 1.88129 -101.424 -1.88129 1.88129 0.99 0.000789314 0.000729978 0.0602476 0.0556468 38 1929 44 6.95648e+06 101330 678818. 2348.85 2.79 0.255799 0.229153 26626 170182 -1 1758 26 971 971 203119 74614 1.58093 1.58093 -104.62 -1.58093 0 0 902133. 3121.57 0.26 0.12 0.23 -1 -1 0.26 0.0389398 0.0348539 49 2 34 34 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 9.69 vpr 63.66 MiB 0.02 6624 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.7 MiB 0.10 1600 30324 11596 17665 1063 63.7 MiB 0.20 0.00 2.41762 -168.85 -2.41762 2.41762 0.99 0.0012189 0.00113346 0.0914509 0.0849961 52 2765 24 6.95648e+06 144757 926341. 3205.33 5.79 0.458578 0.416464 29218 227130 -1 2519 17 1068 1068 118761 24238 1.49993 1.49993 -156.625 -1.49993 0 0 1.14541e+06 3963.36 0.35 0.10 0.35 -1 -1 0.35 0.0416608 0.0379877 73 2 50 50 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 12.07 vpr 64.49 MiB 0.03 6956 -1 -1 1 0.04 -1 -1 30328 -1 -1 13 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66040 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.4 MiB 0.08 1899 46107 19065 26925 117 64.5 MiB 0.31 0.01 2.95395 -232.912 -2.95395 2.95395 0.99 0.00166604 0.00155194 0.12884 0.120047 64 3371 24 6.95648e+06 188184 1.08113e+06 3740.92 7.84 0.719704 0.65593 31522 276338 -1 3033 21 1532 1532 168676 35031 1.79303 1.79303 -208.735 -1.79303 0 0 1.36325e+06 4717.13 0.40 0.15 0.45 -1 -1 0.40 0.067532 0.0617247 97 2 66 66 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.51 vpr 61.64 MiB 0.01 6260 -1 -1 1 0.02 -1 -1 29956 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63124 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.9 MiB 0.01 26 246 57 176 13 61.6 MiB 0.01 0.00 0.62144 -7.32583 -0.62144 0.62144 0.99 9.6434e-05 8.6855e-05 0.00209574 0.00187954 18 87 6 6.99608e+06 14715.7 376052. 1301.22 0.58 0.0128899 0.0111439 22882 88689 -1 82 3 15 15 542 184 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.15 0.01 0.13 -1 -1 0.15 0.00220804 0.00206572 5 2 5 5 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 3.41 vpr 61.90 MiB 0.03 6260 -1 -1 1 0.02 -1 -1 30060 -1 -1 1 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63384 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 23.3 MiB 0.01 126 64 25 37 2 61.9 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.99 0.000150501 0.0001355 0.000819223 0.000751908 16 214 10 6.99608e+06 14715.7 332735. 1151.33 0.51 0.00559592 0.00501355 22306 75877 -1 208 8 49 49 3850 981 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.13 0.01 0.11 -1 -1 0.13 0.00387768 0.00351305 8 2 7 7 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 4.95 vpr 62.18 MiB 0.01 6244 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 23.5 MiB 0.01 107 592 125 462 5 62.2 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.99 0.000170503 0.000155777 0.00417422 0.00384507 20 271 15 6.99608e+06 29431.4 414966. 1435.87 2.02 0.0250296 0.0217761 23170 95770 -1 231 8 81 81 5289 1509 0.802432 0.802432 -16.3218 -0.802432 0 0 503264. 1741.40 0.17 0.01 0.14 -1 -1 0.17 0.00430919 0.0038839 10 2 8 8 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.97 vpr 61.82 MiB 0.02 6268 -1 -1 1 0.03 -1 -1 30004 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63304 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 23.1 MiB 0.02 87 673 163 490 20 61.8 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 1.04 0.000190793 0.000173409 0.0041629 0.00377979 28 238 12 6.99608e+06 29431.4 531479. 1839.03 0.86 0.0259403 0.0225251 24610 126494 -1 220 12 107 107 5344 1848 0.793379 0.793379 -18.6823 -0.793379 0 0 648988. 2245.63 0.22 0.01 0.17 -1 -1 0.22 0.00591687 0.00526458 11 2 9 9 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 5.66 vpr 62.01 MiB 0.01 6124 -1 -1 1 0.02 -1 -1 30088 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 23.3 MiB 0.02 89 868 259 545 64 62.0 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 1.00 0.000220396 0.000202268 0.0051298 0.0047028 28 272 39 6.99608e+06 29431.4 531479. 1839.03 2.62 0.0672653 0.0578177 24610 126494 -1 251 10 170 170 8658 2916 0.960732 0.960732 -19.9927 -0.960732 0 0 648988. 2245.63 0.20 0.01 0.18 -1 -1 0.20 0.00599571 0.00534675 13 2 10 10 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 3.58 vpr 62.05 MiB 0.03 6300 -1 -1 1 0.02 -1 -1 30236 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 23.5 MiB 0.02 117 799 181 587 31 62.1 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.99 0.000243316 0.000223683 0.00472968 0.00433473 20 367 15 6.99608e+06 29431.4 414966. 1435.87 0.62 0.0138926 0.0124097 23170 95770 -1 331 15 202 202 11814 4204 1.07503 1.07503 -26.3473 -1.07503 0 0 503264. 1741.40 0.16 0.02 0.14 -1 -1 0.16 0.00841082 0.00743438 14 2 11 11 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.58 vpr 62.04 MiB 0.03 6284 -1 -1 1 0.02 -1 -1 30156 -1 -1 2 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 23.5 MiB 0.02 206 1079 232 829 18 62.0 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.98 0.000268773 0.000246911 0.00588511 0.00540805 32 524 17 6.99608e+06 29431.4 586450. 2029.24 1.42 0.0428857 0.0371788 25474 144626 -1 466 13 223 223 21020 4975 1.23333 1.23333 -30.4529 -1.23333 0 0 744469. 2576.02 0.23 0.02 0.18 -1 -1 0.23 0.00835687 0.00740779 16 2 12 12 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.01 vpr 62.27 MiB 0.03 6336 -1 -1 1 0.02 -1 -1 30272 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.8 MiB 0.02 245 1298 255 1031 12 62.3 MiB 0.02 0.00 0.879432 -28.9525 -0.879432 0.879432 0.99 0.000292524 0.000269204 0.00677584 0.00624054 30 578 18 6.99608e+06 44147 556674. 1926.21 0.92 0.0345317 0.0299746 25186 138497 -1 530 15 312 312 24184 5627 1.08603 1.08603 -30.9061 -1.08603 0 0 706193. 2443.58 0.22 0.03 0.20 -1 -1 0.22 0.00987136 0.00871403 17 2 13 13 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.62 vpr 62.12 MiB 0.01 6168 -1 -1 1 0.03 -1 -1 30100 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.6 MiB 0.02 340 1441 266 1110 65 62.1 MiB 0.02 0.00 0.901432 -33.1271 -0.901432 0.901432 0.99 0.000312456 0.000287804 0.00724621 0.00668238 34 752 16 6.99608e+06 44147 618332. 2139.56 1.48 0.0691239 0.060081 25762 151098 -1 707 15 318 318 34339 7519 1.17833 1.17833 -38.8894 -1.17833 0 0 787024. 2723.27 0.24 0.03 0.22 -1 -1 0.24 0.010303 0.00911183 19 2 14 14 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 4.92 vpr 62.22 MiB 0.01 6328 -1 -1 1 0.03 -1 -1 30080 -1 -1 3 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.7 MiB 0.02 178 3971 1404 1915 652 62.2 MiB 0.04 0.00 0.912432 -32.1713 -0.912432 0.912432 0.99 0.000333136 0.000306413 0.0181163 0.0166532 38 556 23 6.99608e+06 44147 678818. 2348.85 1.68 0.0765519 0.0672596 26626 170182 -1 444 19 395 395 30217 8484 1.28833 1.28833 -35.9734 -1.28833 0 0 902133. 3121.57 0.32 0.03 0.18 -1 -1 0.32 0.0132547 0.0117061 20 2 15 15 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.11 vpr 62.14 MiB 0.02 6324 -1 -1 1 0.02 -1 -1 30272 -1 -1 3 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.6 MiB 0.02 198 4331 1522 2096 713 62.1 MiB 0.04 0.00 0.934432 -35.1872 -0.934432 0.934432 0.99 0.000353246 0.000324785 0.0191643 0.017634 36 726 40 6.99608e+06 44147 648988. 2245.63 1.85 0.0920347 0.0808788 26050 158493 -1 565 20 478 478 40135 10950 1.26633 1.26633 -41.0595 -1.26633 0 0 828058. 2865.25 0.25 0.04 0.23 -1 -1 0.25 0.0150406 0.0133323 22 2 16 16 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.20 vpr 62.18 MiB 0.03 6352 -1 -1 1 0.03 -1 -1 30264 -1 -1 3 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.6 MiB 0.02 227 4098 1263 2618 217 62.2 MiB 0.04 0.00 1.30576 -38.4531 -1.30576 1.30576 1.00 0.000378807 0.000348453 0.0179561 0.0165397 28 966 30 6.99608e+06 44147 531479. 1839.03 1.12 0.0715413 0.0632786 24610 126494 -1 709 14 430 430 33317 9589 1.34133 1.34133 -48.2646 -1.34133 0 0 648988. 2245.63 0.19 0.02 0.14 -1 -1 0.19 0.0064019 0.00576552 24 2 17 17 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.79 vpr 62.22 MiB 0.02 6332 -1 -1 1 0.03 -1 -1 30380 -1 -1 4 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.7 MiB 0.03 362 3012 639 2325 48 62.2 MiB 0.03 0.00 1.31676 -43.8553 -1.31676 1.31676 0.99 0.000407116 0.000375383 0.0130924 0.0120909 34 1031 45 6.99608e+06 58862.7 618332. 2139.56 1.75 0.113045 0.0991241 25762 151098 -1 850 17 437 437 43024 9661 1.22703 1.22703 -50.7799 -1.22703 0 0 787024. 2723.27 0.28 0.04 0.20 -1 -1 0.28 0.0145338 0.0128813 25 2 18 18 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.82 vpr 62.29 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30324 -1 -1 4 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.7 MiB 0.03 307 4623 989 3596 38 62.3 MiB 0.04 0.00 1.33876 -48.0718 -1.33876 1.33876 0.99 0.000457337 0.000421796 0.019144 0.0176632 34 930 22 6.99608e+06 58862.7 618332. 2139.56 1.58 0.115567 0.101345 25762 151098 -1 746 20 441 441 48224 13948 1.64023 1.64023 -57.5889 -1.64023 0 0 787024. 2723.27 0.24 0.05 0.20 -1 -1 0.24 0.0185989 0.0164725 28 2 20 20 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 5.02 vpr 62.27 MiB 0.03 6384 -1 -1 1 0.02 -1 -1 30328 -1 -1 4 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.7 MiB 0.03 643 8179 2647 4716 816 62.3 MiB 0.07 0.00 1.36076 -60.9293 -1.36076 1.36076 0.99 0.000512145 0.000468737 0.0324602 0.0299511 34 1238 26 6.99608e+06 58862.7 618332. 2139.56 1.63 0.141458 0.125428 25762 151098 -1 1165 29 543 543 171796 89227 1.20503 1.20503 -65.0808 -1.20503 0 0 787024. 2723.27 0.28 0.10 0.20 -1 -1 0.28 0.026177 0.0231182 31 2 22 22 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 6.66 vpr 62.43 MiB 0.02 6356 -1 -1 1 0.02 -1 -1 30320 -1 -1 5 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 23.8 MiB 0.03 375 8585 2269 6036 280 62.4 MiB 0.07 0.00 1.38276 -61.0669 -1.38276 1.38276 1.03 0.000545443 0.000503604 0.0322708 0.0297716 34 1096 18 6.99608e+06 73578.4 618332. 2139.56 3.36 0.189387 0.167464 25762 151098 -1 899 11 496 496 40266 11596 1.28633 1.28633 -66.0946 -1.28633 0 0 787024. 2723.27 0.24 0.04 0.22 -1 -1 0.24 0.0139882 0.0125837 34 2 24 24 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 4.54 vpr 62.50 MiB 0.03 6448 -1 -1 1 0.02 -1 -1 30324 -1 -1 5 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 24.0 MiB 0.04 470 11571 3015 8364 192 62.5 MiB 0.09 0.00 1.40476 -68.6401 -1.40476 1.40476 1.03 0.000591011 0.000545951 0.0421335 0.0389114 30 1379 24 6.99608e+06 73578.4 556674. 1926.21 1.15 0.117917 0.105774 25186 138497 -1 1140 17 651 651 59088 15025 1.67993 1.67993 -85.9365 -1.67993 0 0 706193. 2443.58 0.22 0.05 0.20 -1 -1 0.22 0.0209377 0.0187169 37 2 26 26 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 6.36 vpr 62.64 MiB 0.04 6504 -1 -1 1 0.03 -1 -1 30180 -1 -1 6 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 24.0 MiB 0.04 983 13754 5168 7361 1225 62.6 MiB 0.10 0.00 1.44876 -89.273 -1.44876 1.44876 1.00 0.000690313 0.000637644 0.047481 0.0439165 36 1933 32 6.99608e+06 88294.1 648988. 2245.63 2.98 0.202416 0.181356 26050 158493 -1 1704 18 708 708 93962 18374 1.45133 1.45133 -97.075 -1.45133 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0246757 0.0221008 43 2 30 30 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 10.82 vpr 62.86 MiB 0.02 6416 -1 -1 1 0.03 -1 -1 30308 -1 -1 7 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 24.1 MiB 0.05 938 18136 7666 10324 146 62.9 MiB 0.13 0.00 1.85309 -100.228 -1.85309 1.85309 1.01 0.000795281 0.00073618 0.0610159 0.0564902 38 1887 30 6.99608e+06 103010 678818. 2348.85 7.31 0.388447 0.346967 26626 170182 -1 1598 18 777 777 79259 17050 1.50433 1.50433 -102.959 -1.50433 0 0 902133. 3121.57 0.26 0.07 0.24 -1 -1 0.26 0.0287272 0.0258284 49 2 34 34 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 6.75 vpr 63.55 MiB 0.05 6684 -1 -1 1 0.03 -1 -1 30432 -1 -1 10 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.7 MiB 0.06 1600 30324 10676 17928 1720 63.6 MiB 0.21 0.00 2.38942 -168.824 -2.38942 2.38942 1.00 0.00120909 0.00112331 0.0911696 0.084643 40 2947 25 6.99608e+06 147157 706193. 2443.58 2.98 0.352103 0.319509 26914 176310 -1 2704 15 1141 1141 150451 30063 1.55028 1.55028 -159.908 -1.55028 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0376555 0.0343087 73 2 50 50 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 11.33 vpr 64.15 MiB 0.02 7000 -1 -1 1 0.05 -1 -1 30348 -1 -1 13 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65692 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.1 MiB 0.08 1882 46107 19193 26799 115 64.2 MiB 0.31 0.01 2.92575 -230.221 -2.92575 2.92575 1.00 0.00164334 0.00152888 0.128349 0.119496 58 3334 21 6.99608e+06 191304 997811. 3452.63 7.18 0.630739 0.575492 30370 251734 -1 3024 17 1382 1382 139711 29560 1.77103 1.77103 -206.734 -1.77103 0 0 1.25153e+06 4330.55 0.37 0.14 0.40 -1 -1 0.37 0.0572444 0.0523542 97 2 66 66 0 0 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.43 vpr 61.21 MiB 0.01 5820 -1 -1 1 0.05 -1 -1 31764 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.6 MiB 0.01 33 272 66 196 10 61.2 MiB 0.01 0.00 0.62144 -7.45301 -0.62144 0.62144 0.99 9.2071e-05 8.2656e-05 0.00218681 0.00195501 18 89 5 6.79088e+06 13472 376052. 1301.22 0.55 0.00540622 0.00493726 22222 88205 -1 96 12 56 56 3434 1195 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.15 0.01 0.13 -1 -1 0.15 0.00348288 0.00313244 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 4.86 vpr 61.32 MiB 0.03 6040 -1 -1 2 0.05 -1 -1 31868 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62792 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.6 MiB 0.01 171 94 40 54 0 61.3 MiB 0.01 0.00 1.02368 -16.6264 -1.02368 1.02368 0.96 0.000150084 0.000136484 0.00132734 0.00125 20 289 7 6.79088e+06 26944 414966. 1435.87 1.90 0.0145334 0.0126342 22510 95286 -1 266 5 64 74 4817 1223 1.02368 1.02368 -16.8849 -1.02368 0 0 503264. 1741.40 0.16 0.01 0.15 -1 -1 0.16 0.00329059 0.00301525 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 3.63 vpr 61.30 MiB 0.02 5944 -1 -1 3 0.05 -1 -1 32032 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62776 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.7 MiB 0.01 78 532 122 389 21 61.3 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.97 0.000177896 0.000162485 0.00401609 0.00370982 22 260 9 6.79088e+06 26944 443629. 1535.05 0.69 0.0231734 0.0201843 22798 101617 -1 226 9 94 97 5775 1844 1.05944 1.05944 -17.4573 -1.05944 0 0 531479. 1839.03 0.17 0.01 0.14 -1 -1 0.17 0.00479869 0.00431345 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.85 vpr 61.37 MiB 0.01 6088 -1 -1 3 0.05 -1 -1 32356 -1 -1 2 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62840 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.7 MiB 0.02 107 781 172 592 17 61.4 MiB 0.02 0.00 1.35273 -19.9898 -1.35273 1.35273 1.10 0.000205039 0.000187962 0.00537429 0.0049506 22 345 12 6.79088e+06 26944 443629. 1535.05 0.72 0.028556 0.0249283 22798 101617 -1 293 9 124 141 7077 2286 1.35273 1.35273 -22.9083 -1.35273 0 0 531479. 1839.03 0.19 0.01 0.14 -1 -1 0.19 0.00535346 0.0048109 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.79 vpr 61.32 MiB 0.02 6088 -1 -1 3 0.06 -1 -1 32040 -1 -1 2 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62792 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.5 MiB 0.09 114 826 163 641 22 61.3 MiB 0.01 0.00 1.56413 -22.8709 -1.56413 1.56413 0.99 0.000249137 0.000229236 0.00558657 0.00514482 26 410 10 6.79088e+06 26944 503264. 1741.40 0.81 0.040737 0.0354492 23662 119890 -1 369 12 192 238 11808 3694 1.43883 1.43883 -25.6249 -1.43883 0 0 618332. 2139.56 0.22 0.02 0.16 -1 -1 0.22 0.0075407 0.00671619 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.06 vpr 61.47 MiB 0.02 6096 -1 -1 4 0.07 -1 -1 31880 -1 -1 2 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62944 19 10 60 70 1 48 31 17 17 289 -1 unnamed_device 23.0 MiB 0.07 208 1183 243 913 27 61.5 MiB 0.02 0.00 1.43883 -26.3779 -1.43883 1.43883 1.01 0.000262446 0.000241467 0.00717244 0.00660743 30 510 13 6.79088e+06 26944 556674. 1926.21 0.90 0.0373012 0.032618 24526 138013 -1 442 8 150 161 10837 2762 1.38849 1.38849 -28.1686 -1.38849 0 0 706193. 2443.58 0.22 0.02 0.15 -1 -1 0.22 0.00621874 0.00558516 16 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 5.67 vpr 61.43 MiB 0.03 5984 -1 -1 4 0.06 -1 -1 31872 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62904 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.9 MiB 0.14 149 1859 392 1447 20 61.4 MiB 0.02 0.00 1.81478 -30.7611 -1.81478 1.81478 0.99 0.00030242 0.000278804 0.0106776 0.00985105 26 530 16 6.79088e+06 40416 503264. 1741.40 2.47 0.0955941 0.0831627 23662 119890 -1 453 13 218 270 12847 4090 1.56418 1.56418 -31.5631 -1.56418 0 0 618332. 2139.56 0.20 0.02 0.17 -1 -1 0.20 0.0093343 0.00831474 20 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.30 vpr 61.43 MiB 0.02 6208 -1 -1 5 0.07 -1 -1 32472 -1 -1 3 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 23 12 73 85 1 58 38 17 17 289 -1 unnamed_device 22.9 MiB 0.14 169 1361 256 1054 51 61.4 MiB 0.02 0.00 1.99047 -33.3894 -1.99047 1.99047 0.99 0.000316205 0.0002913 0.00758864 0.00697865 26 572 14 6.79088e+06 40416 503264. 1741.40 2.20 0.0625345 0.0545784 23662 119890 -1 505 10 227 273 13680 4280 1.81483 1.81483 -36.4696 -1.81483 0 0 618332. 2139.56 0.21 0.02 0.16 -1 -1 0.21 0.00814437 0.00729971 19 16 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 5.64 vpr 61.41 MiB 0.03 6000 -1 -1 5 0.06 -1 -1 31992 -1 -1 3 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62888 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 22.9 MiB 0.17 342 1371 258 1104 9 61.4 MiB 0.02 0.00 2.15497 -41.9864 -2.15497 2.15497 0.99 0.000348186 0.000320577 0.00777375 0.00717359 28 844 24 6.79088e+06 40416 531479. 1839.03 2.37 0.114758 0.100091 23950 126010 -1 745 18 306 367 25495 6303 2.15497 2.15497 -43.6926 -2.15497 0 0 648988. 2245.63 0.20 0.03 0.18 -1 -1 0.20 0.013553 0.0120247 24 20 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 4.91 vpr 61.60 MiB 0.02 6112 -1 -1 5 0.06 -1 -1 32156 -1 -1 5 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63080 27 14 91 105 1 72 46 17 17 289 -1 unnamed_device 23.1 MiB 0.35 463 4474 1255 2523 696 61.6 MiB 0.04 0.00 2.15497 -48.5456 -2.15497 2.15497 0.99 0.000399026 0.000368041 0.0227203 0.0209657 34 923 17 6.79088e+06 67360 618332. 2139.56 1.40 0.101913 0.0901473 25102 150614 -1 829 11 225 292 22091 4990 1.85403 1.85403 -47.322 -1.85403 0 0 787024. 2723.27 0.24 0.02 0.22 -1 -1 0.24 0.0105731 0.00948655 28 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 5.92 vpr 61.56 MiB 0.03 6172 -1 -1 6 0.06 -1 -1 31960 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63040 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 23.0 MiB 0.26 402 4920 1984 2698 238 61.6 MiB 0.05 0.00 2.44482 -52.0425 -2.44482 2.44482 0.98 0.000405688 0.000374144 0.0241725 0.0223344 28 933 20 6.79088e+06 53888 531479. 1839.03 2.51 0.116085 0.10224 23950 126010 -1 885 15 376 436 42647 9426 2.22999 2.22999 -54.5068 -2.22999 0 0 648988. 2245.63 0.20 0.03 0.16 -1 -1 0.20 0.0135981 0.0120843 27 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 4.39 vpr 61.62 MiB 0.03 6188 -1 -1 6 0.06 -1 -1 31948 -1 -1 4 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 31 16 104 120 1 80 51 17 17 289 -1 unnamed_device 23.0 MiB 0.24 302 5785 2107 2514 1164 61.6 MiB 0.06 0.00 2.28032 -51.299 -2.28032 2.28032 0.99 0.000451362 0.000416621 0.0294246 0.0272006 28 993 30 6.79088e+06 53888 531479. 1839.03 0.98 0.0924558 0.082174 23950 126010 -1 764 9 305 389 27756 7347 2.10469 2.10469 -52.8128 -2.10469 0 0 648988. 2245.63 0.20 0.03 0.18 -1 -1 0.20 0.010598 0.00954968 30 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 6.71 vpr 61.70 MiB 0.04 6104 -1 -1 7 0.06 -1 -1 31948 -1 -1 4 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63176 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 23.1 MiB 0.49 543 3930 901 2605 424 61.7 MiB 0.03 0.00 2.90693 -65.5021 -2.90693 2.90693 0.99 0.000337657 0.00030863 0.0169053 0.0155758 32 1151 15 6.79088e+06 53888 586450. 2029.24 3.03 0.107043 0.094681 24814 144142 -1 1021 11 322 397 34345 7785 2.60599 2.60599 -66.1061 -2.60599 0 0 744469. 2576.02 0.23 0.03 0.21 -1 -1 0.23 0.0121898 0.0109144 31 26 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 8.20 vpr 61.90 MiB 0.01 6076 -1 -1 7 0.06 -1 -1 32524 -1 -1 5 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 37 19 127 146 1 96 61 17 17 289 -1 unnamed_device 23.3 MiB 0.45 295 7021 2437 3160 1424 61.9 MiB 0.06 0.00 2.91037 -65.8977 -2.91037 2.91037 1.00 0.000540302 0.000498111 0.0327803 0.0302565 38 1004 29 6.79088e+06 67360 678818. 2348.85 4.45 0.204589 0.181425 25966 169698 -1 726 13 454 596 36985 11002 2.57023 2.57023 -61.6477 -2.57023 0 0 902133. 3121.57 0.26 0.04 0.24 -1 -1 0.26 0.0159572 0.0143346 35 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 5.59 vpr 61.97 MiB 0.01 6056 -1 -1 8 0.07 -1 -1 32172 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 41 21 139 160 1 112 68 17 17 289 -1 unnamed_device 23.3 MiB 0.57 508 4898 1054 3573 271 62.0 MiB 0.05 0.00 2.87117 -74.2184 -2.87117 2.87117 1.00 0.000583525 0.000539142 0.0223359 0.0206374 34 1297 33 6.79088e+06 80832 618332. 2139.56 1.66 0.150436 0.133738 25102 150614 -1 1158 32 514 702 161536 91469 2.49527 2.49527 -75.0127 -2.49527 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0351211 0.031187 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 8.50 vpr 61.96 MiB 0.01 6272 -1 -1 9 0.08 -1 -1 32240 -1 -1 6 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 23.3 MiB 0.90 483 11079 4397 4549 2133 62.0 MiB 0.09 0.00 3.24712 -85.6968 -3.24712 3.24712 0.99 0.000635832 0.000586489 0.0463341 0.042732 48 985 13 6.79088e+06 80832 865456. 2994.66 4.11 0.235469 0.209981 27694 206865 -1 924 13 443 584 35614 9742 2.81745 2.81745 -78.2968 -2.81745 0 0 1.05005e+06 3633.38 0.31 0.04 0.31 -1 -1 0.31 0.0184597 0.016654 44 40 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 8.50 vpr 62.05 MiB 0.01 6112 -1 -1 10 0.08 -1 -1 32612 -1 -1 6 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 49 25 165 190 1 130 80 17 17 289 -1 unnamed_device 23.4 MiB 1.00 468 11432 4054 6138 1240 62.1 MiB 0.09 0.00 3.73729 -98.7303 -3.73729 3.73729 0.99 0.000684158 0.000630999 0.0473606 0.0436643 44 1134 32 6.79088e+06 80832 787024. 2723.27 4.06 0.258466 0.230832 27118 194962 -1 825 12 455 603 35292 10574 3.39715 3.39715 -93.9035 -3.39715 0 0 997811. 3452.63 0.30 0.04 0.28 -1 -1 0.30 0.0187916 0.0169851 48 43 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 7.36 vpr 62.11 MiB 0.01 6436 -1 -1 11 0.08 -1 -1 32560 -1 -1 9 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 57 29 199 228 1 155 95 17 17 289 -1 unnamed_device 23.4 MiB 0.66 789 16943 5998 9812 1133 62.1 MiB 0.12 0.00 4.24198 -131.364 -4.24198 4.24198 0.99 0.00083325 0.00077058 0.0677353 0.062636 34 1849 27 6.79088e+06 121248 618332. 2139.56 3.32 0.303499 0.271994 25102 150614 -1 1617 14 604 805 56644 13426 3.77654 3.77654 -126.374 -3.77654 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0251812 0.022713 57 57 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 9.99 vpr 62.57 MiB 0.03 6416 -1 -1 13 0.08 -1 -1 31916 -1 -1 9 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 65 33 224 257 1 177 107 17 17 289 -1 unnamed_device 23.7 MiB 1.14 557 14275 4480 7574 2221 62.6 MiB 0.11 0.00 5.12268 -154.852 -5.12268 5.12268 0.99 0.000936652 0.000866859 0.0559329 0.0518165 44 1491 43 6.79088e+06 121248 787024. 2723.27 5.20 0.390304 0.350007 27118 194962 -1 1101 12 628 835 55457 16456 4.53194 4.53194 -140.798 -4.53194 0 0 997811. 3452.63 0.30 0.06 0.29 -1 -1 0.30 0.0255045 0.0231477 64 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 10.89 vpr 63.11 MiB 0.04 6496 -1 -1 19 0.10 -1 -1 32420 -1 -1 14 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 97 49 340 389 1 267 160 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1235 29672 8796 18851 2025 63.1 MiB 0.20 0.00 7.35388 -294.1 -7.35388 7.35388 1.04 0.00142828 0.00132544 0.102237 0.0947913 30 3204 48 6.79088e+06 188608 556674. 1926.21 5.93 0.563941 0.511028 24526 138013 -1 2519 15 1035 1438 86692 21787 6.88844 6.88844 -288.11 -6.88844 0 0 706193. 2443.58 0.22 0.09 0.20 -1 -1 0.22 0.0458368 0.0418758 99 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.78 vpr 64.10 MiB 0.04 6816 -1 -1 26 0.13 -1 -1 32540 -1 -1 18 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65640 129 65 454 519 1 353 212 17 17 289 -1 unnamed_device 24.9 MiB 2.43 1888 43751 13509 25858 4384 64.1 MiB 0.27 0.00 9.60549 -483.176 -9.60549 9.60549 0.98 0.00181034 0.00167165 0.137741 0.127808 40 3640 14 6.79088e+06 242496 706193. 2443.58 5.54 0.792926 0.723105 26254 175826 -1 3494 11 1272 1698 122564 29200 9.10429 9.10429 -461.624 -9.10429 0 0 926341. 3205.33 0.27 0.10 0.26 -1 -1 0.27 0.0488027 0.044973 128 132 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.46 vpr 61.95 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 29924 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 23.3 MiB 0.02 41 285 71 196 18 62.0 MiB 0.01 0.00 0.691615 -8.15073 -0.691615 0.691615 1.00 9.7843e-05 8.8246e-05 0.00241311 0.00216868 18 109 11 6.87369e+06 13973.8 376052. 1301.22 0.59 0.00611667 0.00545849 22882 88689 -1 98 6 38 38 1850 683 0.74674 0.74674 -8.95368 -0.74674 0 0 470940. 1629.55 0.15 0.01 0.13 -1 -1 0.15 0.00261309 0.00239561 8 2 5 5 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 4.72 vpr 61.72 MiB 0.03 6304 -1 -1 1 0.02 -1 -1 30116 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63200 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 23.1 MiB 0.04 62 469 108 341 20 61.7 MiB 0.01 0.00 0.811073 -12.8206 -0.811073 0.811073 0.98 0.000145209 0.000132163 0.00309704 0.00281229 24 227 10 6.87369e+06 27947.7 470940. 1629.55 1.72 0.0259067 0.0222543 24034 113901 -1 203 7 91 91 4485 1429 0.925373 0.925373 -14.5925 -0.925373 0 0 586450. 2029.24 0.18 0.01 0.17 -1 -1 0.18 0.00375072 0.00340474 12 2 7 7 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 5.64 vpr 61.73 MiB 0.04 6232 -1 -1 1 0.03 -1 -1 29896 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63208 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 23.1 MiB 0.04 150 1222 325 707 190 61.7 MiB 0.02 0.00 0.833073 -16.2242 -0.833073 0.833073 0.99 0.000168167 0.000153185 0.00729229 0.00665044 28 281 17 6.87369e+06 27947.7 531479. 1839.03 2.57 0.043269 0.0372084 24610 126494 -1 242 14 124 124 5686 1863 0.936373 0.936373 -16.4265 -0.936373 0 0 648988. 2245.63 0.22 0.01 0.16 -1 -1 0.22 0.00594807 0.00528549 14 2 8 8 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.80 vpr 61.91 MiB 0.01 6304 -1 -1 1 0.02 -1 -1 30084 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63400 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 23.2 MiB 0.09 117 786 177 561 48 61.9 MiB 0.01 0.00 1.2044 -18.3747 -1.2044 1.2044 0.99 0.000196387 0.000179734 0.00443001 0.00404365 26 382 22 6.87369e+06 41921.5 503264. 1741.40 0.81 0.0320397 0.0276935 24322 120374 -1 292 15 222 222 14664 4565 1.09267 1.09267 -21.2751 -1.09267 0 0 618332. 2139.56 0.19 0.02 0.09 -1 -1 0.19 0.00698752 0.00616179 17 2 9 9 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 5.15 vpr 61.77 MiB 0.03 6392 -1 -1 1 0.02 -1 -1 30164 -1 -1 3 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.0 MiB 0.05 110 1173 271 830 72 61.8 MiB 0.02 0.00 1.2154 -20.999 -1.2154 1.2154 1.00 0.000218159 0.000200313 0.00636808 0.00584089 26 312 15 6.87369e+06 41921.5 503264. 1741.40 2.02 0.0613298 0.0528073 24322 120374 -1 246 13 192 192 8953 3600 1.09267 1.09267 -23.67 -1.09267 0 0 618332. 2139.56 0.20 0.02 0.17 -1 -1 0.20 0.00695857 0.00611879 18 2 10 10 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.98 vpr 61.91 MiB 0.03 6252 -1 -1 1 0.02 -1 -1 30156 -1 -1 3 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 23.2 MiB 0.06 195 882 180 665 37 61.9 MiB 0.01 0.00 1.2264 -24.9075 -1.2264 1.2264 1.00 0.000284324 0.000263953 0.00494312 0.00455141 26 435 13 6.87369e+06 41921.5 503264. 1741.40 0.86 0.0359912 0.0313663 24322 120374 -1 415 16 233 233 20546 5023 0.978373 0.978373 -26.796 -0.978373 0 0 618332. 2139.56 0.21 0.02 0.15 -1 -1 0.21 0.00875487 0.00770288 20 2 11 11 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 5.99 vpr 61.82 MiB 0.01 6372 -1 -1 1 0.02 -1 -1 30116 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.1 MiB 0.05 144 2885 1003 1217 665 61.8 MiB 0.03 0.00 1.2374 -27.1265 -1.2374 1.2374 1.00 0.000276252 0.000254303 0.0143589 0.013222 32 390 14 6.87369e+06 41921.5 586450. 2029.24 2.80 0.0785 0.0678134 25474 144626 -1 344 18 234 234 17612 4663 1.02237 1.02237 -27.8083 -1.02237 0 0 744469. 2576.02 0.23 0.02 0.21 -1 -1 0.23 0.0103278 0.00906292 22 2 12 12 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 4.09 vpr 62.01 MiB 0.03 6328 -1 -1 1 0.02 -1 -1 30196 -1 -1 4 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 23.3 MiB 0.05 160 3141 1130 1425 586 62.0 MiB 0.03 0.00 1.2484 -29.9027 -1.2484 1.2484 0.99 0.00029328 0.000269865 0.0146375 0.0134684 30 454 15 6.87369e+06 55895.4 556674. 1926.21 0.91 0.0482079 0.0424797 25186 138497 -1 352 12 239 239 12891 3626 1.02237 1.02237 -29.2694 -1.02237 0 0 706193. 2443.58 0.22 0.02 0.20 -1 -1 0.22 0.00832743 0.00738477 24 2 13 13 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.99 vpr 61.87 MiB 0.01 6276 -1 -1 1 0.03 -1 -1 30048 -1 -1 4 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63352 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.2 MiB 0.07 273 1986 428 1427 131 61.9 MiB 0.01 0.00 1.2594 -33.6091 -1.2594 1.2594 1.05 0.000125353 0.000113518 0.00411513 0.00374557 30 631 14 6.87369e+06 55895.4 556674. 1926.21 0.83 0.0354684 0.0309361 25186 138497 -1 554 14 247 247 18730 4520 1.12567 1.12567 -36.3184 -1.12567 0 0 706193. 2443.58 0.22 0.02 0.20 -1 -1 0.22 0.00987842 0.00876282 26 2 14 14 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 6.16 vpr 61.96 MiB 0.02 6352 -1 -1 1 0.02 -1 -1 30156 -1 -1 4 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.2 MiB 0.05 172 3005 731 2225 49 62.0 MiB 0.03 0.00 1.2704 -34.9378 -1.2704 1.2704 1.19 0.000236037 0.000215187 0.0100865 0.00921241 30 594 15 6.87369e+06 55895.4 556674. 1926.21 2.80 0.0980279 0.0853002 25186 138497 -1 494 11 327 327 19297 6021 1.13667 1.13667 -37.7012 -1.13667 0 0 706193. 2443.58 0.22 0.02 0.20 -1 -1 0.22 0.00881132 0.00785437 28 2 15 15 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 4.80 vpr 62.11 MiB 0.02 6324 -1 -1 1 0.03 -1 -1 30316 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.4 MiB 0.07 229 5703 2009 2867 827 62.1 MiB 0.05 0.00 1.2814 -38.1431 -1.2814 1.2814 1.01 0.000354957 0.000326431 0.0242362 0.0222766 36 705 22 6.87369e+06 55895.4 648988. 2245.63 1.54 0.0981077 0.0865236 26050 158493 -1 593 20 448 448 38316 9674 1.21997 1.21997 -41.0657 -1.21997 0 0 828058. 2865.25 0.25 0.04 0.23 -1 -1 0.25 0.0144347 0.0127397 31 2 16 16 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 4.26 vpr 62.03 MiB 0.01 6368 -1 -1 1 0.02 -1 -1 30272 -1 -1 5 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.5 MiB 0.21 343 2477 453 1920 104 62.0 MiB 0.03 0.00 1.65273 -42.8517 -1.65273 1.65273 1.00 0.000383909 0.000354168 0.0106255 0.00979454 30 859 17 6.87369e+06 69869.2 556674. 1926.21 0.94 0.0553969 0.0489341 25186 138497 -1 770 14 373 373 28625 6921 1.33697 1.33697 -48.5774 -1.33697 0 0 706193. 2443.58 0.22 0.03 0.19 -1 -1 0.22 0.0116304 0.0103368 33 2 17 17 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 6.21 vpr 62.04 MiB 0.03 6372 -1 -1 1 0.02 -1 -1 30212 -1 -1 5 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.5 MiB 0.08 529 6191 2034 3087 1070 62.0 MiB 0.05 0.00 1.66373 -51.7075 -1.66373 1.66373 1.00 0.0004145 0.000382545 0.0252684 0.023301 32 1065 18 6.87369e+06 69869.2 586450. 2029.24 2.88 0.133204 0.117034 25474 144626 -1 943 19 475 475 53953 11566 1.16767 1.16767 -52.3929 -1.16767 0 0 744469. 2576.02 0.23 0.04 0.21 -1 -1 0.23 0.0157722 0.0139482 34 2 18 18 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 4.18 vpr 62.04 MiB 0.02 6416 -1 -1 1 0.02 -1 -1 30344 -1 -1 5 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.4 MiB 0.08 389 3541 680 2732 129 62.0 MiB 0.04 0.00 1.68573 -52.6978 -1.68573 1.68573 1.00 0.000459838 0.000425019 0.014545 0.0134267 30 915 18 6.87369e+06 69869.2 556674. 1926.21 0.98 0.0692441 0.0612958 25186 138497 -1 809 16 444 444 29186 7694 1.23367 1.23367 -54.8261 -1.23367 0 0 706193. 2443.58 0.21 0.04 0.14 -1 -1 0.21 0.0154505 0.0136839 38 2 20 20 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 6.62 vpr 62.26 MiB 0.02 6404 -1 -1 1 0.02 -1 -1 30432 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.7 MiB 0.08 521 9176 2350 6174 652 62.3 MiB 0.07 0.00 1.70773 -62.9967 -1.70773 1.70773 1.01 0.000500004 0.000461133 0.0345915 0.0318955 34 1157 15 6.87369e+06 83843 618332. 2139.56 3.27 0.145983 0.129021 25762 151098 -1 1015 15 482 482 42077 9550 1.25567 1.25567 -63.2916 -1.25567 0 0 787024. 2723.27 0.24 0.04 0.22 -1 -1 0.24 0.0159986 0.0142184 42 2 22 22 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.86 vpr 62.08 MiB 0.01 6456 -1 -1 1 0.02 -1 -1 30408 -1 -1 6 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.4 MiB 0.12 729 8754 2978 4459 1317 62.1 MiB 0.07 0.00 1.72973 -73.6047 -1.72973 1.72973 1.00 0.000546667 0.00050444 0.032144 0.0296624 34 1410 15 6.87369e+06 83843 618332. 2139.56 1.54 0.138171 0.123087 25762 151098 -1 1333 17 622 622 69602 14433 1.19167 1.19167 -70.9194 -1.19167 0 0 787024. 2723.27 0.25 0.05 0.21 -1 -1 0.25 0.0190094 0.0169277 47 2 24 24 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.92 vpr 62.36 MiB 0.02 6312 -1 -1 1 0.02 -1 -1 30312 -1 -1 7 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 626 6381 1405 4813 163 62.4 MiB 0.06 0.00 2.11206 -77.6657 -2.11206 2.11206 1.03 0.000594108 0.000549315 0.0231493 0.0214084 34 1495 13 6.87369e+06 97816.9 618332. 2139.56 1.54 0.13538 0.1203 25762 151098 -1 1293 18 673 673 73809 16078 1.29767 1.29767 -76.6149 -1.29767 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0215376 0.0192083 50 2 26 26 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 5.03 vpr 62.33 MiB 0.02 6508 -1 -1 1 0.03 -1 -1 29996 -1 -1 8 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.7 MiB 0.11 827 15004 5503 7924 1577 62.3 MiB 0.11 0.00 2.15606 -95.1972 -2.15606 2.15606 0.99 0.000685798 0.00063325 0.049919 0.0461063 34 1703 21 6.87369e+06 111791 618332. 2139.56 1.58 0.189625 0.169925 25762 151098 -1 1498 14 685 685 69309 14935 1.24467 1.24467 -86.3159 -1.24467 0 0 787024. 2723.27 0.24 0.06 0.20 -1 -1 0.24 0.0203509 0.018277 58 2 30 30 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 5.30 vpr 62.82 MiB 0.03 6540 -1 -1 1 0.03 -1 -1 30516 -1 -1 9 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.11 897 16046 5312 9371 1363 62.8 MiB 0.12 0.00 2.56039 -113.342 -2.56039 2.56039 1.06 0.000795239 0.000736441 0.0525279 0.0486069 34 1942 19 6.87369e+06 125765 618332. 2139.56 1.73 0.210843 0.189255 25762 151098 -1 1734 16 836 836 85652 18837 1.33067 1.33067 -101.66 -1.33067 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0260876 0.0233577 66 2 34 34 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.94 vpr 63.59 MiB 0.02 6768 -1 -1 1 0.04 -1 -1 30420 -1 -1 13 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.6 MiB 0.08 1266 31119 10503 17920 2696 63.6 MiB 0.23 0.01 3.45705 -186.713 -3.45705 3.45705 1.00 0.00121672 0.00113032 0.0906143 0.0841468 34 3097 25 6.87369e+06 181660 618332. 2139.56 2.27 0.349134 0.316863 25762 151098 -1 2661 21 1353 1353 136061 31320 1.66567 1.66567 -162.074 -1.66567 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0368324 0.0331614 98 2 50 50 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 6.29 vpr 63.95 MiB 0.03 6980 -1 -1 1 0.04 -1 -1 30240 -1 -1 17 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 25.0 MiB 0.13 1688 49117 18704 27900 2513 63.9 MiB 0.39 0.01 4.35372 -274.791 -4.35372 4.35372 0.99 0.0016391 0.00152441 0.138557 0.129324 36 3981 28 6.87369e+06 237555 648988. 2245.63 2.31 0.431598 0.395411 26050 158493 -1 3348 17 1626 1626 161860 37131 1.87697 1.87697 -215.085 -1.87697 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0558962 0.051049 130 2 66 66 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.54 vpr 61.58 MiB 0.01 6240 -1 -1 1 0.02 -1 -1 30016 -1 -1 1 7 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 23.0 MiB 0.02 42 311 77 212 22 61.6 MiB 0.01 0.00 0.64025 -7.54992 -0.64025 0.64025 0.99 9.6541e-05 8.6888e-05 0.00256063 0.00229375 18 106 8 6.89349e+06 14093.8 376052. 1301.22 0.60 0.00607831 0.00548153 22882 88689 -1 100 4 23 23 962 322 0.74674 0.74674 -8.20966 -0.74674 0 0 470940. 1629.55 0.15 0.01 0.13 -1 -1 0.15 0.00239671 0.00222357 8 2 5 5 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 5.09 vpr 61.48 MiB 0.01 6404 -1 -1 1 0.02 -1 -1 30040 -1 -1 2 11 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62960 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.8 MiB 0.04 64 444 102 328 14 61.5 MiB 0.01 0.00 0.850273 -12.9291 -0.850273 0.850273 1.01 0.000145656 0.000132694 0.00336032 0.00309287 22 237 9 6.89349e+06 28187.7 443629. 1535.05 2.07 0.0242386 0.0207624 23458 102101 -1 205 7 82 82 5336 1711 0.92732 0.92732 -14.6415 -0.92732 0 0 531479. 1839.03 0.17 0.01 0.14 -1 -1 0.17 0.00361733 0.00328142 12 2 7 7 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.89 vpr 61.62 MiB 0.05 6232 -1 -1 1 0.02 -1 -1 30196 -1 -1 2 13 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 23.0 MiB 0.04 94 1012 287 559 166 61.6 MiB 0.01 0.00 0.872273 -16.069 -0.872273 0.872273 0.99 0.000169023 0.00015433 0.0061366 0.0055923 24 259 20 6.89349e+06 28187.7 470940. 1629.55 0.75 0.0278987 0.0242422 24034 113901 -1 207 13 130 130 5574 1866 0.953573 0.953573 -16.154 -0.953573 0 0 586450. 2029.24 0.25 0.01 0.14 -1 -1 0.25 0.00491867 0.00439971 14 2 8 8 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 4.77 vpr 61.99 MiB 0.02 6128 -1 -1 1 0.02 -1 -1 30084 -1 -1 3 15 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 23.3 MiB 0.06 116 862 194 615 53 62.0 MiB 0.01 0.00 1.2216 -18.4475 -1.2216 1.2216 0.99 0.000195289 0.000178568 0.00492427 0.00451004 26 380 23 6.89349e+06 42281.5 503264. 1741.40 1.67 0.0483599 0.0414263 24322 120374 -1 299 10 181 181 10196 3192 1.08787 1.08787 -20.7417 -1.08787 0 0 618332. 2139.56 0.20 0.01 0.17 -1 -1 0.20 0.00532624 0.00474967 17 2 9 9 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 4.98 vpr 61.57 MiB 0.01 6284 -1 -1 1 0.02 -1 -1 30128 -1 -1 3 17 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63048 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.9 MiB 0.05 144 1041 203 767 71 61.6 MiB 0.01 0.00 1.2326 -21.8949 -1.2326 1.2326 1.00 0.000218316 0.000200418 0.00572431 0.00525213 24 415 18 6.89349e+06 42281.5 470940. 1629.55 2.00 0.0431018 0.0372535 24034 113901 -1 396 8 135 135 15448 4273 1.12264 1.12264 -24.7204 -1.12264 0 0 586450. 2029.24 0.18 0.02 0.16 -1 -1 0.18 0.00519604 0.00465696 18 2 10 10 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.81 vpr 61.85 MiB 0.02 6300 -1 -1 1 0.02 -1 -1 30240 -1 -1 3 19 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63332 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 23.1 MiB 0.04 197 882 180 659 43 61.8 MiB 0.01 0.00 1.2436 -25.2401 -1.2436 1.2436 1.00 0.000246961 0.000226699 0.00482106 0.00442421 22 482 11 6.89349e+06 42281.5 443629. 1535.05 1.76 0.0420673 0.0363764 23458 102101 -1 417 14 211 211 18191 4598 1.00037 1.00037 -27.3059 -1.00037 0 0 531479. 1839.03 0.17 0.02 0.14 -1 -1 0.17 0.00689529 0.00605693 20 2 11 11 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.95 vpr 61.70 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 30176 -1 -1 3 21 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63180 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.0 MiB 0.06 152 2828 924 1199 705 61.7 MiB 0.01 0.00 1.2546 -27.6038 -1.2546 1.2546 1.02 0.000106307 9.5646e-05 0.00574023 0.00517739 32 442 15 6.89349e+06 42281.5 586450. 2029.24 0.85 0.0369444 0.0320409 25474 144626 -1 355 13 229 229 14579 3871 1.11467 1.11467 -28.1847 -1.11467 0 0 744469. 2576.02 0.23 0.02 0.21 -1 -1 0.23 0.00820093 0.00724433 22 2 12 12 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 4.10 vpr 61.71 MiB 0.02 6336 -1 -1 1 0.02 -1 -1 29964 -1 -1 4 23 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63196 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 23.1 MiB 0.06 170 3141 1081 1522 538 61.7 MiB 0.03 0.00 1.2656 -29.9906 -1.2656 1.2656 1.00 0.000292065 0.000268831 0.0145607 0.0133952 30 485 12 6.89349e+06 56375.4 556674. 1926.21 0.89 0.048322 0.0427562 25186 138497 -1 365 9 218 218 10416 3156 1.03337 1.03337 -30.0089 -1.03337 0 0 706193. 2443.58 0.22 0.02 0.20 -1 -1 0.22 0.00688918 0.00615585 24 2 13 13 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.10 vpr 61.84 MiB 0.02 6320 -1 -1 1 0.02 -1 -1 30164 -1 -1 4 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63324 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.2 MiB 0.06 267 1770 323 1350 97 61.8 MiB 0.02 0.00 1.2766 -33.681 -1.2766 1.2766 1.00 0.000316426 0.000291642 0.00855786 0.00788705 30 614 24 6.89349e+06 56375.4 556674. 1926.21 0.90 0.0489986 0.0429372 25186 138497 -1 579 13 248 248 19210 4642 1.16487 1.16487 -37.5811 -1.16487 0 0 706193. 2443.58 0.22 0.02 0.20 -1 -1 0.22 0.00932116 0.00826245 26 2 14 14 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 5.77 vpr 61.99 MiB 0.02 6352 -1 -1 1 0.03 -1 -1 30252 -1 -1 4 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.3 MiB 0.06 179 2845 630 2158 57 62.0 MiB 0.03 0.00 1.2876 -35.4048 -1.2876 1.2876 1.00 0.000334473 0.000307979 0.0126804 0.0116794 28 598 10 6.89349e+06 56375.4 531479. 1839.03 2.68 0.0778619 0.0681616 24610 126494 -1 548 10 348 348 22327 7097 1.03967 1.03967 -38.3793 -1.03967 0 0 648988. 2245.63 0.20 0.02 0.11 -1 -1 0.20 0.0082886 0.00739178 28 2 15 15 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.18 vpr 61.78 MiB 0.03 6340 -1 -1 1 0.02 -1 -1 30348 -1 -1 4 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63264 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.0 MiB 0.06 450 5094 1548 3117 429 61.8 MiB 0.05 0.00 1.2986 -43.7121 -1.2986 1.2986 1.00 0.000355516 0.000325802 0.0219557 0.0201198 30 897 13 6.89349e+06 56375.4 556674. 1926.21 1.88 0.100337 0.0881229 25186 138497 -1 783 15 367 367 28287 6208 1.05537 1.05537 -44.1937 -1.05537 0 0 706193. 2443.58 0.22 0.03 0.20 -1 -1 0.22 0.0115455 0.0102181 31 2 16 16 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 4.34 vpr 61.83 MiB 0.03 6252 -1 -1 1 0.03 -1 -1 30284 -1 -1 5 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.2 MiB 0.14 357 2768 540 2100 128 61.8 MiB 0.03 0.00 1.66993 -43.6057 -1.66993 1.66993 1.03 0.000379643 0.000349825 0.0121898 0.0112565 30 837 20 6.89349e+06 70469.2 556674. 1926.21 0.92 0.0585313 0.0516536 25186 138497 -1 781 14 361 361 27928 6699 1.21787 1.21787 -47.4127 -1.21787 0 0 706193. 2443.58 0.27 0.03 0.18 -1 -1 0.27 0.0117908 0.0104759 33 2 17 17 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 4.19 vpr 61.77 MiB 0.02 6472 -1 -1 1 0.02 -1 -1 30500 -1 -1 5 33 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63252 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.3 MiB 0.09 305 6191 2553 3573 65 61.8 MiB 0.05 0.00 1.68093 -46.9077 -1.68093 1.68093 1.00 0.00040672 0.000374587 0.0252435 0.0232512 32 847 17 6.89349e+06 70469.2 586450. 2029.24 0.97 0.0728467 0.0648887 25474 144626 -1 637 18 361 361 38259 9985 1.13667 1.13667 -45.0233 -1.13667 0 0 744469. 2576.02 0.22 0.04 0.11 -1 -1 0.22 0.0152467 0.0134756 34 2 18 18 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 5.29 vpr 62.09 MiB 0.01 6432 -1 -1 1 0.02 -1 -1 30352 -1 -1 5 37 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63584 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.6 MiB 0.07 389 3541 674 2740 127 62.1 MiB 0.03 0.00 1.70293 -53.0421 -1.70293 1.70293 1.01 0.000461074 0.000425981 0.0145987 0.013486 30 873 17 6.89349e+06 70469.2 556674. 1926.21 2.04 0.11842 0.103829 25186 138497 -1 796 13 362 362 22124 5809 1.12567 1.12567 -52.3224 -1.12567 0 0 706193. 2443.58 0.22 0.03 0.20 -1 -1 0.22 0.0131863 0.0116944 38 2 20 20 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 4.90 vpr 62.24 MiB 0.03 6368 -1 -1 1 0.03 -1 -1 30496 -1 -1 6 41 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.7 MiB 0.07 518 8624 2120 6023 481 62.2 MiB 0.07 0.00 1.72493 -63.2115 -1.72493 1.72493 1.01 0.000502665 0.00046437 0.032912 0.03043 34 1201 12 6.89349e+06 84563 618332. 2139.56 1.47 0.128077 0.113684 25762 151098 -1 1092 19 486 486 44758 10102 1.05732 1.05732 -60.475 -1.05732 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0191615 0.0169569 42 2 22 22 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.89 vpr 62.16 MiB 0.07 6400 -1 -1 1 0.03 -1 -1 30320 -1 -1 6 45 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.6 MiB 0.07 723 8754 3062 4670 1022 62.2 MiB 0.07 0.00 1.74693 -75.1597 -1.74693 1.74693 1.00 0.000548145 0.000506193 0.0322829 0.0297954 34 1449 13 6.89349e+06 84563 618332. 2139.56 1.51 0.136395 0.121126 25762 151098 -1 1323 17 566 566 61281 12665 1.18067 1.18067 -69.4326 -1.18067 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0192756 0.0171967 47 2 24 24 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.97 vpr 62.20 MiB 0.03 6460 -1 -1 1 0.02 -1 -1 30324 -1 -1 7 49 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63696 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.6 MiB 0.10 626 7431 1738 5510 183 62.2 MiB 0.07 0.00 2.12926 -77.4465 -2.12926 2.12926 0.99 0.000597739 0.000552859 0.0265395 0.0245343 34 1418 16 6.89349e+06 98656.9 618332. 2139.56 1.51 0.143182 0.1274 25762 151098 -1 1247 15 537 537 47107 10808 1.35887 1.35887 -77.4553 -1.35887 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0186467 0.0166572 50 2 26 26 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 5.16 vpr 62.36 MiB 0.02 6424 -1 -1 1 0.03 -1 -1 30160 -1 -1 8 57 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 744 15004 6297 8531 176 62.4 MiB 0.11 0.00 2.17326 -95.1695 -2.17326 2.17326 1.00 0.00068394 0.000631618 0.0499335 0.0461505 34 1591 25 6.89349e+06 112751 618332. 2139.56 1.64 0.195702 0.175187 25762 151098 -1 1347 18 763 763 72750 17001 1.27767 1.27767 -84.9346 -1.27767 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0246571 0.0220987 58 2 30 30 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 5.09 vpr 62.41 MiB 0.02 6416 -1 -1 1 0.03 -1 -1 30360 -1 -1 9 65 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.09 917 16046 5086 9451 1509 62.4 MiB 0.12 0.00 2.57759 -114.077 -2.57759 2.57759 1.01 0.000794256 0.00073469 0.0524572 0.0485583 34 1955 15 6.89349e+06 126845 618332. 2139.56 1.64 0.207582 0.186274 25762 151098 -1 1772 11 686 686 59886 13353 1.43387 1.43387 -105.391 -1.43387 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0193739 0.0174416 66 2 34 34 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.87 vpr 63.18 MiB 0.03 6764 -1 -1 1 0.04 -1 -1 30372 -1 -1 13 97 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1233 31119 11476 17865 1778 63.2 MiB 0.22 0.01 3.47425 -185.498 -3.47425 3.47425 1.01 0.00120524 0.00111939 0.0901849 0.0837306 34 2983 38 6.89349e+06 183220 618332. 2139.56 2.13 0.373536 0.33893 25762 151098 -1 2521 14 1152 1152 95549 22586 1.63897 1.63897 -154.38 -1.63897 0 0 787024. 2723.27 0.24 0.09 0.21 -1 -1 0.24 0.0348544 0.031624 98 2 50 50 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 7.45 vpr 63.84 MiB 0.08 7080 -1 -1 1 0.04 -1 -1 30328 -1 -1 17 129 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.9 MiB 0.13 1684 49117 17884 28151 3082 63.8 MiB 0.36 0.01 4.37092 -277.44 -4.37092 4.37092 1.00 0.00165169 0.00153753 0.131784 0.122654 34 4750 41 6.89349e+06 239595 618332. 2139.56 3.45 0.540337 0.492949 25762 151098 -1 3584 18 1608 1608 171091 39159 1.85062 1.85062 -221.741 -1.85062 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0581331 0.0530167 130 2 66 66 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 18e7b6ae191..e08b724f058 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 62.76 MiB 0.02 6756 -1 -1 12 0.33 -1 -1 32892 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1320 8130 2002 5291 837 62.8 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.63 0.00093371 0.000839328 0.0402817 0.0372852 36 3542 23 6.55708e+06 349595 612192. 2118.31 3.73 0.224209 0.194478 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0327015 0.0287213 185 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.15 vpr 62.83 MiB 0.02 6628 -1 -1 13 0.30 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1568 9951 2486 6481 984 62.8 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.65 0.00103523 0.000958016 0.0514817 0.0476022 30 4458 47 6.55708e+06 385760 526063. 1820.29 1.87 0.214298 0.187068 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0402365 0.0353162 223 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.58 vpr 63.07 MiB 0.05 6688 -1 -1 12 0.28 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.47 1500 9773 2280 6498 995 63.1 MiB 0.10 0.00 7.53766 -152.093 -7.53766 7.53766 0.65 0.000958635 0.000887576 0.0456729 0.0422471 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.27 0.236012 0.205012 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.20 0.09 0.12 -1 -1 0.20 0.0322298 0.0285026 209 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.58 vpr 62.11 MiB 0.02 6492 -1 -1 12 0.18 -1 -1 32272 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1024 5945 1385 4013 547 62.1 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.63 0.000568799 0.00052082 0.0237947 0.0220379 28 3014 27 6.55708e+06 325485 500653. 1732.36 1.80 0.119129 0.10371 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.025201 0.0221632 136 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.42 vpr 62.32 MiB 0.05 6772 -1 -1 11 0.18 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1220 9679 2547 5973 1159 62.3 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.62 0.000848956 0.00078669 0.0435893 0.0403683 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.46 0.168525 0.148065 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0268312 0.0236665 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.59 vpr 62.18 MiB 0.04 6788 -1 -1 12 0.17 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1146 12373 3633 6385 2355 62.2 MiB 0.11 0.00 7.00181 -148.703 -7.00181 7.00181 0.64 0.000750915 0.000694775 0.0508621 0.0470599 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.65 0.148228 0.130496 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0288059 0.0253076 145 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 62.32 MiB 0.03 6548 -1 -1 13 0.21 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1098 10979 3065 6306 1608 62.3 MiB 0.10 0.00 7.23855 -159.771 -7.23855 7.23855 0.63 0.000817545 0.000758341 0.0485073 0.044869 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.152677 0.133991 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0295727 0.0259776 162 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 62.00 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1073 8868 2309 4974 1585 62.0 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.67 0.000702278 0.000650303 0.0365744 0.033886 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.53 0.148597 0.129912 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0242107 0.0213057 132 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.81 vpr 61.96 MiB 0.02 6584 -1 -1 12 0.17 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 971 12175 3572 6038 2565 62.0 MiB 0.11 0.00 6.75009 -143.946 -6.75009 6.75009 0.63 0.000733129 0.000679315 0.0494691 0.045705 36 2632 22 6.55708e+06 253155 612192. 2118.31 1.99 0.192827 0.168024 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0231096 0.0204691 138 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.18 vpr 62.76 MiB 0.05 6736 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1456 5419 862 4216 341 62.8 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.64 0.000982983 0.000909746 0.0287289 0.0266188 28 4018 41 6.55708e+06 361650 500653. 1732.36 1.85 0.181383 0.157595 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037686 0.0331274 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 9.87 vpr 62.88 MiB 0.03 6776 -1 -1 14 0.32 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.64 0.00098071 0.000906993 0.0396785 0.0367267 30 3773 20 6.55708e+06 349595 526063. 1820.29 6.54 0.286875 0.248245 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373031 0.0327956 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.71 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.22 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.13 0.00 6.42654 -129.9 -6.42654 6.42654 0.66 0.000754213 0.000693132 0.0639594 0.0592358 28 3139 21 6.55708e+06 349595 500653. 1732.36 1.73 0.155457 0.137734 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0308411 0.0270245 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.12 vpr 62.80 MiB 0.05 6748 -1 -1 12 0.27 -1 -1 32884 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 7523 1547 5261 715 62.8 MiB 0.08 0.00 7.78498 -159.33 -7.78498 7.78498 0.64 0.000995265 0.000918752 0.0381691 0.0352965 36 3844 37 6.55708e+06 409870 612192. 2118.31 4.65 0.275563 0.239664 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0364182 0.0321835 213 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.84 vpr 62.89 MiB 0.02 6736 -1 -1 13 0.25 -1 -1 32744 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1448 9075 2050 5697 1328 62.9 MiB 0.10 0.00 8.28129 -168.719 -8.28129 8.28129 0.64 0.00101741 0.000942053 0.046806 0.0433115 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.66 0.182792 0.16007 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.09 0.12 -1 -1 0.22 0.0379165 0.033406 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.10 MiB 0.04 6492 -1 -1 12 0.17 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.63 0.000749562 0.000693343 0.0363037 0.0335967 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.42 0.125465 0.110246 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263692 0.0232836 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.76 vpr 61.68 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32304 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.14 786 5244 1130 3909 205 61.7 MiB 0.05 0.00 5.1986 -117.15 -5.1986 5.1986 0.64 0.000568228 0.000528103 0.0193127 0.0179301 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.12 0.0866695 0.0754284 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0241224 0.0209538 96 88 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.35 vpr 62.18 MiB 0.02 6612 -1 -1 13 0.17 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1123 5079 946 3658 475 62.2 MiB 0.06 0.00 7.44701 -156.373 -7.44701 7.44701 0.64 0.000748003 0.000693257 0.0227339 0.0210382 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.47 0.13633 0.118525 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0288565 0.0253292 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.53 vpr 62.69 MiB 0.02 6668 -1 -1 13 0.28 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1494 10031 2522 6626 883 62.7 MiB 0.10 0.00 7.77584 -154.394 -7.77584 7.77584 0.67 0.000760707 0.000693863 0.0394374 0.0359732 28 4288 44 6.55708e+06 373705 500653. 1732.36 2.34 0.194262 0.168915 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.18 0.14 0.10 -1 -1 0.18 0.0414711 0.0363462 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 7.44 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.29 -1 -1 33280 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1626 7973 1601 5735 637 62.8 MiB 0.09 0.00 7.9648 -163.763 -7.9648 7.9648 0.64 0.000959812 0.000888632 0.0378658 0.0350273 34 4543 38 6.55708e+06 409870 585099. 2024.56 3.93 0.253937 0.220003 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.20 0.23 0.13 -1 -1 0.20 0.0632518 0.0560076 207 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.66 vpr 61.45 MiB 0.02 6316 -1 -1 9 0.09 -1 -1 32220 -1 -1 21 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62928 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.0 MiB 0.29 710 10557 2762 6888 907 61.5 MiB 0.07 0.00 4.66154 -94.5374 -4.66154 4.66154 0.66 0.000591432 0.000550371 0.0339111 0.0315476 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.00 0.110688 0.0969159 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.16 0.03 0.07 -1 -1 0.16 0.00926188 0.00831013 83 73 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.68 vpr 62.79 MiB 0.02 6612 -1 -1 13 0.31 -1 -1 32676 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1530 4780 793 3650 337 62.8 MiB 0.06 0.00 7.84695 -156.636 -7.84695 7.84695 0.65 0.00098049 0.000906089 0.0279149 0.0258923 26 4457 46 6.55708e+06 361650 477104. 1650.88 3.15 0.186585 0.162037 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.18 0.69 0.08 -1 -1 0.18 0.130392 0.112362 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 61.49 MiB 0.02 6296 -1 -1 8 0.09 -1 -1 31108 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.9 MiB 0.22 436 8831 2193 4716 1922 61.5 MiB 0.06 0.00 4.66158 -87.3613 -4.66158 4.66158 0.66 0.000512117 0.000476279 0.0275763 0.025635 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.11 0.10112 0.0883793 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0149569 0.0131562 77 61 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.46 vpr 62.53 MiB 0.03 6736 -1 -1 15 0.23 -1 -1 33240 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1127 8999 2110 5455 1434 62.5 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.71 0.000840897 0.000779905 0.0417058 0.0386975 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.45 0.159054 0.139405 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0330986 0.0289932 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.59 vpr 62.84 MiB 0.05 6548 -1 -1 12 0.24 -1 -1 32752 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1426 7871 1871 5355 645 62.8 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.68 0.000987461 0.000913708 0.0405558 0.0374732 34 3985 37 6.55708e+06 373705 585099. 2024.56 4.30 0.373319 0.321778 22462 138074 -1 3469 18 1513 4862 300913 67896 6.49978 6.49978 -149.655 -6.49978 0 0 742403. 2568.87 0.20 0.11 0.13 -1 -1 0.20 0.0378 0.0332635 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.43 vpr 62.62 MiB 0.02 6724 -1 -1 13 0.26 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1403 8993 2077 6178 738 62.6 MiB 0.10 0.00 7.73601 -160.617 -7.73601 7.73601 0.63 0.000932834 0.000852773 0.0437932 0.040496 30 3593 32 6.55708e+06 337540 526063. 1820.29 7.35 0.276862 0.239839 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0353125 0.0309999 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.25 vpr 62.32 MiB 0.03 6480 -1 -1 12 0.17 -1 -1 32336 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1093 9158 2327 6239 592 62.3 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.66 0.000762234 0.000702162 0.0402733 0.0372186 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.41 0.160538 0.140399 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0297925 0.026162 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.67 vpr 61.88 MiB 0.04 6508 -1 -1 11 0.16 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63364 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1045 6781 1469 4387 925 61.9 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.63 0.000689475 0.000639119 0.0278034 0.0257913 30 2354 17 6.55708e+06 277265 526063. 1820.29 0.91 0.103511 0.0909063 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0200318 0.0178077 128 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.30 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32636 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.62 0.000727551 0.000674546 0.035076 0.0325199 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.35 0.149491 0.130269 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0371363 0.0324386 142 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.89 vpr 62.67 MiB 0.04 6516 -1 -1 12 0.20 -1 -1 32492 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1327 6716 1263 5020 433 62.7 MiB 0.07 0.00 7.20375 -160.021 -7.20375 7.20375 0.63 0.000861993 0.000799266 0.0312838 0.0289936 30 3050 19 6.55708e+06 337540 526063. 1820.29 0.99 0.122561 0.107355 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0340653 0.0298833 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.96 vpr 62.15 MiB 0.02 6544 -1 -1 11 0.17 -1 -1 32764 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1072 4244 722 3315 207 62.1 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.63 0.000768605 0.000711708 0.0208966 0.0193635 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.10 0.119701 0.104074 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0342294 0.0299412 147 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.72 vpr 62.05 MiB 0.04 6612 -1 -1 10 0.14 -1 -1 32692 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.23 967 12733 4051 6442 2240 62.0 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.63 0.000725097 0.000671423 0.0527031 0.0487447 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.84 0.140261 0.123877 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0230223 0.0203407 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.81 vpr 63.01 MiB 0.05 6944 -1 -1 13 0.32 -1 -1 33412 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1621 5869 1104 4212 553 63.0 MiB 0.04 0.00 7.46683 -155.207 -7.46683 7.46683 0.63 0.000476956 0.000437109 0.0159413 0.0146369 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.53 0.14845 0.129059 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0379468 0.0335009 239 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.66 vpr 62.67 MiB 0.02 6720 -1 -1 13 0.28 -1 -1 32972 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1508 8283 1888 5355 1040 62.7 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.63 0.000975472 0.00090224 0.0422161 0.0389818 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.42 0.254466 0.220908 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0372485 0.0327661 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.09 vpr 62.34 MiB 0.04 6620 -1 -1 12 0.15 -1 -1 32752 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1096 12568 3446 6926 2196 62.3 MiB 0.11 0.00 6.66868 -144.132 -6.66868 6.66868 0.64 0.000738521 0.0006831 0.0506349 0.0467321 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.11 0.207701 0.181103 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0234613 0.0207376 150 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.58 vpr 62.84 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 33112 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1489 8977 2020 5913 1044 62.8 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.66 0.00100419 0.000931709 0.0352035 0.0324236 36 3566 22 6.55708e+06 409870 612192. 2118.31 2.46 0.232694 0.201434 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0338183 0.0299356 219 219 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.28 vpr 62.64 MiB 0.05 6936 -1 -1 14 0.36 -1 -1 33216 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.07 0.00 8.35283 -161.679 -8.35283 8.35283 0.65 0.000956704 0.0008874 0.0328082 0.03042 30 3894 50 6.55708e+06 337540 526063. 1820.29 2.11 0.189678 0.16467 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0350292 0.0308772 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.00 vpr 62.37 MiB 0.04 6896 -1 -1 13 0.28 -1 -1 32820 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1364 9271 2151 5683 1437 62.4 MiB 0.10 0.00 7.40806 -157.551 -7.40806 7.40806 0.55 0.000899304 0.000831062 0.044975 0.0415022 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.18 0.162745 0.142374 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0320359 0.0281335 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.96 vpr 62.67 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.63 0.000911643 0.000843971 0.0637128 0.0589754 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.58 0.302333 0.263807 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0387178 0.0338767 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.81 vpr 62.56 MiB 0.04 6828 -1 -1 12 0.17 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.6 MiB 0.08 0.00 7.19338 -143.847 -7.19338 7.19338 0.65 0.000835498 0.000774578 0.0387252 0.035867 30 3079 17 6.55708e+06 289320 526063. 1820.29 0.92 0.133688 0.117273 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298981 0.0262802 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.65 vpr 62.80 MiB 0.05 6932 -1 -1 14 0.43 -1 -1 32476 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.12 0.00 8.08019 -170.094 -8.08019 8.08019 0.64 0.00107206 0.000991306 0.0553479 0.0511759 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.16 0.269697 0.235114 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0418706 0.0369416 245 245 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.29 vpr 62.25 MiB 0.04 6604 -1 -1 11 0.20 -1 -1 32528 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1212 8009 2047 5116 846 62.2 MiB 0.08 0.00 6.43815 -136.573 -6.43815 6.43815 0.64 0.000811093 0.000752324 0.0362993 0.0336181 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.28 0.151057 0.131804 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0307915 0.0270527 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.19 vpr 62.52 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32744 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1339 4512 785 3381 346 62.5 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.63 0.000896123 0.000819016 0.0233624 0.0216121 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.06 0.212056 0.182395 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.21 0.08 0.08 -1 -1 0.21 0.0311296 0.0274297 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.07 vpr 62.84 MiB 0.05 6692 -1 -1 12 0.23 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1513 7973 1697 5548 728 62.8 MiB 0.09 0.00 7.05697 -153.444 -7.05697 7.05697 0.63 0.000992776 0.000918071 0.0392452 0.0363086 34 4231 45 6.55708e+06 409870 585099. 2024.56 2.87 0.275637 0.238104 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.20 0.19 0.12 -1 -1 0.20 0.0532504 0.0463601 227 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.01 vpr 62.64 MiB 0.04 6728 -1 -1 13 0.24 -1 -1 32968 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1286 13340 3362 8056 1922 62.6 MiB 0.13 0.00 7.57452 -156.038 -7.57452 7.57452 0.63 0.000908581 0.000842402 0.0614507 0.0568175 28 3767 45 6.55708e+06 337540 500653. 1732.36 5.94 0.350158 0.303313 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.17 0.14 0.11 -1 -1 0.17 0.0471903 0.0410931 184 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 9.48 vpr 62.50 MiB 0.06 6808 -1 -1 13 0.25 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1203 12563 3367 6823 2373 62.5 MiB 0.12 0.00 7.77281 -162.033 -7.77281 7.77281 0.63 0.000870649 0.000805904 0.0589842 0.0544377 30 2961 38 6.55708e+06 301375 526063. 1820.29 6.35 0.300193 0.260036 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281982 0.0249356 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.53 vpr 62.76 MiB 0.04 6800 -1 -1 12 0.29 -1 -1 32708 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1416 10679 2747 6565 1367 62.8 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.66 0.00108601 0.00100035 0.0539988 0.0498462 36 3519 46 6.55708e+06 373705 612192. 2118.31 3.04 0.288389 0.250122 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0338705 0.0298649 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.82 vpr 62.63 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.6 MiB 0.12 0.00 7.96921 -159.229 -7.96921 7.96921 0.64 0.000967061 0.000895486 0.0557484 0.051563 36 3876 21 6.55708e+06 349595 612192. 2118.31 3.68 0.253433 0.220653 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0350936 0.0309186 205 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.39 vpr 62.41 MiB 0.02 6708 -1 -1 14 0.28 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1228 9197 2464 5958 775 62.4 MiB 0.10 0.00 7.91369 -163.421 -7.91369 7.91369 0.66 0.000869014 0.000796924 0.0469801 0.0434289 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.10 0.168672 0.1478 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.20 0.11 0.12 -1 -1 0.20 0.0365672 0.0319997 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 62.56 MiB 0.03 6772 -1 -1 13 0.27 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1537 7336 1683 5066 587 62.6 MiB 0.08 0.00 8.38432 -170.174 -8.38432 8.38432 0.66 0.00107264 0.00100343 0.0368505 0.0340221 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.27 0.178969 0.15636 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0326727 0.0288024 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.05 vpr 62.67 MiB 0.05 6744 -1 -1 13 0.28 -1 -1 33100 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1531 8951 1993 6087 871 62.7 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.63 0.000995902 0.000921594 0.0454643 0.041904 30 3859 27 6.55708e+06 385760 526063. 1820.29 1.85 0.175429 0.1535 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0318034 0.0281455 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.72 vpr 62.93 MiB 0.05 6728 -1 -1 12 0.30 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1599 7323 1463 5208 652 62.9 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.63 0.00102005 0.000941953 0.0379666 0.0350937 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.42 0.236312 0.204878 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0369305 0.0325417 231 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.89 vpr 61.92 MiB 0.04 6508 -1 -1 11 0.15 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 61.9 MiB 0.10 0.00 5.95009 -133.303 -5.95009 5.95009 0.63 0.000684026 0.000632855 0.0443481 0.0409612 30 2668 32 6.55708e+06 229045 526063. 1820.29 0.98 0.142295 0.124386 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.025023 0.0219396 127 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.25 MiB 0.04 6520 -1 -1 13 0.19 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1281 6211 1217 4524 470 62.3 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.63 0.000805651 0.000747502 0.0283327 0.0262887 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.63 0.126889 0.110711 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360988 0.0314731 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.18 vpr 62.86 MiB 0.05 6944 -1 -1 14 0.44 -1 -1 32916 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1818 9380 1999 6471 910 62.9 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.63 0.00114881 0.00106353 0.0505866 0.0467001 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.69 0.218196 0.191133 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.14 0.11 -1 -1 0.19 0.0478678 0.0425258 267 267 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.31 vpr 63.19 MiB 0.04 6620 -1 -1 13 0.33 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.7 MiB 0.46 1477 8735 1981 6002 752 63.2 MiB 0.10 0.00 7.79483 -168.531 -7.79483 7.79483 0.63 0.00102872 0.00095177 0.0468266 0.0431886 26 4757 42 6.55708e+06 373705 477104. 1650.88 2.87 0.213452 0.186126 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.17 0.19 0.10 -1 -1 0.17 0.0692161 0.0601008 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.75 vpr 62.11 MiB 0.03 6560 -1 -1 11 0.17 -1 -1 32772 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.09 0.00 6.47975 -131.851 -6.47975 6.47975 0.66 0.000731304 0.000676574 0.0431961 0.0398932 36 2386 24 6.55708e+06 277265 612192. 2118.31 1.78 0.189 0.164258 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026683 0.0235345 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.53 vpr 62.97 MiB 0.05 7068 -1 -1 15 0.45 -1 -1 32884 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1670 7867 1614 5465 788 63.0 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.65 0.00107842 0.000996852 0.0428172 0.0395571 36 4552 44 6.55708e+06 397815 612192. 2118.31 4.01 0.316407 0.275579 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.20 0.13 0.13 -1 -1 0.20 0.0473525 0.0415923 241 241 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 14.44 vpr 62.79 MiB 0.05 6732 -1 -1 13 0.32 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.64 0.000978501 0.000906426 0.0628185 0.0581343 38 3720 24 6.55708e+06 349595 638502. 2209.35 10.95 0.430567 0.373341 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0356639 0.0314547 207 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.30 MiB 0.04 6488 -1 -1 11 0.14 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1161 6718 1477 4583 658 62.3 MiB 0.07 0.00 6.62468 -135.028 -6.62468 6.62468 0.64 0.00073168 0.000678159 0.0279979 0.0259334 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.52 0.127649 0.111375 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0298159 0.0261519 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.24 vpr 62.73 MiB 0.05 6868 -1 -1 12 0.29 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.65 0.000977688 0.000903307 0.0435449 0.0402436 34 3975 42 6.55708e+06 373705 585099. 2024.56 5.95 0.38864 0.334264 22462 138074 -1 3408 21 1468 4452 271452 60248 6.59444 6.59444 -149.82 -6.59444 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0419011 0.0367126 217 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 62.36 MiB 0.02 6588 -1 -1 12 0.20 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.63 0.000837982 0.000777388 0.0275411 0.0256044 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.10 0.12738 0.111337 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0303534 0.0267501 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 62.02 MiB 0.03 6564 -1 -1 12 0.18 -1 -1 32668 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.22 998 6383 1524 4361 498 62.0 MiB 0.07 0.00 7.15324 -144.822 -7.15324 7.15324 0.64 0.00076182 0.000706224 0.0302407 0.0279842 28 2443 17 6.55708e+06 253155 500653. 1732.36 0.97 0.117351 0.10289 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.03172 0.0277692 139 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 12.15 vpr 62.66 MiB 0.03 6820 -1 -1 12 0.33 -1 -1 32768 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 14583 4048 7926 2609 62.7 MiB 0.15 0.00 7.005 -132.757 -7.005 7.005 0.63 0.000962425 0.000889088 0.0733817 0.0677962 30 3666 44 6.55708e+06 385760 526063. 1820.29 8.98 0.364866 0.316603 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345851 0.0304227 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.66 vpr 63.11 MiB 0.04 6732 -1 -1 14 0.31 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1622 11046 2782 7202 1062 63.1 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.63 0.00102748 0.00095163 0.0566707 0.0524257 30 4187 27 6.55708e+06 385760 526063. 1820.29 1.29 0.178305 0.15718 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0408506 0.0359528 227 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.98 vpr 62.54 MiB 0.02 6736 -1 -1 12 0.24 -1 -1 32888 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1318 5191 912 3744 535 62.5 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.63 0.000935331 0.000863766 0.0272598 0.0252337 28 3868 27 6.55708e+06 325485 500653. 1732.36 1.84 0.153948 0.134193 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.21 0.11 0.11 -1 -1 0.21 0.0346751 0.030565 192 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.03 vpr 62.02 MiB 0.02 6580 -1 -1 12 0.13 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1100 6615 1512 4600 503 62.0 MiB 0.06 0.00 6.69922 -140.427 -6.69922 6.69922 0.64 0.000703776 0.000652206 0.0269216 0.0249271 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.13 0.114916 0.100558 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0256924 0.0225684 133 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 62.24 MiB 0.04 6560 -1 -1 12 0.23 -1 -1 32340 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1148 11398 2849 6739 1810 62.2 MiB 0.11 0.00 7.39043 -143.264 -7.39043 7.39043 0.63 0.000835345 0.000773965 0.0530799 0.049195 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.15 0.178693 0.156617 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0349132 0.0305764 170 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.25 vpr 62.42 MiB 0.04 6736 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1267 6723 1289 4852 582 62.4 MiB 0.07 0.00 6.0378 -125.718 -6.0378 6.0378 0.63 0.000893289 0.00082792 0.0328412 0.0304201 28 3807 32 6.55708e+06 337540 500653. 1732.36 2.25 0.156894 0.136707 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0373179 0.0325781 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.13 vpr 62.41 MiB 0.02 6792 -1 -1 11 0.23 -1 -1 32780 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.63 0.000843271 0.000781816 0.0642843 0.0595487 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.04 0.228428 0.199243 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.21 0.04 0.09 -1 -1 0.21 0.0179725 0.0162048 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.08 MiB 0.04 6568 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.42 1112 5463 1180 3669 614 62.1 MiB 0.06 0.00 7.87624 -151.634 -7.87624 7.87624 0.64 0.000721543 0.000667534 0.0220921 0.0203786 30 2565 19 6.55708e+06 301375 526063. 1820.29 1.13 0.105113 0.0920041 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0235665 0.0208631 142 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.94 vpr 62.60 MiB 0.24 6632 -1 -1 12 0.21 -1 -1 32500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1245 6211 1266 4515 430 62.6 MiB 0.07 0.00 7.2362 -155.292 -7.2362 7.2362 0.63 0.000867828 0.000804009 0.0304375 0.0282454 30 3044 16 6.55708e+06 325485 526063. 1820.29 0.94 0.12793 0.11183 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0315858 0.0277797 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.95 vpr 62.57 MiB 0.02 6832 -1 -1 13 0.32 -1 -1 32780 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1187 15843 5382 8046 2415 62.6 MiB 0.15 0.00 7.69912 -151.004 -7.69912 7.69912 0.63 0.000920329 0.00085195 0.073505 0.0679805 32 3890 40 6.55708e+06 361650 554710. 1919.41 1.66 0.21641 0.190665 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0408985 0.0356324 195 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.58 vpr 62.86 MiB 0.02 6644 -1 -1 14 0.28 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1371 16295 4299 9326 2670 62.9 MiB 0.16 0.00 7.90558 -162.398 -7.90558 7.90558 0.63 0.00100236 0.000927732 0.0798324 0.0738648 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.40 0.225615 0.198937 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0377738 0.033258 215 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.79 vpr 62.65 MiB 0.02 6696 -1 -1 14 0.26 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1364 9067 2106 6307 654 62.6 MiB 0.10 0.00 7.8859 -150.917 -7.8859 7.8859 0.63 0.000920831 0.000849217 0.0446599 0.0412789 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.49 0.245341 0.213756 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0344779 0.0303371 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.58 vpr 62.44 MiB 0.05 6648 -1 -1 13 0.34 -1 -1 33204 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1350 6211 1219 4577 415 62.4 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.64 0.000950398 0.00088083 0.033529 0.0310655 36 3253 20 6.55708e+06 325485 612192. 2118.31 2.23 0.215458 0.186842 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.21 0.10 0.12 -1 -1 0.21 0.0305154 0.0272715 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.15 vpr 62.05 MiB 0.02 6536 -1 -1 13 0.20 -1 -1 32772 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1092 10670 2647 6412 1611 62.1 MiB 0.09 0.00 7.9674 -161.443 -7.9674 7.9674 0.63 0.000739961 0.000684278 0.0446374 0.0412826 32 2870 34 6.55708e+06 289320 554710. 1919.41 1.18 0.148636 0.130384 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0250927 0.0221699 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.01 vpr 62.96 MiB 0.04 6712 -1 -1 13 0.44 -1 -1 32868 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1304 7653 1748 5033 872 63.0 MiB 0.09 0.00 8.34953 -161.953 -8.34953 8.34953 0.64 0.00148578 0.00136169 0.0410987 0.0380415 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.64 0.163888 0.14354 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0383337 0.033676 208 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.12 vpr 62.82 MiB 0.04 6824 -1 -1 14 0.31 -1 -1 31508 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1332 7336 1480 5450 406 62.8 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.65 0.000912859 0.000846309 0.0356172 0.0329015 28 3869 50 6.55708e+06 361650 500653. 1732.36 2.51 0.18401 0.160108 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.17 0.43 0.08 -1 -1 0.17 0.0895655 0.0768268 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.26 vpr 62.84 MiB 0.02 6768 -1 -1 12 0.25 -1 -1 32924 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.64 0.000954078 0.000884846 0.0323466 0.0299406 34 3727 35 6.55708e+06 385760 585099. 2024.56 2.23 0.241323 0.208752 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341754 0.0301016 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.69 vpr 62.68 MiB 0.04 6812 -1 -1 13 0.23 -1 -1 32808 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1315 6522 1420 4675 427 62.7 MiB 0.07 0.00 7.42898 -137.517 -7.42898 7.42898 0.63 0.000883382 0.000818644 0.0327075 0.0302532 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.69 0.137371 0.120492 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0319055 0.0280749 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.44 vpr 62.93 MiB 0.03 6740 -1 -1 14 0.36 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.49 1483 8199 1652 5918 629 62.9 MiB 0.10 0.00 8.85275 -170.114 -8.85275 8.85275 0.62 0.00101573 0.000935747 0.0435958 0.0403868 28 4521 37 6.55708e+06 385760 500653. 1732.36 8.01 0.399432 0.345288 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0426671 0.0374235 220 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.23 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.27 -1 -1 32908 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1183 4512 917 3199 396 62.5 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.67 0.000704895 0.000639451 0.0234754 0.0217469 28 3440 40 6.55708e+06 349595 500653. 1732.36 2.10 0.1519 0.131482 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.15 0.10 -1 -1 0.22 0.0383427 0.0338582 174 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.01 MiB 0.04 6512 -1 -1 13 0.15 -1 -1 32648 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1098 6999 1531 4700 768 62.0 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.63 0.00126489 0.00117239 0.0377926 0.034943 26 3154 29 6.55708e+06 277265 477104. 1650.88 1.85 0.137495 0.120587 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.02897 0.0254386 142 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.94 vpr 62.51 MiB 0.02 6692 -1 -1 14 0.30 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1308 7027 1497 5027 503 62.5 MiB 0.08 0.00 8.02087 -160.438 -8.02087 8.02087 0.64 0.000895879 0.000822624 0.0354911 0.0328273 28 3737 36 6.55708e+06 325485 500653. 1732.36 1.86 0.163509 0.142313 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.0416046 0.0365153 183 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.21 vpr 62.84 MiB 0.02 6732 -1 -1 15 0.42 -1 -1 33144 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.3 MiB 0.58 1579 7323 1484 5148 691 62.8 MiB 0.09 0.00 9.31018 -193.267 -9.31018 9.31018 0.65 0.00104453 0.000967957 0.0407113 0.0376537 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.66 0.198383 0.173159 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0391995 0.0345258 228 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.88 vpr 62.09 MiB 0.03 6664 -1 -1 11 0.17 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.59 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.64 0.000704369 0.000652459 0.0288596 0.0267233 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.67 0.159935 0.13858 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.22 0.06 0.13 -1 -1 0.22 0.0253795 0.022281 126 124 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.68 vpr 62.31 MiB 0.05 6488 -1 -1 12 0.24 -1 -1 32564 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1155 8207 1978 5141 1088 62.3 MiB 0.10 0.00 7.38032 -154.384 -7.38032 7.38032 0.63 0.000795518 0.000737807 0.0461021 0.0429769 40 2525 16 6.55708e+06 313430 666494. 2306.21 7.52 0.319559 0.276084 23614 160646 -1 2436 15 988 2915 152941 35751 6.47024 6.47024 -145.36 -6.47024 0 0 872365. 3018.56 0.22 0.07 0.14 -1 -1 0.22 0.0272887 0.024086 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.04 vpr 62.81 MiB 0.06 6656 -1 -1 12 0.32 -1 -1 32876 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1424 7439 1505 5396 538 62.8 MiB 0.11 0.00 7.41461 -164.576 -7.41461 7.41461 0.73 0.000996995 0.000919504 0.051374 0.0476477 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.47 0.212758 0.186348 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0374782 0.0329476 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.82 vpr 62.64 MiB 0.04 6656 -1 -1 12 0.26 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.55 1429 8579 2186 5781 612 62.6 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.66 0.000899436 0.000833432 0.040738 0.0377066 30 3708 20 6.55708e+06 337540 526063. 1820.29 1.45 0.152667 0.134183 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0353409 0.0311607 186 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 5.74 vpr 63.05 MiB 0.02 6788 -1 -1 14 0.48 -1 -1 33388 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.64 0.00113794 0.00102892 0.0742777 0.0686806 38 3905 20 6.55708e+06 421925 638502. 2209.35 2.29 0.285914 0.250365 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0391986 0.0346062 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.87 vpr 62.30 MiB 0.02 6708 -1 -1 11 0.23 -1 -1 32444 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1210 13157 4017 6643 2497 62.3 MiB 0.12 0.00 6.86503 -131.636 -6.86503 6.86503 0.68 0.000861997 0.000798509 0.0613439 0.0567996 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.44 0.188284 0.165574 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0302565 0.026676 176 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.49 vpr 61.92 MiB 0.02 6504 -1 -1 11 0.19 -1 -1 32408 -1 -1 25 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.29 858 9234 2019 6554 661 61.9 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.79 0.000716243 0.000664189 0.0397719 0.0368491 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.16 0.120316 0.106681 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.21 0.09 0.10 -1 -1 0.21 0.0301293 0.0266312 138 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.34 vpr 63.04 MiB 0.03 6980 -1 -1 13 0.54 -1 -1 32888 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.11 0.00 7.96961 -161.89 -7.96961 7.96961 0.65 0.00120778 0.00111628 0.0480526 0.0443725 36 5494 32 6.55708e+06 482200 612192. 2118.31 5.76 0.319339 0.277987 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.21 0.12 0.13 -1 -1 0.21 0.0434667 0.0383805 280 279 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.90 vpr 62.43 MiB 0.03 6836 -1 -1 14 0.31 -1 -1 33400 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1307 6821 1398 4713 710 62.4 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.71 0.000878922 0.00081404 0.0349227 0.0323696 28 3653 27 6.55708e+06 313430 500653. 1732.36 2.57 0.153636 0.135104 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0317754 0.0279348 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.13 vpr 62.01 MiB 0.06 6484 -1 -1 12 0.20 -1 -1 32304 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.45 1197 8251 1803 5271 1177 62.0 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.64 0.000746662 0.000691107 0.0335085 0.0310046 28 3416 42 6.55708e+06 325485 500653. 1732.36 1.85 0.151532 0.132604 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0249639 0.0224962 144 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.98 vpr 62.35 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1296 6623 1420 4442 761 62.4 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.69 0.000971325 0.000889427 0.035415 0.0325059 30 3458 27 6.55708e+06 301375 526063. 1820.29 6.71 0.267236 0.230739 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0305594 0.026957 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.21 vpr 62.98 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33368 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1675 5723 977 4473 273 63.0 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.71 0.000808246 0.000739602 0.0264645 0.0242867 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.45 0.181906 0.159695 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0388471 0.0343277 235 234 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.91 vpr 62.62 MiB 0.02 6640 -1 -1 11 0.23 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1363 8827 2077 5986 764 62.6 MiB 0.06 0.00 7.0834 -142.912 -7.0834 7.0834 0.62 0.000436483 0.000402726 0.0218388 0.0200895 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.75 0.13045 0.113486 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0320649 0.0288437 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.10 vpr 62.83 MiB 0.03 6740 -1 -1 15 0.32 -1 -1 32936 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1473 9543 2499 5737 1307 62.8 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.65 0.000963107 0.00088708 0.0484339 0.0447229 36 3930 43 6.55708e+06 349595 612192. 2118.31 3.84 0.278441 0.241763 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0352606 0.0310257 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.66 vpr 62.60 MiB 0.02 6668 -1 -1 13 0.32 -1 -1 32952 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1528 11922 3138 7505 1279 62.6 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.64 0.00101178 0.000935502 0.0593763 0.0548676 34 4013 32 6.55708e+06 385760 585099. 2024.56 2.46 0.279384 0.242796 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.0374917 0.0330817 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.10 vpr 62.14 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32340 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1144 6321 1459 4287 575 62.1 MiB 0.07 0.00 6.98904 -150.776 -6.98904 6.98904 0.64 0.000777179 0.00072137 0.0269759 0.0250142 30 2863 42 6.55708e+06 349595 526063. 1820.29 4.00 0.241644 0.209494 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0264391 0.0233918 159 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 10.08 vpr 61.95 MiB 0.02 6680 -1 -1 11 0.18 -1 -1 32504 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 1041 8402 1813 6153 436 61.9 MiB 0.08 0.00 6.97021 -142.93 -6.97021 6.97021 0.65 0.00073734 0.000683055 0.0353529 0.0327063 30 2905 24 6.55708e+06 265210 526063. 1820.29 7.02 0.220582 0.190696 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0251092 0.0221089 138 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.45 vpr 62.65 MiB 0.02 6684 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1528 7975 1701 5466 808 62.6 MiB 0.09 0.00 8.19329 -167.366 -8.19329 8.19329 0.69 0.000955143 0.000883771 0.0391456 0.0361949 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.22 0.171767 0.150128 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.037373 0.032921 204 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.58 vpr 61.96 MiB 0.02 6568 -1 -1 10 0.17 -1 -1 32764 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1030 5107 1053 3581 473 62.0 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.63 0.000724127 0.000671014 0.0231606 0.0214633 26 3016 46 6.55708e+06 289320 477104. 1650.88 2.79 0.140875 0.122289 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281723 0.0246893 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.59 vpr 62.17 MiB 0.02 6656 -1 -1 14 0.18 -1 -1 32692 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.6 MiB 0.45 1019 11203 3089 5915 2199 62.2 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.64 0.000775238 0.000716406 0.0470527 0.0435112 28 3519 29 6.55708e+06 289320 500653. 1732.36 2.46 0.159999 0.140997 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0350871 0.0307997 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.62 vpr 62.78 MiB 0.04 6760 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1351 11891 3061 6959 1871 62.8 MiB 0.12 0.00 7.58423 -159.03 -7.58423 7.58423 0.63 0.000961983 0.000886965 0.0588962 0.0543274 36 3367 18 6.55708e+06 349595 612192. 2118.31 2.43 0.246747 0.215187 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0342994 0.0301751 201 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.50 vpr 62.11 MiB 0.02 6644 -1 -1 12 0.15 -1 -1 32392 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1079 5567 1026 4331 210 62.1 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.67 0.000623329 0.000568003 0.0243021 0.0225048 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.60 0.142242 0.123578 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0272408 0.0239668 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.73 vpr 62.62 MiB 0.02 6844 -1 -1 12 0.22 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1263 7843 1830 5405 608 62.6 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.64 0.000898875 0.000832249 0.0383897 0.0354925 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.72 0.14975 0.131128 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0439523 0.0382702 188 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.71 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1349 6509 1390 4237 882 62.6 MiB 0.07 0.00 7.60996 -160.091 -7.60996 7.60996 0.63 0.000893594 0.000827738 0.0317426 0.0293922 28 4174 46 6.55708e+06 349595 500653. 1732.36 7.51 0.352884 0.302938 21310 115450 -1 3442 36 1483 4579 649016 276569 6.5197 6.5197 -157.574 -6.5197 0 0 612192. 2118.31 0.20 0.23 0.11 -1 -1 0.20 0.058293 0.0504437 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.14 vpr 62.15 MiB 0.04 6528 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1256 8251 2031 5471 749 62.1 MiB 0.08 0.00 6.67834 -143.715 -6.67834 6.67834 0.64 0.000792608 0.000735385 0.0349008 0.0323788 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.28 0.136913 0.120487 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0298066 0.0261791 148 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.86 vpr 62.21 MiB 0.02 6492 -1 -1 13 0.20 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1339 8047 1963 5261 823 62.2 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.64 0.000846725 0.000784054 0.0366124 0.0338966 28 3857 33 6.55708e+06 325485 500653. 1732.36 1.87 0.155823 0.135952 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0468029 0.0405681 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.68 vpr 62.52 MiB 0.04 6772 -1 -1 13 0.26 -1 -1 32808 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1276 15187 4382 8407 2398 62.5 MiB 0.15 0.00 7.99583 -160.474 -7.99583 7.99583 0.65 0.000907748 0.00084118 0.0713909 0.0660637 36 3413 20 6.55708e+06 325485 612192. 2118.31 2.59 0.24837 0.217297 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0326906 0.0287648 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.95 vpr 62.22 MiB 0.04 6872 -1 -1 11 0.24 -1 -1 32716 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1142 12761 3414 7382 1965 62.2 MiB 0.12 0.00 6.37111 -124.414 -6.37111 6.37111 0.64 0.000808228 0.000747209 0.0527179 0.0482621 36 2747 19 6.55708e+06 337540 612192. 2118.31 1.81 0.20936 0.181625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.20 0.07 0.13 -1 -1 0.20 0.027754 0.0243508 162 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.54 vpr 63.13 MiB 0.02 6760 -1 -1 14 0.35 -1 -1 33556 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1569 9951 2260 6812 879 63.1 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.63 0.0010227 0.000946832 0.0507044 0.0468561 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.35 0.185312 0.162365 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0381553 0.0336846 225 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.91 vpr 62.10 MiB 0.02 6564 -1 -1 12 0.19 -1 -1 32512 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1144 6619 1429 4488 702 62.1 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.64 0.000739445 0.00068451 0.0268686 0.02487 36 2680 25 6.55708e+06 337540 612192. 2118.31 1.78 0.176467 0.152667 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0237312 0.0209983 145 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 62.62 MiB 0.02 6852 -1 -1 13 0.34 -1 -1 32880 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1396 7843 1736 5120 987 62.6 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.58 0.00103015 0.000957193 0.0386503 0.0357159 28 3900 43 6.55708e+06 325485 500653. 1732.36 2.23 0.180634 0.15731 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.038469 0.0336339 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.12 vpr 61.99 MiB 0.05 6544 -1 -1 13 0.22 -1 -1 32832 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1076 10583 2933 6087 1563 62.0 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.65 0.000747898 0.000692173 0.0431559 0.0399264 28 3369 28 6.55708e+06 301375 500653. 1732.36 1.99 0.148937 0.131212 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0331016 0.0289265 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.32 vpr 62.36 MiB 0.03 6740 -1 -1 12 0.21 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.06 0.00 7.36755 -151.17 -7.36755 7.36755 0.66 0.000993175 0.000915804 0.0281481 0.0261209 30 2794 18 6.55708e+06 313430 526063. 1820.29 4.29 0.234482 0.201916 21886 126133 -1 2452 16 1021 3422 165754 38479 6.5237 6.5237 -142.626 -6.5237 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304638 0.0267292 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.78 vpr 63.07 MiB 0.03 6896 -1 -1 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1759 9998 2422 6696 880 63.1 MiB 0.14 0.00 8.78932 -180.299 -8.78932 8.78932 0.64 0.00112224 0.00103771 0.0649369 0.0598937 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.20 0.312555 0.272257 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0473715 0.0417671 250 250 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.81 vpr 61.55 MiB 0.02 6444 -1 -1 10 0.09 -1 -1 31968 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.31 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.63 0.000561989 0.000522243 0.0325528 0.0301338 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.05 0.0960395 0.0843475 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0174701 0.0153802 92 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.03 vpr 62.40 MiB 0.02 6524 -1 -1 13 0.18 -1 -1 32544 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1069 6415 1411 4237 767 62.4 MiB 0.06 0.00 7.77311 -151.473 -7.77311 7.77311 0.63 0.000752674 0.000698341 0.0264341 0.0244626 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.20 0.144514 0.125828 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0412877 0.0360205 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.38 MiB 0.04 6520 -1 -1 12 0.21 -1 -1 32516 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.11 0.00 6.72746 -150.964 -6.72746 6.72746 0.63 0.000841141 0.000779116 0.0520145 0.0481425 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.80 0.209822 0.182621 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0312523 0.0274015 167 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 61.95 MiB 0.02 6552 -1 -1 9 0.13 -1 -1 32508 -1 -1 25 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.4 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.67 0.000469714 0.000429671 0.0288376 0.0264435 26 2429 32 6.55708e+06 301375 477104. 1650.88 2.39 0.115528 0.100615 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0255648 0.0222381 112 111 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 62.73 MiB 0.05 6656 -1 -1 12 0.26 -1 -1 32744 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1640 5273 863 4118 292 62.7 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.64 0.000983417 0.000902618 0.0264788 0.0245066 36 4101 31 6.55708e+06 409870 612192. 2118.31 4.44 0.242036 0.209418 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0493503 0.0430863 209 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.33 vpr 62.79 MiB 0.04 6724 -1 -1 14 0.31 -1 -1 32944 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1228 13340 3394 7367 2579 62.8 MiB 0.14 0.00 8.33716 -163.889 -8.33716 8.33716 0.64 0.000984721 0.000903453 0.0664498 0.0612243 38 3334 33 6.55708e+06 349595 638502. 2209.35 2.88 0.287428 0.250907 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.21 0.08 0.11 -1 -1 0.21 0.0325453 0.0287779 204 204 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.83 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.12 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.64 0.000827988 0.000767268 0.064469 0.0596802 32 2653 22 6.64007e+06 452088 554710. 1919.41 0.96 0.162961 0.14444 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0316439 0.0275912 153 96 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.67 vpr 62.99 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.19 873 12919 4129 6395 2395 63.0 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.64 0.000764562 0.000709835 0.0559314 0.0519323 32 2348 20 6.64007e+06 288834 554710. 1919.41 0.86 0.144281 0.127743 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324432 0.0282045 142 91 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.58 vpr 62.97 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30500 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1003 9675 2005 7104 566 63.0 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000742313 0.000689013 0.0347448 0.0322428 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.87 0.129417 0.113479 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0267707 0.0234137 142 65 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.69 vpr 62.72 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.7 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.64 0.000688526 0.000639881 0.042101 0.0390755 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.03 0.127391 0.112594 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0281545 0.0245736 138 34 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.62 vpr 62.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.11 849 15017 4515 8552 1950 62.8 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.63 0.000698925 0.00064501 0.0620162 0.057641 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.90 0.149161 0.132535 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324253 0.0284015 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.66 vpr 62.93 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30516 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1024 19142 5848 10342 2952 62.9 MiB 0.18 0.00 3.5603 -122.153 -3.5603 3.5603 0.66 0.000769856 0.000712554 0.0637324 0.0590922 32 2260 24 6.64007e+06 489762 554710. 1919.41 0.86 0.157237 0.139232 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0317082 0.0276797 156 64 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.37 vpr 62.18 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30580 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 722 12923 4015 7171 1737 62.2 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.63 0.00056724 0.000527573 0.0454016 0.0422238 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.76 0.107912 0.0956302 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209956 0.0182635 96 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.11 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.09 948 16081 4441 8879 2761 62.9 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.63 0.000668355 0.00062178 0.0508719 0.0473057 28 2371 22 6.64007e+06 426972 500653. 1732.36 0.92 0.133171 0.118063 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0260766 0.0227478 140 4 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.41 vpr 62.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30228 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.15 706 7820 1805 5417 598 62.5 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.63 0.000657452 0.000610882 0.0320631 0.0298232 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.74 0.108945 0.095574 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250137 0.0218173 106 85 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.24 vpr 62.62 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.64 0.000648222 0.000603082 0.0421452 0.0392251 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.83 0.117423 0.103772 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0244739 0.0213861 121 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.37 vpr 62.62 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30176 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.14 822 14012 5060 7295 1657 62.6 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.65 0.000642683 0.000596339 0.0547004 0.0508058 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.76 0.12621 0.112089 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0236129 0.0206423 110 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.42 vpr 62.62 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.6 MiB 0.09 0.00 3.52209 -114.564 -3.52209 3.52209 0.67 0.00065979 0.00061293 0.0329072 0.0305616 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.80 0.109337 0.095981 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0226312 0.0197843 114 65 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.76 vpr 62.99 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.21 893 19448 6133 10048 3267 63.0 MiB 0.20 0.00 3.56129 -122.026 -3.56129 3.56129 0.55 0.000759823 0.000705655 0.0745375 0.0692153 32 2222 23 6.64007e+06 426972 554710. 1919.41 0.91 0.165859 0.147789 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0317495 0.0277204 145 58 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 63.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1031 17036 4693 9820 2523 63.1 MiB 0.16 0.00 4.31123 -147.759 -4.31123 4.31123 0.63 0.000774397 0.000719396 0.0598716 0.0555632 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.57 0.155599 0.137807 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0365356 0.0318073 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.38 vpr 62.15 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30596 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.11 800 8852 2481 5509 862 62.1 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.64 0.000579514 0.000539613 0.0317105 0.0295349 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.78 0.0960878 0.0845963 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0241147 0.0210077 108 29 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.72 vpr 62.97 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1068 13316 3890 7652 1774 63.0 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.64 0.000770659 0.000715805 0.0558149 0.0517676 32 2326 21 6.64007e+06 276276 554710. 1919.41 0.88 0.146298 0.129498 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315044 0.027501 147 63 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.66 vpr 62.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.17 964 16340 5208 8057 3075 62.8 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.63 0.000743354 0.000689953 0.0548368 0.0508881 34 2358 39 6.64007e+06 452088 585099. 2024.56 1.92 0.221119 0.192919 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0282365 0.0247067 144 57 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.41 vpr 62.73 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.64 0.000675201 0.000627262 0.0440963 0.0409032 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.78 0.129117 0.114143 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0253755 0.0222945 119 65 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.25 vpr 61.81 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.03 670 10835 3352 6011 1472 61.8 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.64 0.000508569 0.000473794 0.035256 0.0328355 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0935044 0.0824858 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0201169 0.0174276 85 34 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.44 vpr 62.73 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.7 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.63 0.000662025 0.000615316 0.048875 0.0454405 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121788 0.108011 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0220441 0.0193532 113 64 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.63 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.4 MiB 0.09 885 17732 4998 9545 3189 62.9 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.65 0.000725514 0.000673601 0.0579985 0.0538142 32 2479 24 6.64007e+06 452088 554710. 1919.41 0.87 0.147005 0.130259 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0301692 0.0263673 147 34 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.77 vpr 63.39 MiB 0.04 7132 -1 -1 1 0.04 -1 -1 30840 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 960 11288 2842 7087 1359 63.4 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.63 0.000845384 0.000785564 0.04286 0.039765 30 2640 22 6.64007e+06 477204 526063. 1820.29 0.91 0.143047 0.125515 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.20 0.08 0.14 -1 -1 0.20 0.0354752 0.0308318 150 124 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.24 vpr 61.77 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.63 0.000439838 0.000408942 0.0307856 0.0286255 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.74 0.0820588 0.0724596 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170694 0.0149113 77 30 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.85 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30076 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.2 MiB 0.10 990 12749 4130 6257 2362 62.8 MiB 0.13 0.00 4.45633 -140.507 -4.45633 4.45633 0.67 0.000691454 0.000643358 0.0491148 0.0457345 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.89 0.131861 0.116928 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0267335 0.0233777 138 3 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.30 vpr 61.88 MiB 0.02 6636 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.63 0.000470605 0.000437815 0.0328069 0.0305017 28 1546 20 6.64007e+06 163254 500653. 1732.36 0.89 0.0877241 0.0775743 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170371 0.014911 81 3 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.62 vpr 63.03 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.65 0.000738556 0.000686526 0.0504071 0.046727 32 2560 22 6.64007e+06 439530 554710. 1919.41 0.94 0.138704 0.122631 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0322818 0.028112 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.79 vpr 62.74 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.09 1019 8796 1857 6524 415 62.7 MiB 0.11 0.00 3.60659 -123.354 -3.60659 3.60659 0.68 0.000697109 0.00064849 0.0302687 0.0279192 26 3249 33 6.64007e+06 464646 477104. 1650.88 2.12 0.127266 0.11105 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0285418 0.0249149 152 3 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.61 vpr 63.16 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.10 1069 18901 5689 10576 2636 63.2 MiB 0.18 0.00 4.16036 -141.868 -4.16036 4.16036 0.65 0.000778214 0.000721261 0.065092 0.0603558 32 2736 22 6.64007e+06 464646 554710. 1919.41 0.86 0.14307 0.127528 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.19 0.09 0.08 -1 -1 0.19 0.0326697 0.028514 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.49 vpr 62.38 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 857 10572 2555 6423 1594 62.4 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.68 0.000619284 0.000575848 0.0398414 0.0370536 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.84 0.111502 0.0985515 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303854 0.0265291 107 34 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.50 vpr 62.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.05 824 11806 3275 6761 1770 62.4 MiB 0.11 0.00 3.4951 -114.009 -3.4951 3.4951 0.63 0.00061495 0.000572089 0.0435388 0.0405159 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.88 0.124794 0.109885 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0262761 0.0228717 115 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.38 vpr 62.25 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30344 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 658 7132 1686 4570 876 62.3 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.64 0.000580304 0.000539058 0.0259747 0.0241387 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.81 0.0959523 0.083993 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0224452 0.0195602 107 34 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.50 vpr 62.68 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.07 802 15390 5648 7380 2362 62.7 MiB 0.14 0.00 3.5251 -121.985 -3.5251 3.5251 0.63 0.000611879 0.000568595 0.0550573 0.0511471 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.83 0.12968 0.115178 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0283485 0.0246472 125 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.40 vpr 62.66 MiB 0.03 6836 -1 -1 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.64 0.000563076 0.000523775 0.0305503 0.028373 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.89 0.103193 0.0906019 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0127998 0.011364 119 34 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.38 vpr 62.62 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.08 877 15824 4460 9332 2032 62.6 MiB 0.13 0.00 2.80466 -91.9047 -2.80466 2.80466 0.63 0.000626684 0.000581866 0.0501112 0.0464827 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.82 0.123948 0.109521 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258751 0.0225273 110 61 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 vpr 63.00 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30412 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.63 0.000829408 0.000770382 0.0631875 0.0586163 28 3347 24 6.64007e+06 514878 500653. 1732.36 1.80 0.167466 0.148182 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.032658 0.0285599 181 29 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.39 vpr 63.21 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.68 0.000782207 0.000720146 0.0432372 0.0401145 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.85 0.134641 0.118638 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0292772 0.0256438 154 65 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.49 vpr 62.80 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30404 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 803 9407 2189 6388 830 62.8 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.63 0.000688313 0.000639344 0.0332064 0.0308694 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.78 0.110984 0.0971906 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.18 0.06 0.10 -1 -1 0.18 0.024241 0.0211499 114 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.59 vpr 63.04 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1052 11799 3060 6831 1908 63.0 MiB 0.12 0.00 3.64847 -119.816 -3.64847 3.64847 0.65 0.000748906 0.000695833 0.0485682 0.0451458 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.85 0.137505 0.121475 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318861 0.0278132 149 64 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.72 vpr 63.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.30 953 7835 1760 5704 371 63.1 MiB 0.10 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.00083531 0.00077671 0.0375823 0.0349464 32 2549 24 6.64007e+06 288834 554710. 1919.41 0.88 0.138421 0.121042 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0328164 0.0285762 150 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.71 vpr 63.10 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30364 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.14 955 10859 3044 7047 768 63.1 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.60 0.000775991 0.00072066 0.0473001 0.0439536 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.81 0.138565 0.122326 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0273593 0.0240681 144 90 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.62 vpr 62.91 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.63 0.000749334 0.000695992 0.0552679 0.0511571 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.87 0.144642 0.127847 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262977 0.0230402 148 64 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.63 vpr 63.08 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30920 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.63 0.000765917 0.000710766 0.0367901 0.0341209 32 2829 21 6.64007e+06 464646 554710. 1919.41 0.92 0.124704 0.109783 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311987 0.0272495 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.81 vpr 63.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30632 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1205 17356 4219 10649 2488 63.0 MiB 0.21 0.00 4.21478 -145.938 -4.21478 4.21478 0.64 0.000930411 0.000865548 0.0711812 0.0658242 32 2779 22 6.64007e+06 527436 554710. 1919.41 0.89 0.180042 0.159148 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0446948 0.0392437 186 96 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.50 vpr 62.66 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.7 MiB 0.07 0.00 3.7665 -117.146 -3.7665 3.7665 0.69 0.000286358 0.000263769 0.0238656 0.0220173 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.83 0.104369 0.090779 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0253339 0.0222428 116 34 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.57 vpr 63.09 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 910 7386 1527 5477 382 63.1 MiB 0.09 0.00 4.20356 -136.322 -4.20356 4.20356 0.63 0.000763323 0.000708838 0.0265754 0.0246692 32 2713 25 6.64007e+06 477204 554710. 1919.41 0.94 0.120099 0.104933 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0310919 0.0271511 152 64 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.52 vpr 63.15 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.13 994 14048 3500 8468 2080 63.1 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.64 0.000755328 0.000701354 0.0499884 0.046411 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.78 0.128398 0.113773 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300424 0.0262219 149 63 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.80 MiB 0.08 6964 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.8 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.67 0.000708092 0.000658265 0.0587861 0.0546481 32 2624 22 6.64007e+06 276276 554710. 1919.41 0.91 0.144924 0.128805 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0303339 0.0265041 151 3 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.71 vpr 63.12 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1044 15603 4218 9336 2049 63.1 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.65 0.00079638 0.00073909 0.0566774 0.0525784 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.89 0.146532 0.129754 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307139 0.0267276 146 96 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.13 vpr 63.18 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1017 12791 3286 8285 1220 63.2 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.63 0.000767519 0.000713288 0.0442653 0.041 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.45 0.163008 0.142866 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0278299 0.0243714 148 61 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.80 vpr 63.08 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.75 0.000597611 0.000546728 0.0584572 0.0538865 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.91 0.157983 0.139518 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0294464 0.025815 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.77 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1032 14906 4320 9186 1400 62.8 MiB 0.19 0.00 4.18856 -144.112 -4.18856 4.18856 0.65 0.000743603 0.000691214 0.0630334 0.058403 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.87 0.149447 0.132686 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0290211 0.025396 152 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.44 vpr 62.96 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30804 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1016 12153 3010 8355 788 63.0 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.67 0.000767544 0.00071225 0.0419196 0.0388259 26 2842 35 6.64007e+06 489762 477104. 1650.88 1.58 0.151455 0.132609 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.032679 0.0284541 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.16 vpr 63.34 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30496 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1141 13095 3356 8753 986 63.3 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.65 0.000823597 0.000764662 0.0501666 0.0465596 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.29 0.153533 0.135155 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0306034 0.0266151 147 122 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.68 vpr 63.04 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.0 MiB 0.17 0.00 4.34993 -137.194 -4.34993 4.34993 0.65 0.000808182 0.000750404 0.0722198 0.0671163 32 2657 20 6.64007e+06 276276 554710. 1919.41 0.88 0.1671 0.14872 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313887 0.0273473 151 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.45 vpr 62.77 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30592 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.1 MiB 0.07 928 8735 1852 5986 897 62.8 MiB 0.09 0.00 3.50687 -122.364 -3.50687 3.50687 0.65 0.000641009 0.00059443 0.0290733 0.0270114 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.88 0.107981 0.0947505 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0260214 0.0226763 125 34 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 885 10406 2864 6861 681 62.8 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.64 0.000713908 0.00066341 0.0442174 0.0411126 26 2358 26 6.64007e+06 226044 477104. 1650.88 0.88 0.134775 0.11876 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0265461 0.0231568 121 94 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.98 vpr 63.09 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30728 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1352 17606 4821 10688 2097 63.1 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.66 0.00114974 0.00105947 0.0671496 0.0622668 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.01 0.181008 0.159999 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.041696 0.0362943 189 65 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.62 vpr 63.14 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30472 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1055 17857 5354 10411 2092 63.1 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.67 0.000736211 0.000681833 0.0619367 0.0573078 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.83 0.138497 0.1235 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278644 0.0244341 148 34 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.63 vpr 62.66 MiB 0.03 6776 -1 -1 1 0.05 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 853 17523 5443 9889 2191 62.7 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.67 0.000617041 0.000573917 0.0540711 0.0501917 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.79 0.128338 0.11395 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0259534 0.0225771 116 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.02 vpr 63.23 MiB 0.05 7236 -1 -1 1 0.04 -1 -1 31060 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1192 13629 3357 8864 1408 63.2 MiB 0.15 0.00 4.97469 -167.233 -4.97469 4.97469 0.64 0.000749041 0.000687645 0.0457609 0.0419029 32 2825 26 6.64007e+06 565110 554710. 1919.41 0.97 0.140448 0.123463 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0430907 0.0382662 188 127 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.57 vpr 62.96 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.64 0.000744244 0.000691356 0.0561498 0.0520468 28 2563 23 6.64007e+06 477204 500653. 1732.36 0.88 0.145637 0.128935 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.0273898 0.0240398 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 62.43 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.08 882 11046 2802 6952 1292 62.4 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.66 0.000622511 0.000579542 0.0328011 0.0303732 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.77 0.10487 0.0921965 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.21 0.03 0.12 -1 -1 0.21 0.0133288 0.0118575 124 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.10 vpr 62.99 MiB 0.07 7144 -1 -1 1 0.04 -1 -1 30820 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1334 20347 5362 13158 1827 63.0 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.65 0.000853648 0.000793136 0.0720922 0.0669924 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.15 0.183167 0.162815 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.12 -1 -1 0.20 0.0369691 0.0323422 190 34 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.58 vpr 62.29 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 0.09 623 13731 4925 6406 2400 62.3 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.65 0.000612175 0.000569632 0.0501907 0.0467109 32 2131 28 6.64007e+06 213486 554710. 1919.41 0.85 0.129947 0.115061 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025148 0.0219274 121 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.47 vpr 62.39 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 30264 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 855 13939 4099 8667 1173 62.4 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.68 0.000617153 0.000574394 0.0427663 0.0397175 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.84 0.11942 0.105586 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0243286 0.0211553 114 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.72 vpr 62.89 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1003 12839 3224 8329 1286 62.9 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.65 0.00074837 0.000695401 0.0470527 0.0436914 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.86 0.124505 0.110345 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0327536 0.0285784 134 88 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.68 vpr 63.05 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 937 11048 2797 7564 687 63.1 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.65 0.000770568 0.000715458 0.0477968 0.0444019 32 2378 24 6.64007e+06 276276 554710. 1919.41 0.93 0.143628 0.126722 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0311277 0.0271736 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.99 vpr 62.91 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30604 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1070 15876 4480 9346 2050 62.9 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.65 0.00077803 0.000722073 0.0584984 0.054275 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.02 0.169838 0.149849 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0408059 0.0354159 154 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.73 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 863 8856 1892 6516 448 62.7 MiB 0.09 0.00 3.4749 -121.747 -3.4749 3.4749 0.73 0.000523797 0.000479742 0.0263443 0.0241591 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.87 0.106752 0.0930891 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.027379 0.0238337 122 65 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.55 vpr 62.72 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 821 8336 2395 4162 1779 62.7 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.66 0.000676986 0.000628888 0.0351132 0.0326137 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.84 0.112517 0.0988879 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0267366 0.0232606 109 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.95 vpr 62.90 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30452 -1 -1 35 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 985 17635 4923 10695 2017 62.9 MiB 0.17 0.00 3.4529 -110.073 -3.4529 3.4529 0.63 0.000731009 0.000679685 0.0603311 0.0560557 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.16 0.156345 0.138282 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0272597 0.0238228 139 60 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.95 vpr 62.59 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.0 MiB 0.09 939 14996 4215 8524 2257 62.6 MiB 0.15 0.00 4.39198 -124.88 -4.39198 4.39198 0.63 0.000671121 0.000624858 0.0557517 0.0517479 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.30 0.145199 0.128587 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0280153 0.0244488 134 34 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.56 vpr 62.64 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.16 846 13731 4520 7348 1863 62.6 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.63 0.000646424 0.000600523 0.0531668 0.0493664 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.84 0.125645 0.111563 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024408 0.02127 114 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.41 vpr 62.66 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.0 MiB 0.18 892 11281 2807 6986 1488 62.7 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.66 0.000704124 0.000654464 0.0352036 0.0326278 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.78 0.115932 0.101943 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0259568 0.0226832 114 91 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.65 vpr 62.98 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.63 0.000692597 0.000643647 0.0598423 0.0555476 32 2557 23 6.64007e+06 464646 554710. 1919.41 0.86 0.143978 0.127856 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.029593 0.0258547 152 4 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.05 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.2 MiB 0.18 0.00 4.17032 -143.358 -4.17032 4.17032 0.68 0.000778162 0.000722385 0.0652289 0.060448 32 2589 21 6.64007e+06 452088 554710. 1919.41 0.99 0.166826 0.147689 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.19 0.09 0.15 -1 -1 0.19 0.0302731 0.0264379 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.63 vpr 63.15 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.2 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.63 0.000774015 0.000718395 0.0561187 0.0520202 32 2670 22 6.64007e+06 452088 554710. 1919.41 0.90 0.149258 0.13207 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0318266 0.0277727 153 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.74 vpr 62.99 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 963 9146 1745 6045 1356 63.0 MiB 0.09 0.00 4.17056 -135.219 -4.17056 4.17056 0.64 0.000767842 0.000712195 0.0323649 0.0300307 30 3028 24 6.64007e+06 477204 526063. 1820.29 1.07 0.126742 0.111113 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0333563 0.0291114 149 65 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.47 vpr 62.51 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 840 12856 4254 6466 2136 62.5 MiB 0.12 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.000615101 0.000571826 0.0475663 0.0442057 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.82 0.12201 0.10804 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0243759 0.0212663 113 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 13127 3599 7422 2106 62.9 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.66 0.000742573 0.000689672 0.0539589 0.0501115 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.09 0.152751 0.134862 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282203 0.0247192 146 63 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.65 vpr 62.90 MiB 0.05 7216 -1 -1 1 0.05 -1 -1 30892 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1061 10232 2187 7405 640 62.9 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.64 0.000853651 0.000792068 0.0386711 0.0358428 26 3037 26 6.64007e+06 514878 477104. 1650.88 1.80 0.151419 0.132609 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0340566 0.0294936 156 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.74 vpr 63.16 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 924 14769 3776 9247 1746 63.2 MiB 0.15 0.00 4.18868 -135.93 -4.18868 4.18868 0.63 0.000808375 0.00074977 0.056086 0.05202 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.02 0.146397 0.130052 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0322025 0.0281177 148 94 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.65 vpr 63.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30472 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.17 973 15004 4033 8498 2473 63.1 MiB 0.19 0.00 3.6693 -113.052 -3.6693 3.6693 0.66 0.000902613 0.000830107 0.066143 0.0609115 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.88 0.15026 0.133376 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0291805 0.025582 138 92 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.90 vpr 63.02 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30708 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1125 9725 2385 6614 726 63.0 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.64 0.00061603 0.000562602 0.0406824 0.0376346 30 2849 27 6.64007e+06 276276 526063. 1820.29 0.96 0.141329 0.124128 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.035455 0.030982 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.78 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30308 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 964 18079 5189 10710 2180 62.8 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.64 0.000818081 0.000764168 0.0615371 0.0568908 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.96 0.153241 0.135526 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252811 0.0223443 136 88 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.65 vpr 62.30 MiB 0.04 6792 -1 -1 1 0.35 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.04 799 9356 2113 6168 1075 62.3 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.63 0.000614909 0.000572495 0.0348496 0.0324662 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.79 0.10577 0.0932244 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0235451 0.0205916 115 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.96 vpr 63.06 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.25 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.64 0.000779233 0.000722929 0.0600044 0.055631 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.12 0.158203 0.140112 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0315336 0.0275113 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.05 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1054 17367 5167 10302 1898 63.1 MiB 0.10 0.00 4.21976 -145.962 -4.21976 4.21976 0.70 0.000343248 0.00031599 0.0333551 0.0307199 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.86 0.123921 0.10848 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0352269 0.0306761 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.93 vpr 62.50 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30396 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 691 7975 1531 6145 299 62.5 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.65 0.000551682 0.00050898 0.0247783 0.0228674 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.43 0.107754 0.0942095 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0140691 0.0124427 112 55 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.52 vpr 62.27 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 653 13381 4684 6039 2658 62.3 MiB 0.13 0.00 3.5533 -116.629 -3.5533 3.5533 0.63 0.000612246 0.000569386 0.0501599 0.0466494 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.83 0.123736 0.109539 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0261753 0.0227956 118 4 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.77 vpr 62.85 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30500 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 927 16303 4785 8793 2725 62.8 MiB 0.16 0.00 4.16476 -135.871 -4.16476 4.16476 0.64 0.000765219 0.000710821 0.0577329 0.0535618 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.84 0.144242 0.127709 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187321 0.0167692 139 59 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.20 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1051 17397 5163 9750 2484 63.2 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.63 0.000874693 0.00081956 0.0653336 0.0605845 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.37 0.161089 0.14288 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0351537 0.0305773 136 88 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.84 vpr 62.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1159 10441 2545 7247 649 62.8 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.71 0.000792931 0.000736999 0.0382021 0.0354709 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.04 0.136474 0.120295 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0350806 0.0307806 179 3 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 62.81 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.15 813 9732 2096 6039 1597 62.8 MiB 0.08 0.00 3.7815 -111.41 -3.7815 3.7815 0.63 0.000715746 0.000664134 0.0343126 0.0318428 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.48 0.130716 0.114564 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0246781 0.0217498 138 59 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.47 vpr 62.21 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.64 0.000439955 0.000403615 0.0404621 0.0373668 32 1668 31 6.64007e+06 263718 554710. 1919.41 0.91 0.115974 0.101693 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0241623 0.0209504 107 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.32 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1462 20856 5895 12562 2399 63.3 MiB 0.23 0.00 4.52196 -148.077 -4.52196 4.52196 0.64 0.000911176 0.000845836 0.0772459 0.0714878 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.03 0.18576 0.164578 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0366714 0.0319264 186 95 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.84 vpr 63.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.23 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.64 0.00082973 0.00077044 0.060554 0.0562332 32 2535 22 6.64007e+06 276276 554710. 1919.41 0.91 0.157879 0.139453 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035985 0.0312398 145 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.59 vpr 62.72 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.66 0.000696569 0.000647021 0.0501565 0.0465973 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.83 0.132349 0.117476 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0237604 0.020748 108 89 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.17 vpr 62.86 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.65 0.000728743 0.000677377 0.0644208 0.0598041 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.44 0.158692 0.140857 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0309427 0.0269668 147 34 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.69 vpr 62.98 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30752 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1135 20076 5790 11566 2720 63.0 MiB 0.20 0.00 4.51716 -144.659 -4.51716 4.51716 0.65 0.000987666 0.000911618 0.0748152 0.0694554 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.89 0.179385 0.158802 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0342205 0.0297936 173 64 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 62.93 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.07 923 11484 2608 8162 714 62.9 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.67 0.00072196 0.000670654 0.0402824 0.0373785 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.62 0.129164 0.113641 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0315296 0.0274364 135 61 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.81 vpr 62.67 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30516 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1008 13516 3637 9135 744 62.7 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.65 0.000781943 0.000725876 0.0450655 0.041736 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.10 0.160164 0.140458 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0340321 0.0296331 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.29 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.3 MiB 0.14 988 17184 5218 8807 3159 63.0 MiB 0.18 0.00 3.62559 -123.648 -3.62559 3.62559 0.69 0.000781233 0.000724812 0.0666394 0.0618203 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.32 0.16354 0.144196 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0385387 0.0334723 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.50 vpr 62.46 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.5 MiB 0.07 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000456864 0.00041738 0.0472114 0.0436413 28 1653 18 6.64007e+06 226044 500653. 1732.36 0.95 0.102083 0.0907808 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023585 0.0204936 95 34 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.47 vpr 62.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.16 857 11783 4174 5528 2081 62.7 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.63 0.000771003 0.000724295 0.0463133 0.0430175 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.82 0.121351 0.107278 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0207409 0.0182056 112 82 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.78 vpr 62.84 MiB 0.02 7016 -1 -1 1 0.05 -1 -1 30432 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1100 13261 3564 8068 1629 62.8 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.65 0.000728323 0.000676865 0.0446827 0.041501 28 2902 24 6.64007e+06 477204 500653. 1732.36 1.01 0.134972 0.119033 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0298906 0.0261146 151 34 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.69 vpr 62.64 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30372 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.17 620 10442 2502 7352 588 62.6 MiB 0.09 0.00 3.6803 -100.526 -3.6803 3.6803 0.65 0.000602596 0.00056042 0.0324745 0.0301407 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.11 0.115906 0.101214 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225636 0.0195846 108 56 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.62 vpr 62.75 MiB 0.02 6772 -1 -1 1 0.05 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 691 13906 4599 7385 1922 62.8 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.66 0.000646162 0.000600867 0.0536383 0.0499105 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.86 0.131636 0.116643 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0264044 0.0230142 118 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.84 vpr 62.97 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 999 13261 3446 8635 1180 63.0 MiB 0.13 0.00 3.5665 -119.865 -3.5665 3.5665 0.67 0.000753069 0.000700131 0.0460652 0.0427129 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.82 0.132461 0.116739 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0281434 0.0246253 144 64 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.51 vpr 62.57 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 869 9368 2508 6076 784 62.6 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.64 0.000628762 0.000585022 0.0368969 0.0343516 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.81 0.111414 0.0982209 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.0236052 0.0205975 106 55 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.95 vpr 62.85 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.14 879 9865 2512 6573 780 62.8 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.70 0.000747709 0.000694802 0.0357745 0.0332191 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.18 0.130126 0.114437 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0291816 0.0255959 137 65 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 63.13 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.25 875 10540 2287 7686 567 63.1 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.64 0.000791213 0.000734819 0.0389231 0.0361057 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.89 0.137661 0.120894 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298256 0.0260566 149 93 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.15 816 8626 2345 5890 391 62.7 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.64 0.000663626 0.000616966 0.0346069 0.0321608 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.87 0.115809 0.101231 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291058 0.0254055 115 61 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.65 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.17 920 11296 3024 7326 946 62.7 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.66 0.000672425 0.000624742 0.045022 0.0418272 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.82 0.124642 0.110364 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0273739 0.0238382 121 63 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.50 vpr 62.93 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30768 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1027 12240 2965 8371 904 62.9 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.63 0.000773013 0.000717401 0.0422635 0.0391933 32 2501 30 6.64007e+06 477204 554710. 1919.41 0.76 0.108207 0.0959152 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333425 0.0290399 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.66 vpr 63.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.18 0.00 3.7925 -111.563 -3.7925 3.7925 0.64 0.000732658 0.000681636 0.063549 0.0589393 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.83 0.1556 0.137191 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286238 0.0250386 135 62 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 62.89 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 62.9 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000852686 0.000790953 0.0352488 0.0327114 32 2670 31 6.64007e+06 489762 554710. 1919.41 0.95 0.148463 0.129517 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0353782 0.0306721 158 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.37 vpr 62.15 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.1 MiB 0.10 0.00 3.08296 -103.61 -3.08296 3.08296 0.65 0.000573544 0.000534111 0.0418632 0.0389878 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.77 0.108873 0.0963511 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236629 0.0205892 106 4 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.84 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.2 MiB 0.13 998 18111 4956 10747 2408 62.8 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.65 0.000775327 0.000719281 0.0645162 0.059778 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.22 0.16459 0.145722 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0179052 0.0158423 144 92 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.66 vpr 63.04 MiB 0.04 6944 -1 -1 1 0.04 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.0 MiB 0.13 0.00 3.54047 -121.881 -3.54047 3.54047 0.64 0.000715267 0.000663699 0.0573444 0.0532458 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.82 0.143448 0.127503 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0294383 0.02566 114 96 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.63 vpr 62.95 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 9501 2041 6911 549 63.0 MiB 0.11 0.00 3.5841 -124.322 -3.5841 3.5841 0.65 0.000770066 0.000715436 0.0340486 0.0316187 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.86 0.134402 0.117752 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283215 0.024894 151 65 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.13 vpr 63.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30936 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1244 16489 4012 10933 1544 63.3 MiB 0.19 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.00092804 0.000862132 0.0701169 0.065029 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.17 0.188052 0.165947 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.18 0.11 0.08 -1 -1 0.18 0.0361165 0.031558 188 96 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.31 vpr 62.08 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.08 483 10509 2545 7262 702 62.1 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.65 0.00052924 0.000492155 0.0358284 0.0333551 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.77 0.10014 0.0880357 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.17 0.05 0.11 -1 -1 0.17 0.0216446 0.0187493 83 56 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.17 MiB 0.03 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.2 MiB 0.07 0.00 3.6815 -114.291 -3.6815 3.6815 0.73 0.000616805 0.000573515 0.0283126 0.0262449 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.78 0.100509 0.0881538 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0245803 0.0214329 97 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.66 vpr 62.61 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.64 0.000646211 0.000600452 0.0530012 0.0492348 32 2382 23 6.64007e+06 226044 554710. 1919.41 0.93 0.131792 0.116789 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0274288 0.0238717 126 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.42 vpr 62.14 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.05 678 12127 3168 7672 1287 62.1 MiB 0.10 0.00 3.4089 -91.215 -3.4089 3.4089 0.63 0.000762538 0.000708997 0.0339782 0.0316566 26 1687 20 6.64007e+06 426972 477104. 1650.88 0.94 0.0971062 0.0853718 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233551 0.0201962 103 34 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.77 vpr 62.98 MiB 0.05 7008 -1 -1 1 0.04 -1 -1 30548 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.64 0.000802022 0.000744616 0.0656436 0.0609464 32 2475 24 6.64007e+06 276276 554710. 1919.41 0.90 0.163639 0.14489 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0268572 0.023701 149 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.45 vpr 63.04 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30364 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.4 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.64 0.00101929 0.000933286 0.0378106 0.0349707 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.71 0.165672 0.144622 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304777 0.0266013 148 94 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.67 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30620 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.21 984 7523 1506 5708 309 62.7 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.64 0.000809792 0.000752004 0.0300029 0.02782 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.08 0.132418 0.11575 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.18 0.09 0.08 -1 -1 0.18 0.0304517 0.0265385 151 96 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.70 vpr 62.96 MiB 0.05 7108 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.08 0.00 4.33507 -129.747 -4.33507 4.33507 0.65 0.000344815 0.000317708 0.0257176 0.0237632 32 2540 23 6.65987e+06 266238 554710. 1919.41 0.82 0.117595 0.102598 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0312099 0.027203 140 91 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.73 vpr 62.88 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.63 0.000743191 0.000689694 0.0571518 0.0530765 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.05 0.145688 0.129103 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0324746 0.0282694 141 65 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.40 vpr 62.63 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.11 793 11603 2857 6819 1927 62.6 MiB 0.07 0.00 4.2977 -123.649 -4.2977 4.2977 0.71 0.000696309 0.000647326 0.0241568 0.022322 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.67 0.154266 0.133557 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0328465 0.0287523 138 34 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.02 vpr 62.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1026 15456 4961 8586 1909 62.7 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.64 0.000738993 0.000686648 0.0653041 0.060671 32 2926 21 6.65987e+06 253560 554710. 1919.41 0.92 0.15429 0.137314 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0341645 0.0298938 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.79 vpr 62.69 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.65 0.000769948 0.000712758 0.0338278 0.0313746 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.86 0.12975 0.113679 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0318188 0.0278025 154 64 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.60 vpr 61.91 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30808 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.3 MiB 0.18 580 13026 4344 6329 2353 61.9 MiB 0.12 0.00 3.7565 -98.351 -3.7565 3.7565 0.75 0.000567201 0.000527919 0.0509653 0.047448 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.78 0.115784 0.102776 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0205585 0.0180041 96 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.62 vpr 62.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30228 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.65 0.000676177 0.000628649 0.0347205 0.032285 28 2449 18 6.65987e+06 418374 500653. 1732.36 0.90 0.111753 0.0985446 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0263728 0.0230883 139 4 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.66 vpr 62.41 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.7 MiB 0.27 870 11571 3268 6617 1686 62.4 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.67 0.000664646 0.000617713 0.04847 0.0450797 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.78 0.126011 0.111481 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0262122 0.0228715 105 85 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 62.44 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 642 11432 4032 4649 2751 62.4 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.63 0.000655871 0.000609079 0.0453333 0.0421093 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.24 0.191647 0.166991 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0275798 0.0241721 121 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.88 vpr 62.64 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.64 0.00065046 0.000604685 0.0468917 0.0436505 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.87 0.130299 0.115416 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0293567 0.0254978 110 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.42 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.7 MiB 0.25 841 11223 2602 8034 587 62.4 MiB 0.11 0.00 3.27957 -108.894 -3.27957 3.27957 0.65 0.000659311 0.000611112 0.0378672 0.0351403 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.87 0.118192 0.104153 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249791 0.0218061 114 65 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.99 vpr 62.78 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1002 18711 5900 10256 2555 62.8 MiB 0.18 0.00 3.50686 -122.446 -3.50686 3.50686 0.65 0.000750831 0.000696554 0.0677127 0.0627021 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.93 0.158304 0.140707 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0276627 143 58 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.43 vpr 62.46 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30576 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.0 MiB 0.29 942 7973 1567 6126 280 62.5 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.87 0.000618028 0.000567462 0.0256015 0.0235677 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.04 0.119624 0.104685 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0344855 0.0301231 156 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.60 vpr 62.16 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.65 0.000583404 0.000543612 0.0265262 0.0247235 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.79 0.0947739 0.083094 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0356502 0.0314816 107 29 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.50 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1074 13992 4161 7846 1985 62.9 MiB 0.14 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000597023 0.00054735 0.0487722 0.044764 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.03 0.125802 0.111277 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0319986 0.02813 146 63 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 62.90 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30296 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.15 0.00 3.6343 -123.732 -3.6343 3.6343 0.64 0.000727331 0.000672626 0.0640976 0.0595207 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.49 0.164195 0.146008 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.18 0.07 0.09 -1 -1 0.18 0.027872 0.0245105 142 57 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.53 vpr 62.79 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30056 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 832 15430 4777 8349 2304 62.8 MiB 0.14 0.00 2.83964 -101.748 -2.83964 2.83964 0.63 0.000679661 0.000630926 0.0514787 0.0477813 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.77 0.125249 0.111012 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0235774 0.0206696 118 65 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.45 vpr 61.64 MiB 0.02 6648 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.12 661 10835 3152 6204 1479 61.6 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000601778 0.00055492 0.0354827 0.0330116 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.75 0.0987736 0.0869962 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.018376 0.0159886 85 34 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.65 vpr 62.57 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.20 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.64 0.000659835 0.000613017 0.0578196 0.0537615 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.81 0.137082 0.121579 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0238189 0.0208769 113 64 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 62.84 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.12 0.00 3.9823 -134.861 -3.9823 3.9823 0.65 0.000718081 0.000664225 0.0428026 0.0397435 26 2573 27 6.65987e+06 431052 477104. 1650.88 0.98 0.136722 0.120444 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0320781 0.0280901 145 34 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.94 vpr 62.72 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1084 15644 4587 8678 2379 62.7 MiB 0.15 0.00 3.46744 -121.209 -3.46744 3.46744 0.67 0.000843363 0.000783129 0.0608548 0.0565342 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.94 0.166898 0.147133 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0377261 0.0328294 149 124 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.28 vpr 61.62 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63096 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.0 MiB 0.15 410 10345 3142 6004 1199 61.6 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.63 0.000440883 0.00040938 0.0303597 0.0282489 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.71 0.0830307 0.0732116 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.18 0.04 0.14 -1 -1 0.18 0.0157633 0.0137968 77 30 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.52 vpr 62.74 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1123 11064 3077 6737 1250 62.7 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.60 0.000690645 0.000642303 0.0442303 0.0411699 32 2636 25 6.65987e+06 253560 554710. 1919.41 0.89 0.1307 0.115484 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0290035 0.0255074 137 3 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.40 vpr 61.63 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 594 8553 1943 6358 252 61.6 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.69 0.000467776 0.000435397 0.0271284 0.0252266 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.90 0.092641 0.081581 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.17 0.04 0.11 -1 -1 0.17 0.0141677 0.0125464 81 3 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.71 vpr 62.89 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1112 19189 6002 11213 1974 62.9 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.64 0.000735489 0.000682684 0.0695124 0.0644878 32 2640 23 6.65987e+06 418374 554710. 1919.41 0.92 0.158962 0.141374 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0342125 0.0300857 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.72 vpr 62.70 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30112 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1134 16059 4004 10217 1838 62.7 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.66 0.000545831 0.000501028 0.050128 0.0465176 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.88 0.135047 0.119558 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0291351 0.0254669 150 3 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.63 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1120 14463 4038 8924 1501 62.6 MiB 0.16 0.00 3.91784 -136.256 -3.91784 3.91784 0.64 0.000938635 0.000872578 0.0545017 0.0506019 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.29 0.153439 0.13593 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.20 0.11 0.13 -1 -1 0.20 0.0380745 0.0332444 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.52 vpr 62.19 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.08 0.00 2.8895 -100.047 -2.8895 2.8895 0.66 0.000616876 0.00057359 0.0325978 0.0303512 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.81 0.107934 0.0949648 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.24 0.06 0.10 -1 -1 0.24 0.0230211 0.0201368 106 34 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.43 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 832 12156 3666 7026 1464 62.4 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.66 0.000613693 0.000570723 0.045411 0.0422522 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.82 0.119352 0.105675 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0245931 0.021542 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30468 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 590 7820 1903 5456 461 62.2 MiB 0.08 0.00 3.4309 -99.7277 -3.4309 3.4309 0.66 0.000586781 0.000546298 0.0287992 0.0267962 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.05 0.115158 0.100443 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0243158 0.0211755 107 34 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.61 vpr 62.44 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.65 0.000614104 0.000571435 0.0433436 0.0403278 32 2225 24 6.65987e+06 228204 554710. 1919.41 0.94 0.12409 0.109888 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0261458 0.0229299 125 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.40 vpr 62.27 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.76 0.000632262 0.000587894 0.0367419 0.0341078 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.46 0.127783 0.111946 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0256641 0.0223509 119 34 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.55 vpr 62.50 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.19 717 8047 1725 5786 536 62.5 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.64 0.000486762 0.000446094 0.0271978 0.0251921 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.82 0.0964644 0.0844708 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0254877 0.0223402 109 61 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.24 vpr 62.72 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30560 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1246 13117 3185 8526 1406 62.7 MiB 0.15 0.00 4.16036 -141.523 -4.16036 4.16036 0.65 0.000837396 0.000779058 0.0485236 0.0451188 26 4082 47 6.65987e+06 494442 477104. 1650.88 3.31 0.187362 0.164646 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.0327446 0.0288259 179 29 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1041 9447 2232 6542 673 62.9 MiB 0.11 0.00 3.5061 -122.514 -3.5061 3.5061 0.67 0.000775963 0.00071838 0.03559 0.0329359 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.88 0.127609 0.111981 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0296716 0.0260214 152 65 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.42 vpr 62.61 MiB 0.05 6992 -1 -1 1 0.04 -1 -1 30508 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 709 5599 957 4403 239 62.6 MiB 0.07 0.00 3.18838 -103.883 -3.18838 3.18838 0.68 0.000684041 0.000636138 0.0218387 0.0202942 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.52 0.107343 0.0935397 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0287437 0.0249188 113 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.80 vpr 62.71 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1062 14541 4862 7202 2477 62.7 MiB 0.15 0.00 3.4921 -118.867 -3.4921 3.4921 0.66 0.00069921 0.000645777 0.0620453 0.0576392 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.84 0.147518 0.131138 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0325776 0.0285071 148 64 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.82 vpr 63.00 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1075 7953 1851 5455 647 63.0 MiB 0.10 0.00 4.84238 -140.996 -4.84238 4.84238 0.64 0.000833417 0.000774336 0.0388296 0.0360857 30 2507 19 6.65987e+06 266238 526063. 1820.29 0.89 0.129577 0.11403 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0303767 0.0266649 149 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 62.91 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 977 8868 2457 6032 379 62.9 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.64 0.000772969 0.00071824 0.0399795 0.0371651 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.131159 0.115448 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262971 0.0231833 143 90 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.26 vpr 62.64 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30412 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1043 11922 3052 7896 974 62.6 MiB 0.15 0.00 3.40784 -114.93 -3.40784 3.40784 0.67 0.000764538 0.000709662 0.0495888 0.0458193 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.27 0.138671 0.122224 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.18 0.11 0.10 -1 -1 0.18 0.0374524 0.0326004 146 64 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.65 vpr 62.65 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30844 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.64 0.000769042 0.000714512 0.036182 0.0336156 30 2568 27 6.65987e+06 443730 526063. 1820.29 0.92 0.134481 0.118161 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.20 0.08 0.13 -1 -1 0.20 0.0330949 0.0289531 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.09 vpr 63.06 MiB 0.04 7268 -1 -1 1 0.04 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1177 18648 4595 11838 2215 63.1 MiB 0.21 0.00 4.0593 -137.323 -4.0593 4.0593 0.64 0.000907617 0.000842397 0.0730646 0.0677843 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.04 0.18259 0.161712 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039302 0.034334 184 96 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.42 vpr 62.54 MiB 0.03 6832 -1 -1 1 0.02 -1 -1 30660 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 685 11806 2914 7153 1739 62.5 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.60 0.000627651 0.000583741 0.0454916 0.0423698 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.85 0.122125 0.108067 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.19 0.07 0.10 -1 -1 0.19 0.0250079 0.0218439 116 34 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.16 vpr 62.51 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.27 976 9675 2155 7053 467 62.5 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.68 0.000757609 0.000704246 0.0349931 0.0325048 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.30 0.128477 0.112874 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0323436 0.0282261 150 64 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.72 vpr 62.96 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1040 11641 3109 7665 867 63.0 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.66 0.000763023 0.000708828 0.0428777 0.0397849 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.05 0.140709 0.123982 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0292194 0.0256143 148 63 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.03 vpr 62.44 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30560 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 853 8685 1897 5601 1187 62.4 MiB 0.09 0.00 4.14936 -138.467 -4.14936 4.14936 0.66 0.000714112 0.00066334 0.0356344 0.0330795 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.21 0.119221 0.104964 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0341263 0.0300601 150 3 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.90 vpr 62.91 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1097 11798 3144 7589 1065 62.9 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.64 0.000789388 0.000732844 0.0449829 0.0416769 32 2610 28 6.65987e+06 431052 554710. 1919.41 0.95 0.143859 0.126648 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0423671 0.036921 145 96 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.83 vpr 62.57 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30476 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1042 7623 1446 5778 399 62.6 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.64 0.000765022 0.000709614 0.0282191 0.0262215 32 2739 23 6.65987e+06 443730 554710. 1919.41 0.90 0.121539 0.106139 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0298541 0.0262543 146 61 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.73 vpr 62.61 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.59 0.000775195 0.000719231 0.0661715 0.0612942 32 2579 24 6.65987e+06 469086 554710. 1919.41 0.89 0.169748 0.150184 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.034144 0.029891 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.57 vpr 62.43 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1049 17883 5721 9099 3063 62.4 MiB 0.17 0.00 4.02327 -139.097 -4.02327 4.02327 0.60 0.00074002 0.000684777 0.0617647 0.0573754 32 2663 21 6.65987e+06 443730 554710. 1919.41 0.91 0.150493 0.133842 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0356784 0.0310904 150 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.93 vpr 62.58 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.65 0.000781284 0.000725712 0.060515 0.0561538 32 2565 23 6.65987e+06 469086 554710. 1919.41 0.91 0.156774 0.1388 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.28 0.09 0.12 -1 -1 0.28 0.0299453 0.0264942 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.89 vpr 62.74 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1081 15859 4297 9232 2330 62.7 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.66 0.000818516 0.000758987 0.0615839 0.0570575 28 2788 21 6.65987e+06 431052 500653. 1732.36 0.91 0.159928 0.141205 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0313545 0.0273084 145 122 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 62.99 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1088 15822 4733 9518 1571 63.0 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.63 0.000816562 0.000758681 0.073541 0.0683868 32 2771 23 6.65987e+06 253560 554710. 1919.41 0.91 0.173218 0.153771 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0375222 0.0328049 149 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.34 vpr 62.48 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 798 8401 2034 5819 548 62.5 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.63 0.000654809 0.000602127 0.0276186 0.0256554 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.83 0.102596 0.0900605 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0261568 0.0228501 124 34 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 912 11830 3154 7792 884 62.7 MiB 0.13 0.00 3.41618 -118.934 -3.41618 3.41618 0.65 0.000701766 0.000650887 0.0499572 0.0463826 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.85 0.134778 0.119009 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.029552 0.0257673 121 94 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.89 vpr 63.05 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30780 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1362 14988 3862 9734 1392 63.1 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000735348 0.000674342 0.0409575 0.0376465 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.03 0.153144 0.133909 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0379304 0.0330853 187 65 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.72 vpr 62.70 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 954 14567 4735 7432 2400 62.7 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.64 0.000733427 0.000681526 0.0519425 0.0482695 32 2533 23 6.65987e+06 393018 554710. 1919.41 0.94 0.140451 0.124348 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306468 0.0268595 146 34 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.32 MiB 0.06 6772 -1 -1 1 0.03 -1 -1 30300 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.08 839 17066 5534 9253 2279 62.3 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.63 0.000624954 0.000582346 0.053231 0.0494946 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.80 0.126959 0.112552 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0272575 0.0236996 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.28 vpr 63.07 MiB 0.03 7440 -1 -1 1 0.04 -1 -1 30928 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1333 18829 5161 11634 2034 63.1 MiB 0.21 0.00 4.64147 -157.361 -4.64147 4.64147 0.63 0.000952758 0.000882584 0.0748397 0.0693026 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.03 0.190972 0.169073 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389888 0.0340168 186 127 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.71 vpr 62.50 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.5 MiB 0.15 0.00 4.15932 -143.209 -4.15932 4.15932 0.64 0.000742717 0.000689388 0.0550826 0.0511361 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.87 0.145136 0.128588 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264479 0.0232405 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.54 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.08 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.64 0.000509563 0.000466631 0.0413225 0.0383061 28 2223 23 6.65987e+06 393018 500653. 1732.36 0.98 0.116584 0.102947 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0259409 0.0226801 123 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.74 vpr 62.88 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30776 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1337 12702 3419 8223 1060 62.9 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.65 0.000858617 0.000798689 0.0470784 0.0437851 30 3011 23 6.65987e+06 519798 526063. 1820.29 0.93 0.14967 0.131835 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0354023 0.0309891 188 34 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.65 vpr 62.32 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 852 11260 3935 5447 1878 62.3 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.64 0.00063525 0.000582271 0.0426567 0.0396897 32 2124 48 6.65987e+06 202848 554710. 1919.41 0.96 0.140232 0.12312 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0246848 0.0215664 121 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.62 vpr 62.19 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.6 MiB 0.18 707 8073 1842 5622 609 62.2 MiB 0.09 0.00 3.47387 -110.471 -3.47387 3.47387 0.66 0.000624242 0.000581123 0.0244039 0.0225586 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.81 0.0966993 0.0845194 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0267687 0.0233655 113 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.58 vpr 62.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30360 -1 -1 33 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.0 MiB 0.27 964 15856 4550 8712 2594 62.7 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000751214 0.000698151 0.0576721 0.0535069 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.84 0.159025 0.140483 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0282237 0.0247772 133 88 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.65 vpr 62.90 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30704 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1002 7770 1874 5369 527 62.9 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.64 0.000766236 0.000710834 0.0351693 0.032663 32 2537 20 6.65987e+06 253560 554710. 1919.41 0.90 0.125729 0.110466 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0330931 0.0289263 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.06 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.64 0.000769709 0.00071392 0.0689799 0.0639557 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.04 0.16362 0.14536 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.17 0.09 0.07 -1 -1 0.17 0.0326348 0.0286053 152 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.58 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30604 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.7 MiB 0.21 697 8614 1900 5780 934 62.6 MiB 0.09 0.00 3.41884 -113.998 -3.41884 3.41884 0.64 0.000678438 0.00062919 0.0298938 0.0277444 32 1903 25 6.65987e+06 380340 554710. 1919.41 0.91 0.119155 0.104234 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0280949 0.0245343 120 65 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.77 vpr 62.59 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 800 12464 4465 5577 2422 62.6 MiB 0.14 0.00 3.46898 -107.312 -3.46898 3.46898 0.77 0.000677636 0.000629193 0.0620627 0.0576711 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.83 0.143619 0.12746 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0297124 0.0258183 109 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.69 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.0 MiB 0.20 996 12623 3384 8308 931 62.7 MiB 0.13 0.00 3.33164 -109.888 -3.33164 3.33164 0.64 0.000725495 0.000673787 0.0466242 0.0432373 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.42 0.14643 0.128923 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0301378 0.0264004 137 60 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30324 -1 -1 31 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 23.9 MiB 0.10 995 16207 5283 8775 2149 62.6 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.64 0.000665842 0.000619186 0.0554609 0.0515575 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.88 0.132921 0.118081 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0286154 0.0250244 133 34 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.84 vpr 62.43 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.36 727 13152 3808 7208 2136 62.4 MiB 0.12 0.00 3.5343 -112.204 -3.5343 3.5343 0.65 0.000544335 0.000489546 0.047606 0.043977 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.83 0.124699 0.110026 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.21 0.05 0.12 -1 -1 0.21 0.0230428 0.0202149 114 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.80 vpr 62.54 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.30 910 8164 2057 5403 704 62.5 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.79 0.000553097 0.000506008 0.0290293 0.0266783 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.83 0.110159 0.0962057 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0276936 0.0242626 113 91 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.08 vpr 62.70 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30204 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.12 0.00 4.17558 -139.576 -4.17558 4.17558 0.70 0.000693696 0.000644473 0.0410847 0.0381683 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.24 0.1286 0.113996 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0260032 0.023028 150 4 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.95 vpr 62.57 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30568 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1037 13598 4125 8601 872 62.6 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.65 0.000780035 0.000723919 0.0522642 0.0485146 28 2566 22 6.65987e+06 431052 500653. 1732.36 1.18 0.142535 0.12639 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335775 0.0294161 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.37 vpr 62.46 MiB 0.04 7000 -1 -1 1 0.04 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1033 10448 2380 7653 415 62.5 MiB 0.12 0.00 4.16458 -142.258 -4.16458 4.16458 0.65 0.000781082 0.000725478 0.0399336 0.0369548 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.49 0.149414 0.130886 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.03088 0.0270837 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.77 vpr 62.55 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.25 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.66 0.000771741 0.000716852 0.0320121 0.0296859 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.127245 0.111684 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0358447 0.0315433 148 65 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.98 vpr 62.46 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.21 656 10400 2388 7389 623 62.5 MiB 0.10 0.00 3.50927 -110.79 -3.50927 3.50927 0.69 0.000616738 0.000573255 0.0391656 0.0364384 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.09 0.136403 0.119444 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257346 0.0226014 112 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.96 vpr 62.67 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30340 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 986 11613 3437 7269 907 62.7 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.80 0.000568302 0.000521081 0.0391176 0.0359418 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.90 0.126895 0.111177 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0274918 0.0239688 145 63 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.07 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 13117 2855 8842 1420 62.8 MiB 0.13 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000866717 0.000806091 0.0500562 0.0465014 32 2892 25 6.65987e+06 494442 554710. 1919.41 0.93 0.156748 0.137793 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.18 0.07 0.08 -1 -1 0.18 0.0219432 0.0192119 154 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.67 MiB 0.06 7112 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.66 0.00079337 0.000736257 0.0368721 0.034059 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.11 0.132776 0.116623 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0327955 0.0286431 146 94 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.85 vpr 62.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.30 967 14375 3613 8859 1903 62.9 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.68 0.000584347 0.000535331 0.0433938 0.0398308 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.98 0.135747 0.119321 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0291872 0.0256149 136 92 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1103 13477 4009 7448 2020 62.6 MiB 0.15 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000777769 0.000721767 0.0599668 0.0556484 32 2896 23 6.65987e+06 266238 554710. 1919.41 0.99 0.154185 0.136688 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0300984 0.0268261 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.67 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 870 10463 2796 6767 900 62.7 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.64 0.000732665 0.000680718 0.0378185 0.0350861 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.92 0.127319 0.11168 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0288492 0.0251964 134 88 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.36 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.6 MiB 0.07 838 13496 3888 8529 1079 62.4 MiB 0.14 0.00 3.5031 -123.339 -3.5031 3.5031 0.63 0.000632506 0.000588509 0.0582954 0.0541751 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.90 0.138823 0.123251 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0259233 0.0226952 116 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.91 vpr 62.55 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.64 0.00077494 0.000719046 0.0607549 0.0563711 32 2598 23 6.65987e+06 418374 554710. 1919.41 0.91 0.154999 0.137458 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.19 0.10 0.13 -1 -1 0.19 0.0358873 0.031491 150 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.70 vpr 62.58 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1026 16081 4881 8736 2464 62.6 MiB 0.17 0.00 4.23393 -146.239 -4.23393 4.23393 0.66 0.000785494 0.000730031 0.0706725 0.0656835 32 2633 23 6.65987e+06 266238 554710. 1919.41 0.91 0.165428 0.147229 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0186745 0.0166259 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 62.53 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 688 16683 5557 7719 3407 62.5 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.63 0.000640246 0.000594417 0.0531823 0.0493856 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.44 0.141197 0.124598 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0236755 0.02091 111 55 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.42 vpr 62.25 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.63 0.000598508 0.000556982 0.0487316 0.0453454 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.82 0.12063 0.106926 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224695 0.0197176 118 4 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30340 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 900 5133 854 4121 158 62.7 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.70 0.00074276 0.000690529 0.0198711 0.0184988 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.90 0.109385 0.0954485 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0292306 0.0255387 138 59 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.91 vpr 62.55 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30348 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.31 879 9892 2434 7009 449 62.6 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.71 0.000760257 0.00070598 0.0385376 0.0357803 28 2733 50 6.65987e+06 380340 500653. 1732.36 1.85 0.163268 0.142533 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328959 0.0286655 134 88 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.65 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30420 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1224 16515 4921 9863 1731 62.6 MiB 0.18 0.00 4.82096 -159.28 -4.82096 4.82096 0.86 0.000789401 0.000733334 0.0620433 0.0577253 34 3026 21 6.65987e+06 443730 585099. 2024.56 1.54 0.2139 0.188256 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0335672 0.0295164 177 3 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.08 vpr 62.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30604 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1012 13726 3606 8436 1684 63.0 MiB 0.14 0.00 3.638 -113.448 -3.638 3.638 0.72 0.000717173 0.00066628 0.0500269 0.0464165 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.83 0.13402 0.118516 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.20 0.08 0.14 -1 -1 0.20 0.0305698 0.0267863 136 59 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.68 vpr 62.10 MiB 0.13 6940 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.12 768 12754 4322 6521 1911 62.1 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.71 0.000570125 0.000530457 0.0463313 0.0431254 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.82 0.115739 0.10254 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0257384 0.0223532 107 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.14 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1366 15232 4128 9656 1448 63.1 MiB 0.17 0.00 4.15924 -136.806 -4.15924 4.15924 0.65 0.000911491 0.000845869 0.0601603 0.0557784 32 3584 25 6.65987e+06 507120 554710. 1919.41 0.99 0.174145 0.153625 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.19 0.13 0.12 -1 -1 0.19 0.0419947 0.0365706 184 95 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.94 vpr 62.96 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.1 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000827225 0.000768524 0.061338 0.0569738 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.93 0.165957 0.146737 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0378688 0.0329122 144 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.63 vpr 62.44 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 739 9540 2469 6056 1015 62.4 MiB 0.10 0.00 3.43298 -108.977 -3.43298 3.43298 0.65 0.000687752 0.00063842 0.0408523 0.0379745 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.82 0.124396 0.10963 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0303661 0.0264474 109 89 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.71 vpr 62.81 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.66 0.000735788 0.000675958 0.0553791 0.0513525 28 2607 21 6.65987e+06 405696 500653. 1732.36 0.89 0.135215 0.120206 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0274774 0.0241803 146 34 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.04 -1 -1 30696 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1167 13551 3218 9177 1156 62.8 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.64 0.000848186 0.000789199 0.0549963 0.0511091 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.93 0.163067 0.143863 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0347798 0.0304362 171 64 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 62.77 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1070 11111 2802 7426 883 62.8 MiB 0.12 0.00 3.62941 -110.797 -3.62941 3.62941 0.65 0.000857112 0.000795438 0.0424953 0.039394 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.51 0.155949 0.137077 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.19 0.08 0.12 -1 -1 0.19 0.030515 0.0266624 134 61 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.88 vpr 62.75 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1074 12606 3053 8336 1217 62.8 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.64 0.000614404 0.000562704 0.0362254 0.0332797 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.95 0.127185 0.111662 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.03022 0.0266813 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.69 vpr 62.73 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.23 985 6766 1235 5165 366 62.7 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.63 0.000773145 0.000717771 0.0250353 0.0232608 28 2716 20 6.65987e+06 481764 500653. 1732.36 0.92 0.114102 0.0998578 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0363592 0.0316636 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.48 vpr 62.05 MiB 0.05 6828 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.6 MiB 0.12 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.63 0.000604967 0.000562887 0.0491863 0.0457977 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.81 0.119128 0.105751 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0249219 0.0217023 93 34 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.66 vpr 62.62 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 872 14431 4553 8297 1581 62.6 MiB 0.13 0.00 3.69338 -109.525 -3.69338 3.69338 0.63 0.000660775 0.000613853 0.0563316 0.0523415 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.83 0.13128 0.116497 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264976 0.0231307 111 82 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.64 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 23.9 MiB 0.14 973 15876 4279 9893 1704 62.6 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.63 0.000728302 0.000676688 0.0525022 0.0488075 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.00 0.151572 0.133861 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0350059 0.0306611 150 34 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.91 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.6 MiB 0.23 621 11063 2736 7707 620 62.1 MiB 0.10 0.00 3.58224 -95.8028 -3.58224 3.58224 0.63 0.000605527 0.000562235 0.0346882 0.0321968 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.27 0.118873 0.104088 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0219865 0.0191452 108 56 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 62.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.63 0.000610626 0.000564725 0.0323803 0.0301423 34 2038 19 6.65987e+06 202848 585099. 2024.56 1.39 0.157163 0.13684 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.22 0.07 0.13 -1 -1 0.22 0.0258694 0.0225794 119 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.68 vpr 62.90 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30392 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.12 0.00 3.4951 -117.77 -3.4951 3.4951 0.64 0.000752967 0.000699691 0.0418998 0.0388398 26 2363 24 6.65987e+06 456408 477104. 1650.88 0.89 0.133025 0.117097 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0296007 0.0258956 142 64 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.57 vpr 62.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.6 MiB 0.29 876 12923 4161 7145 1617 62.3 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.63 0.00062587 0.000581747 0.0500737 0.0465781 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.78 0.118923 0.105555 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0237348 0.0208426 105 55 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.06 vpr 62.87 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.22 929 17616 5738 7949 3929 62.9 MiB 0.14 0.00 3.3979 -111.1 -3.3979 3.3979 0.64 0.00072904 0.000675678 0.0616225 0.0571556 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.15 0.235012 0.205197 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.20 0.08 0.08 -1 -1 0.20 0.0303433 0.0265266 136 65 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.05 vpr 62.86 MiB 0.05 7196 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.59 965 17427 4981 9867 2579 62.9 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.63 0.00079254 0.00073174 0.0634381 0.0587876 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.85 0.155751 0.138019 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0314744 0.0275111 148 93 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.52 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.7 MiB 0.16 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.63 0.000660513 0.000613665 0.0456212 0.042431 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.84 0.126086 0.111347 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0271744 0.0236712 115 61 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.83 vpr 62.71 MiB 0.04 6944 -1 -1 1 0.02 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 667 7380 1595 4913 872 62.7 MiB 0.04 0.00 3.38184 -112.707 -3.38184 3.38184 0.65 0.000301478 0.000276528 0.0141537 0.0130409 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.10 0.114005 0.0983365 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0274993 0.0239719 121 63 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 62.61 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30700 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1042 12164 2979 8000 1185 62.6 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.71 0.000776565 0.000721736 0.0437191 0.0405644 28 2653 23 6.65987e+06 456408 500653. 1732.36 0.97 0.138141 0.121793 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.17 0.10 0.12 -1 -1 0.17 0.0363539 0.0317408 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.82 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30500 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.2 MiB 0.22 968 17313 5602 9212 2499 62.6 MiB 0.16 0.00 3.57304 -105.57 -3.57304 3.57304 0.64 0.00071024 0.00065969 0.0651758 0.0605399 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.83 0.148835 0.132522 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.23 0.07 0.08 -1 -1 0.23 0.0307303 0.0268374 133 62 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.89 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1004 11616 2968 7911 737 62.8 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.64 0.000862851 0.00080114 0.0467395 0.0432985 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.87 0.148171 0.12994 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0377371 0.0328529 156 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.35 vpr 62.12 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 715 5825 1215 4401 209 62.1 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.65 0.000696113 0.000640247 0.0224785 0.0209462 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.78 0.0883915 0.0772869 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.13 -1 -1 0.19 0.0230888 0.0201077 105 4 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.78 vpr 62.89 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30380 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.9 MiB 0.19 0.00 4.10497 -133.778 -4.10497 4.10497 0.66 0.00077987 0.000723377 0.0754877 0.0700117 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.87 0.181481 0.161103 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0301345 0.0264543 142 92 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.98 vpr 62.72 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 805 9196 3450 4876 870 62.7 MiB 0.10 0.00 3.54047 -120.422 -3.54047 3.54047 0.63 0.000719555 0.000666722 0.0421606 0.0391707 30 2070 21 6.65987e+06 202848 526063. 1820.29 1.15 0.133195 0.117825 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0262375 0.0230395 115 96 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.83 vpr 62.61 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1002 18111 5520 9663 2928 62.6 MiB 0.17 0.00 3.45184 -118.995 -3.45184 3.45184 0.63 0.000771318 0.000714881 0.063436 0.0588405 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.86 0.149075 0.132635 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0348295 0.0305177 149 65 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.70 vpr 62.95 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30784 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1201 15034 3694 9653 1687 63.0 MiB 0.16 0.00 4.6905 -158.567 -4.6905 4.6905 0.63 0.000917083 0.000850746 0.058484 0.0543283 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.73 0.206556 0.181139 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.16 0.13 0.10 -1 -1 0.16 0.0455005 0.0394765 186 96 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.61 vpr 61.98 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.21 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.63 0.00052958 0.000493126 0.0358871 0.0334003 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.00 0.100383 0.0883961 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0222499 0.0193469 83 56 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.14 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 758 10536 3415 5493 1628 62.1 MiB 0.10 0.00 3.52904 -110.224 -3.52904 3.52904 0.63 0.000615174 0.000572003 0.0412953 0.0384438 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.80 0.114729 0.101274 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0312569 0.0274112 96 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.56 vpr 62.54 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 856 9872 2316 7018 538 62.5 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.64 0.000646025 0.000600739 0.0380562 0.0354195 32 2373 21 6.65987e+06 228204 554710. 1919.41 0.86 0.114652 0.101149 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0268309 0.0234654 126 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.22 vpr 62.23 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30428 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13351 3608 8032 1711 62.2 MiB 0.11 0.00 3.32684 -88.9535 -3.32684 3.32684 0.64 0.000533747 0.000496456 0.038792 0.0360852 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.73 0.0992142 0.0876063 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0214542 0.0186141 103 34 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.72 vpr 63.24 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 877 14541 4608 7775 2158 63.2 MiB 0.18 0.00 4.02035 -125.217 -4.02035 4.02035 0.63 0.000806725 0.000749157 0.0773694 0.0718484 32 2783 25 6.65987e+06 253560 554710. 1919.41 0.95 0.176376 0.156834 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0189049 0.0167551 147 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.68 vpr 62.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.16 938 18660 5414 10450 2796 62.6 MiB 0.17 0.00 3.4903 -116.326 -3.4903 3.4903 0.63 0.000778371 0.000721938 0.0656141 0.0607971 32 2461 21 6.65987e+06 469086 554710. 1919.41 0.87 0.158441 0.140268 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333193 0.0290693 146 94 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.14 vpr 63.51 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.91 758 13949 4789 6835 2325 63.5 MiB 0.12 0.00 3.74419 -135.496 -3.74419 3.74419 0.66 0.000805874 0.00074779 0.0601069 0.0557882 58 1960 26 6.95648e+06 361892 997811. 3452.63 2.30 0.229723 0.200369 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.30 0.09 0.21 -1 -1 0.30 0.0340263 0.0297076 84 96 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.39 vpr 63.55 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30672 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.97 807 12716 4975 6082 1659 63.5 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.65 0.000757224 0.00070248 0.0629915 0.058513 48 2407 29 6.95648e+06 202660 865456. 2994.66 3.58 0.225398 0.197257 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.26 0.17 0.17 -1 -1 0.26 0.0506675 0.0438814 76 91 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 16.23 vpr 63.44 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1022 7103 1835 4569 699 63.4 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.66 0.000740139 0.00068768 0.0322411 0.0299829 40 2728 21 6.95648e+06 275038 706193. 2443.58 12.69 0.331362 0.285048 26914 176310 -1 2485 24 1665 2605 297469 57129 3.85496 3.85496 -146.999 -3.85496 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0388303 0.0338927 77 65 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.12 vpr 63.36 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.6 MiB 0.37 752 10672 3799 5216 1657 63.4 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.65 0.00068378 0.000635503 0.0472427 0.043968 44 2696 27 6.95648e+06 231611 787024. 2723.27 2.01 0.186442 0.162797 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0322562 0.0281657 75 34 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.62 vpr 63.43 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.65 716 9857 3295 4764 1798 63.4 MiB 0.10 0.00 3.66789 -133.791 -3.66789 3.66789 0.65 0.000746485 0.000693313 0.0481862 0.0448464 56 2163 40 6.95648e+06 188184 973134. 3367.25 3.10 0.229883 0.200875 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.29 0.10 0.20 -1 -1 0.29 0.0331287 0.0289903 78 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.94 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30428 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 727 15003 5272 7155 2576 63.7 MiB 0.12 0.00 3.0985 -114.166 -3.0985 3.0985 0.66 0.000774594 0.000718145 0.0578677 0.0536952 46 2435 46 6.95648e+06 419795 828058. 2865.25 11.80 0.38416 0.332084 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0302881 0.0264798 89 64 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.41 vpr 62.94 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30604 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.4 MiB 3.54 451 8433 2993 4087 1353 62.9 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.66 0.000575449 0.000535949 0.0335818 0.0312904 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.25 0.167617 0.145119 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0228175 0.0198745 54 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.77 vpr 63.07 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.48 722 11088 4563 6076 449 63.1 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.65 0.0008327 0.000776 0.0504746 0.0469401 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.56 0.188363 0.164698 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297735 0.0260166 77 4 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.46 vpr 62.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 1.54 523 9994 2759 5612 1623 63.0 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.65 0.000653658 0.000606421 0.0444859 0.041304 40 1829 42 6.95648e+06 159232 706193. 2443.58 7.27 0.33491 0.287725 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.23 0.11 0.12 -1 -1 0.23 0.0420189 0.0363805 57 85 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.09 vpr 62.93 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.91 638 10614 4216 4843 1555 62.9 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.65 0.000650113 0.000603717 0.0478757 0.0445693 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.52 0.189557 0.165527 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0273877 0.0239382 62 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.11 vpr 63.25 MiB 0.02 6916 -1 -1 1 0.05 -1 -1 30132 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.59 651 11079 4648 6085 346 63.3 MiB 0.10 0.00 3.1095 -111.937 -3.1095 3.1095 0.72 0.000647361 0.000601785 0.050373 0.0469555 38 1744 25 6.95648e+06 173708 678818. 2348.85 1.77 0.173707 0.151984 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0259027 0.022618 60 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.32 vpr 63.51 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30448 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.6 MiB 0.81 540 10476 4331 5741 404 63.5 MiB 0.09 0.00 2.9793 -106.716 -2.9793 2.9793 0.65 0.00065639 0.0006096 0.045402 0.0422115 50 1707 47 6.95648e+06 173708 902133. 3121.57 1.77 0.176299 0.153697 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0253947 0.0221734 60 65 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.13 vpr 63.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.5 MiB 1.27 751 11803 3277 6504 2022 63.4 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.67 0.00075595 0.000702005 0.0501366 0.0466012 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.03 0.216096 0.188407 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0303115 0.0265731 79 58 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.54 vpr 63.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 0.99 832 16371 6652 7990 1729 63.6 MiB 0.14 0.00 3.72719 -138.885 -3.72719 3.72719 0.65 0.000777053 0.00072101 0.0662595 0.0614675 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.75 0.252121 0.220571 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0312666 0.0273574 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.55 vpr 62.80 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.05 465 11234 4544 5569 1121 62.8 MiB 0.10 0.00 3.14676 -95.8879 -3.14676 3.14676 0.67 0.000686511 0.000638323 0.048916 0.0455068 46 1613 28 6.95648e+06 188184 828058. 2865.25 1.83 0.168088 0.14664 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.25 0.07 0.14 -1 -1 0.25 0.0290433 0.0251649 58 29 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.52 vpr 63.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.63 807 11813 5009 6533 271 63.7 MiB 0.13 0.00 3.1505 -120.688 -3.1505 3.1505 0.65 0.00141771 0.00131534 0.0670848 0.0623275 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.02 0.219232 0.192434 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0364726 0.0317591 77 63 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.81 vpr 63.80 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.39 707 11064 3419 5711 1934 63.8 MiB 0.11 0.00 3.0804 -113.837 -3.0804 3.0804 0.67 0.000744491 0.000689519 0.0507175 0.0470672 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.76 0.226558 0.197194 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.24 0.07 0.11 -1 -1 0.24 0.029687 0.025994 78 57 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.34 vpr 63.28 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 574 10698 2981 5511 2206 63.3 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.66 0.000667806 0.000619429 0.0414783 0.0385373 48 1509 24 6.95648e+06 289514 865456. 2994.66 1.82 0.174657 0.151996 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0275562 0.0239977 67 65 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.50 vpr 62.52 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30208 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.65 0.00050213 0.000467251 0.0394933 0.0367878 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.61 0.146611 0.12761 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0205962 0.0179419 45 34 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.08 vpr 63.29 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30412 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 1.09 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.71 0.000807564 0.000751147 0.0493322 0.0459326 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.12 0.217029 0.189114 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.032612 0.0283618 61 64 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.34 vpr 63.50 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.40 664 13663 4054 7770 1839 63.5 MiB 0.14 0.00 3.70954 -128.174 -3.70954 3.70954 0.65 0.000729895 0.000678103 0.0673952 0.0626513 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.14 0.224234 0.196772 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0307136 0.026939 81 34 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.54 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30612 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.10 791 14779 5223 7361 2195 63.8 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.65 0.000845583 0.000784988 0.0639627 0.0593862 48 2442 23 6.95648e+06 390843 865456. 2994.66 2.57 0.233281 0.203625 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0382407 0.0332439 85 124 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.22 vpr 62.28 MiB 0.04 6764 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.8 MiB 0.87 348 7809 2770 3912 1127 62.3 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.65 0.000520141 0.00048389 0.0290685 0.0270564 46 937 48 6.95648e+06 188184 828058. 2865.25 1.73 0.133386 0.115596 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.25 0.04 0.18 -1 -1 0.25 0.0167711 0.014753 44 30 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.00 vpr 63.44 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.80 737 10316 4241 5568 507 63.4 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.66 0.000691905 0.000643038 0.0481539 0.0448461 48 2419 30 6.95648e+06 173708 865456. 2994.66 3.10 0.195138 0.170797 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.26 0.36 0.17 -1 -1 0.26 0.0574908 0.0496754 74 3 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.47 vpr 62.67 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.29 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.67 0.000466282 0.000432898 0.032831 0.0305024 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.60 0.145898 0.126962 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0155766 0.0137291 44 3 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.42 vpr 63.35 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.50 827 16371 5667 8716 1988 63.4 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.68 0.000751139 0.000696051 0.0639691 0.0592373 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.07 0.219677 0.192122 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0385571 0.0335002 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.64 vpr 63.39 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30172 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.4 MiB 0.12 0.00 3.0955 -119.852 -3.0955 3.0955 0.65 0.000701636 0.000651792 0.0488406 0.0453699 36 2880 44 6.95648e+06 405319 648988. 2245.63 4.57 0.209521 0.182849 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0270326 0.0237357 87 3 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.33 789 18308 6099 10070 2139 63.6 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.67 0.000771296 0.000714486 0.0732736 0.067875 46 2780 28 6.95648e+06 405319 828058. 2865.25 2.84 0.238946 0.209821 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338506 0.0295608 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.42 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.72 541 9374 3087 4731 1556 63.0 MiB 0.10 0.00 2.8982 -102.358 -2.8982 2.8982 0.67 0.000735864 0.000691673 0.0512937 0.0477817 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.03 0.1926 0.168113 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0276089 0.0240681 57 34 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.14 vpr 62.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.55 571 8444 3466 4635 343 62.8 MiB 0.08 0.00 3.1175 -112.058 -3.1175 3.1175 0.67 0.000615567 0.00057243 0.0357287 0.033258 40 1947 30 6.95648e+06 173708 706193. 2443.58 1.94 0.169244 0.146684 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.026427 0.0230086 60 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.35 vpr 62.91 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.55 505 10257 3681 4972 1604 62.9 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.66 0.000581545 0.000540482 0.0414812 0.0386228 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.12 0.163838 0.142439 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0226589 0.0197483 61 34 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.01 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.23 703 9374 3895 5319 160 63.0 MiB 0.09 0.00 2.93285 -116.414 -2.93285 2.93285 0.66 0.000612187 0.000569167 0.0392736 0.0365728 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.18 0.163883 0.142867 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.029518 0.025764 64 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.13 vpr 63.23 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.16 623 13443 5605 7395 443 63.2 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.66 0.000629843 0.000585072 0.0486487 0.0452508 44 2077 38 6.95648e+06 303989 787024. 2723.27 2.24 0.186596 0.162701 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0275901 0.0240641 68 34 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.44 vpr 63.10 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.66 0.000624575 0.000580017 0.0399226 0.0371231 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.05 0.176321 0.153225 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268241 0.0233241 64 61 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 17.92 vpr 63.83 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30568 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.74 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.66 0.000827677 0.000767647 0.0605035 0.0562107 50 2802 35 6.95648e+06 405319 902133. 3121.57 14.31 0.416063 0.360027 28642 213929 -1 2332 25 2175 3439 375097 108678 4.03032 4.03032 -146.333 -4.03032 0 0 1.08113e+06 3740.92 0.27 0.13 0.18 -1 -1 0.27 0.0393316 0.0343178 100 29 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.45 vpr 63.75 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.93 786 12739 3070 7853 1816 63.7 MiB 0.12 0.00 3.0804 -115.407 -3.0804 3.0804 0.65 0.000781296 0.000723929 0.051149 0.0475119 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.70 0.212018 0.185059 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0410768 0.0356608 87 65 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.70 vpr 63.34 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.06 525 12362 5188 6715 459 63.3 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.65 0.000675989 0.000627411 0.0529355 0.0492012 50 1653 27 6.95648e+06 217135 902133. 3121.57 1.90 0.18966 0.165633 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.26 0.05 0.18 -1 -1 0.26 0.0216951 0.0190699 62 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.50 vpr 63.64 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.53 965 12791 5492 6957 342 63.6 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.65 0.000746072 0.000692342 0.0614204 0.0570389 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.34 0.211149 0.185007 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0288782 0.0253066 79 64 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.87 vpr 63.90 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.12 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.65 0.00084012 0.000780514 0.0592324 0.0550615 44 2926 36 6.95648e+06 202660 787024. 2723.27 2.96 0.23878 0.207589 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0371166 0.0322964 78 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.36 vpr 63.68 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.42 775 10476 3672 5136 1668 63.7 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.65 0.000768648 0.000713199 0.053456 0.0496077 44 2669 43 6.95648e+06 188184 787024. 2723.27 2.17 0.22894 0.199259 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0378706 0.0329743 76 90 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.66 vpr 63.59 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.84 864 15493 5631 7761 2101 63.6 MiB 0.14 0.00 3.1285 -114.829 -3.1285 3.1285 0.67 0.000780585 0.000723274 0.0646432 0.0600666 38 2848 26 6.95648e+06 361892 678818. 2348.85 3.13 0.221189 0.193855 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0313667 0.0274556 85 64 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.53 vpr 63.87 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30680 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.49 956 10743 3793 5013 1937 63.9 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.65 0.000772885 0.000717777 0.0440934 0.0409993 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.40 0.198967 0.173398 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.25 0.11 0.11 -1 -1 0.25 0.0349637 0.0305893 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.93 vpr 64.00 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.7 MiB 0.88 1078 14999 4071 8495 2433 64.0 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.66 0.000914787 0.000848334 0.0669773 0.0621348 40 2955 26 6.95648e+06 448746 706193. 2443.58 14.28 0.43074 0.37192 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.036351 0.0318076 104 96 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.37 vpr 63.49 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30540 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 721 10304 4339 5695 270 63.5 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.67 0.000626714 0.000582494 0.0440208 0.0409723 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.11 0.172259 0.150164 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0260322 0.022742 62 34 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 5.11 vpr 63.53 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 784 13959 3819 8017 2123 63.5 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.55 0.000768293 0.000713404 0.0566325 0.0526458 48 2294 26 6.95648e+06 390843 865456. 2994.66 2.11 0.21044 0.184029 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0300851 0.0263255 86 64 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.28 vpr 63.80 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.75 863 13557 4887 6407 2263 63.8 MiB 0.11 0.00 3.29596 -116.543 -3.29596 3.29596 0.65 0.000760321 0.000705017 0.0545203 0.0506466 50 2481 26 6.95648e+06 376368 902133. 3121.57 2.60 0.204345 0.178602 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.26 0.20 0.18 -1 -1 0.26 0.0547317 0.047295 85 63 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.29 vpr 63.30 MiB 0.10 7000 -1 -1 1 0.03 -1 -1 30524 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.83 760 7738 3134 4374 230 63.3 MiB 0.08 0.00 3.65689 -135.736 -3.65689 3.65689 0.65 0.00070816 0.000657961 0.0361191 0.0336373 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.63 0.195374 0.169851 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.031844 0.0278397 78 3 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.55 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.55 808 11991 3810 6067 2114 63.8 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.65 0.000786115 0.000729626 0.052251 0.0485884 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.30 0.214274 0.186971 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.25 0.07 0.11 -1 -1 0.25 0.0308622 0.0270065 81 96 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 5.45 vpr 63.84 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.79 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.65 0.00076373 0.000709159 0.0501642 0.0466061 46 2291 24 6.95648e+06 405319 828058. 2865.25 1.94 0.200017 0.174548 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0348641 0.030425 85 61 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.68 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.3 MiB 0.56 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.65 0.000777787 0.000720411 0.0587256 0.054432 46 2386 25 6.95648e+06 405319 828058. 2865.25 2.38 0.213129 0.186329 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0309563 0.0271394 88 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.17 vpr 63.85 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30532 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 25.0 MiB 0.52 938 15617 5888 7604 2125 63.8 MiB 0.14 0.00 3.66789 -137.042 -3.66789 3.66789 0.65 0.000739817 0.00068669 0.0584745 0.0542802 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.87 0.231972 0.20268 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0326036 0.0284901 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.21 vpr 63.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.97 799 12448 3955 5788 2705 63.6 MiB 0.12 0.00 3.78219 -138.337 -3.78219 3.78219 0.71 0.000884798 0.000812115 0.0542225 0.0502694 44 2633 42 6.95648e+06 434271 787024. 2723.27 2.39 0.227336 0.198178 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0335008 0.029245 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 21.91 vpr 63.88 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30480 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.24 822 11983 4768 6508 707 63.9 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.65 0.000827936 0.000769042 0.0538013 0.0499986 44 3007 44 6.95648e+06 361892 787024. 2723.27 17.93 0.413065 0.355678 27778 195446 -1 2186 29 1784 2766 272117 64702 3.83002 3.83002 -138.199 -3.83002 0 0 997811. 3452.63 0.24 0.07 0.11 -1 -1 0.24 0.0230894 0.0202217 84 122 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.34 vpr 63.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.11 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000808834 0.000751515 0.054335 0.0505417 40 2535 24 6.95648e+06 188184 706193. 2443.58 2.65 0.216316 0.188985 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0193723 0.0171277 78 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.29 vpr 63.16 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 594 10647 4341 5910 396 63.2 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.70 0.000645758 0.000600202 0.0381608 0.0354233 56 1741 22 6.95648e+06 332941 973134. 3367.25 2.27 0.165474 0.1442 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.29 0.07 0.20 -1 -1 0.29 0.0254144 0.0222203 71 34 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.41 vpr 63.45 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.03 610 8444 3495 4676 273 63.4 MiB 0.09 0.00 3.0405 -112.422 -3.0405 3.0405 0.65 0.000893196 0.00082361 0.0429175 0.0398144 48 1986 36 6.95648e+06 144757 865456. 2994.66 12.64 0.336895 0.289861 28354 207349 -1 1587 21 1492 2244 248234 67713 3.07482 3.07482 -121.215 -3.07482 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0292001 0.0254931 63 94 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 22.83 vpr 63.60 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.3 MiB 0.59 1000 14152 3772 8188 2192 63.6 MiB 0.14 0.00 4.46224 -157.711 -4.46224 4.46224 0.65 0.000883339 0.000820977 0.0617213 0.0573182 48 3589 41 6.95648e+06 434271 865456. 2994.66 19.31 0.486896 0.419306 28354 207349 -1 2647 39 3273 5242 691557 203542 5.05191 5.05191 -180.38 -5.05191 0 0 1.05005e+06 3633.38 0.27 0.23 0.18 -1 -1 0.27 0.0632437 0.0548627 103 65 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.48 vpr 63.57 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 717 11983 4638 6220 1125 63.6 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.65 0.000732211 0.000679808 0.0482652 0.0445208 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.33 0.207495 0.180477 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0296739 0.0260194 83 34 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.99 vpr 62.87 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 571 10581 4367 5776 438 62.9 MiB 0.10 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000624132 0.000580397 0.0436408 0.0406775 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.16 0.176367 0.153403 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.25 0.04 0.14 -1 -1 0.25 0.0137549 0.0122137 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.62 vpr 63.81 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.87 1126 15215 3732 10105 1378 63.8 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.64 0.000947963 0.000880294 0.0702237 0.0651985 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 2.66 0.256214 0.224081 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.33 0.13 0.26 -1 -1 0.33 0.0431568 0.0377567 103 127 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.06 vpr 63.57 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30616 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 804 14375 4842 7223 2310 63.6 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.65 0.000754408 0.000699746 0.0550887 0.0510594 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.36 0.19909 0.174424 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0323659 0.0283721 86 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.13 vpr 63.11 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30304 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 740 12763 4452 6451 1860 63.1 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.66 0.000613264 0.000569724 0.0422527 0.0393145 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.16 0.164787 0.14378 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0252353 0.0220465 70 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.32 vpr 63.49 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30888 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.50 924 14567 5045 6877 2645 63.5 MiB 0.13 0.00 4.52824 -159.979 -4.52824 4.52824 0.65 0.000860252 0.000799772 0.061709 0.057364 54 3003 36 6.95648e+06 448746 949917. 3286.91 3.96 0.252431 0.220257 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.28 0.12 0.19 -1 -1 0.28 0.0377166 0.032947 105 34 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.90 vpr 62.86 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.34 618 10614 4475 5915 224 62.9 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.66 0.00061319 0.000570121 0.0442681 0.0412025 46 1828 25 6.95648e+06 144757 828058. 2865.25 1.92 0.168334 0.14725 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0283245 0.0246925 62 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 13.28 vpr 62.95 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.5 MiB 0.80 601 10163 2708 5873 1582 62.9 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.68 0.000618254 0.000574921 0.0370486 0.0344865 46 1545 25 6.95648e+06 303989 828058. 2865.25 9.72 0.321302 0.275939 28066 200906 -1 1217 20 1164 1727 130235 38121 3.03987 3.03987 -109.31 -3.03987 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0247784 0.0216718 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.35 vpr 63.43 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.24 705 12856 4698 6070 2088 63.4 MiB 0.12 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.000744683 0.000690741 0.0581135 0.0539501 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.12 0.22579 0.196935 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.26 0.09 0.22 -1 -1 0.26 0.0293305 0.0256081 77 88 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 13.12 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.84 807 13117 5264 6347 1506 63.8 MiB 0.13 0.00 3.65689 -136.729 -3.65689 3.65689 0.65 0.000777952 0.000722481 0.0653681 0.0607189 40 2249 23 6.95648e+06 188184 706193. 2443.58 9.50 0.343898 0.298658 26914 176310 -1 1948 24 2181 2903 293446 60806 4.18386 4.18386 -152.298 -4.18386 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0375576 0.0328295 78 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.77 vpr 63.73 MiB 0.05 7120 -1 -1 1 0.05 -1 -1 30600 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.8 MiB 1.50 890 14345 5510 6931 1904 63.7 MiB 0.13 0.00 3.74419 -138.408 -3.74419 3.74419 0.66 0.000778559 0.000723486 0.0602509 0.0559962 48 2618 24 6.95648e+06 361892 865456. 2994.66 2.38 0.21599 0.189423 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.26 0.13 0.17 -1 -1 0.26 0.0354481 0.0308888 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.97 vpr 63.36 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30664 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.6 MiB 0.97 685 10813 4185 5763 865 63.4 MiB 0.10 0.00 3.05815 -117.015 -3.05815 3.05815 0.67 0.000718417 0.000659877 0.0415913 0.0386653 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.26 0.201209 0.174623 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.25 0.08 0.19 -1 -1 0.25 0.0277721 0.0242484 69 65 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.12 vpr 63.51 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30600 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.38 684 10105 3894 4557 1654 63.5 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.66 0.000677441 0.000628577 0.0473566 0.0439737 36 2232 46 6.95648e+06 144757 648988. 2245.63 3.15 0.20973 0.1824 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276674 0.0240916 59 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 14.27 vpr 63.47 MiB 0.04 7056 -1 -1 1 0.05 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.6 MiB 0.69 949 12711 4087 6844 1780 63.5 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.66 0.00072159 0.000669844 0.0527315 0.0489987 40 2353 22 6.95648e+06 318465 706193. 2443.58 10.83 0.343695 0.29713 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0320439 0.027924 79 60 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.48 vpr 63.39 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.6 MiB 0.69 684 10156 4202 5354 600 63.4 MiB 0.09 0.00 4.24545 -126.653 -4.24545 4.24545 0.73 0.000662507 0.000615554 0.0445966 0.04149 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.05 0.200077 0.174752 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295948 0.02581 74 34 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.40 vpr 63.30 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.72 0.000646488 0.000600087 0.0415839 0.0386656 38 1982 33 6.95648e+06 173708 678818. 2348.85 2.94 0.182672 0.158582 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0291518 0.0253729 61 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.99 vpr 63.47 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.22 777 7669 3175 4304 190 63.5 MiB 0.08 0.00 3.0765 -113.072 -3.0765 3.0765 0.66 0.000692012 0.000642604 0.037267 0.0346309 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.16 0.186965 0.162546 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0310339 0.0270316 60 91 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 16.97 vpr 63.10 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 795 9448 3333 4743 1372 63.1 MiB 0.09 0.00 3.89245 -136.332 -3.89245 3.89245 0.66 0.000691261 0.000642715 0.0365182 0.0339892 50 2553 48 6.95648e+06 361892 902133. 3121.57 14.06 0.333722 0.287327 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.26 0.11 0.17 -1 -1 0.26 0.0308642 0.0269922 86 4 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 21.30 vpr 63.50 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.6 MiB 1.27 926 10495 2590 6894 1011 63.5 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000773045 0.000717616 0.042985 0.0399217 40 2962 40 6.95648e+06 390843 706193. 2443.58 17.24 0.388125 0.334748 26914 176310 -1 2636 23 2167 3633 463776 91732 4.56126 4.56126 -163.581 -4.56126 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0339955 0.029662 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.12 vpr 63.72 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30368 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.53 831 9336 3198 4890 1248 63.7 MiB 0.09 0.00 3.70819 -135.715 -3.70819 3.70819 0.66 0.000777656 0.000721072 0.0389944 0.0361987 46 2950 33 6.95648e+06 376368 828058. 2865.25 3.85 0.206838 0.17993 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0347155 0.0303553 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.67 vpr 63.58 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.02 822 13351 4683 6743 1925 63.6 MiB 0.13 0.00 3.75544 -130.593 -3.75544 3.75544 0.66 0.000772927 0.000714858 0.0540502 0.0502175 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.72 0.219065 0.191265 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.28 0.12 0.19 -1 -1 0.28 0.0346366 0.0302909 86 65 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.41 vpr 62.98 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.65 551 9064 3696 4990 378 63.0 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000622206 0.000578436 0.0385868 0.0359164 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.03 0.166571 0.144956 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0261525 0.0227576 62 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.81 vpr 63.54 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 751 12465 5336 6622 507 63.5 MiB 0.12 0.00 4.015 -133.992 -4.015 4.015 0.66 0.000755864 0.000680262 0.0619023 0.0574829 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.31 0.237494 0.207101 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.23 0.13 0.16 -1 -1 0.23 0.0448345 0.0388219 78 63 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.08 vpr 63.91 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.1 MiB 1.43 807 14351 4061 7900 2390 63.9 MiB 0.13 0.00 3.71619 -135.355 -3.71619 3.71619 0.69 0.000858692 0.000797229 0.0605001 0.0561588 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.78 0.249161 0.217249 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0372937 0.032416 88 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.65 vpr 63.70 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.92 718 14035 5965 7479 591 63.7 MiB 0.13 0.00 3.9948 -135.983 -3.9948 3.9948 0.67 0.000773686 0.00071551 0.0638168 0.0592364 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.83 0.235805 0.206275 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0303671 0.0265644 81 94 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.06 vpr 63.68 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.42 700 13668 5834 7221 613 63.7 MiB 0.15 0.00 3.27591 -109.838 -3.27591 3.27591 0.66 0.000755956 0.00070101 0.0751212 0.0697989 46 2600 45 6.95648e+06 260562 828058. 2865.25 2.85 0.25841 0.226917 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.034217 0.0297953 75 92 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 7.63 vpr 63.47 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30544 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.6 MiB 1.49 782 12628 3922 6830 1876 63.5 MiB 0.13 0.00 3.65989 -133.508 -3.65989 3.65989 0.57 0.000922507 0.000856314 0.0649009 0.0603194 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.43 0.22429 0.197631 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.26 0.15 0.12 -1 -1 0.26 0.0412986 0.0359143 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.30 vpr 63.49 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.07 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.65 0.000730764 0.000678505 0.0448402 0.0416658 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.59 0.198782 0.173061 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0310619 0.0270888 77 88 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.34 vpr 62.85 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.83 574 9219 3815 5040 364 62.9 MiB 0.08 0.00 2.94595 -112.182 -2.94595 2.94595 0.66 0.000622819 0.00057993 0.0393723 0.0367023 54 1709 44 6.95648e+06 144757 949917. 3286.91 8.76 0.340884 0.293818 29506 232905 -1 1314 20 1289 2001 164628 39075 3.22812 3.22812 -119.217 -3.22812 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0314778 0.0281022 61 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.99 vpr 63.57 MiB 0.04 7044 -1 -1 1 0.05 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 3.20 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.66 0.00077828 0.000721461 0.0689048 0.0639232 54 2315 29 6.95648e+06 347416 949917. 3286.91 2.84 0.232743 0.204299 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0345556 0.0302283 84 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.67 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 800 13117 5732 6986 399 63.7 MiB 0.13 0.00 3.79019 -142.199 -3.79019 3.79019 0.65 0.000776593 0.000720287 0.0635771 0.0588791 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.11 0.246084 0.214538 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0321258 0.0286356 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.91 vpr 63.16 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 575 11609 4562 5941 1106 63.2 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.65 0.000636295 0.000591527 0.0498343 0.0463619 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.16 0.190372 0.166014 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.23 0.07 0.18 -1 -1 0.23 0.027248 0.0238209 60 55 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.89 vpr 62.87 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30416 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.27 835 9529 3959 5371 199 62.9 MiB 0.08 0.00 3.0815 -119.168 -3.0815 3.0815 0.62 0.000600068 0.000558461 0.0391596 0.0364964 38 2078 34 6.95648e+06 159232 678818. 2348.85 2.05 0.172971 0.150865 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.25 0.09 0.14 -1 -1 0.25 0.0287636 0.025417 63 4 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.05 vpr 63.63 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.08 782 14483 5692 6794 1997 63.6 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000745533 0.000691208 0.0628421 0.0583984 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.29 0.218849 0.191941 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0276631 0.0243146 78 59 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.20 vpr 63.71 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 793 11474 4768 6294 412 63.7 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.66 0.000782064 0.000721097 0.0529644 0.0492692 40 2890 43 6.95648e+06 260562 706193. 2443.58 5.53 0.231613 0.202155 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0290692 0.0257096 78 88 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.96 vpr 63.70 MiB 0.07 7084 -1 -1 1 0.04 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.40 1152 4375 861 3334 180 63.7 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.72 0.000791395 0.000734941 0.0199656 0.0186126 46 3119 32 6.95648e+06 390843 828058. 2865.25 4.65 0.199845 0.173553 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0326318 0.028675 100 3 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.54 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30476 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.97 698 14528 6104 7488 936 63.5 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.66 0.000717091 0.000666075 0.063989 0.0594953 44 2314 27 6.95648e+06 260562 787024. 2723.27 2.08 0.21557 0.188858 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0338229 0.0294278 77 59 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.86 vpr 62.87 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.69 465 10459 4157 5359 943 62.9 MiB 0.08 0.00 3.15776 -95.8334 -3.15776 3.15776 0.67 0.000444349 0.00040769 0.0367995 0.0340578 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.59 0.135008 0.117575 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.23 0.05 0.13 -1 -1 0.23 0.0210303 0.0183744 57 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.12 vpr 63.88 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 30628 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.72 956 13513 4288 6425 2800 63.9 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.74 0.000960914 0.000882125 0.074344 0.0690592 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.45 0.288561 0.251752 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.28 0.12 0.15 -1 -1 0.28 0.0407435 0.0354206 103 95 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.85 vpr 63.85 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 3.45 899 8716 2535 4990 1191 63.8 MiB 0.10 0.00 4.57784 -152.287 -4.57784 4.57784 0.66 0.00083435 0.000775614 0.048477 0.0451101 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.54 0.215211 0.18713 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0293448 0.0259072 79 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.98 vpr 63.32 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.4 MiB 2.74 500 11389 4353 5738 1298 63.3 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.67 0.000685998 0.000637011 0.0531175 0.0493546 42 2142 50 6.95648e+06 144757 744469. 2576.02 2.59 0.221529 0.192768 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.029 0.0252441 58 89 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.54 vpr 63.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.33 819 12938 5293 7361 284 63.7 MiB 0.12 0.00 4.12326 -140.658 -4.12326 4.12326 0.66 0.000824745 0.000755572 0.0479804 0.044275 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.40 0.162775 0.142561 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312379 0.027321 83 34 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.81 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.0 MiB 0.83 852 12560 4728 5964 1868 63.8 MiB 0.12 0.00 4.1192 -140.393 -4.1192 4.1192 0.68 0.000851021 0.000790612 0.059641 0.0554474 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.44 0.270564 0.23535 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0361565 0.0314477 95 64 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.97 vpr 63.57 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30408 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.90 739 10762 4429 5782 551 63.6 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.65 0.000727706 0.000676204 0.0461019 0.0428211 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.33 0.195197 0.170237 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0316708 0.0276653 78 61 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.40 vpr 63.73 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.50 907 15848 6161 8045 1642 63.7 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.66 0.000779286 0.000722778 0.0579356 0.0537598 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.06 0.232932 0.203765 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.08 0.18 -1 -1 0.35 0.0182665 0.0162122 91 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.83 vpr 63.52 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.9 MiB 0.51 794 15215 5485 7366 2364 63.5 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.66 0.00077615 0.00071411 0.0572911 0.0529955 38 2664 32 6.95648e+06 448746 678818. 2348.85 3.61 0.220214 0.191983 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0339131 0.0295389 90 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.41 vpr 62.78 MiB 0.04 6788 -1 -1 1 0.04 -1 -1 30432 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.31 577 8599 3570 4706 323 62.8 MiB 0.05 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000600538 0.000558018 0.0212484 0.0196412 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.47 0.155108 0.133252 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0226184 0.019919 56 34 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.42 vpr 63.32 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.78 584 9839 4132 5456 251 63.3 MiB 0.09 0.00 2.9814 -102.92 -2.9814 2.9814 0.65 0.000657456 0.000610701 0.0446546 0.041499 42 1955 38 6.95648e+06 144757 744469. 2576.02 1.97 0.188135 0.163742 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.24 0.07 0.18 -1 -1 0.24 0.0251662 0.0220192 58 82 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 5.80 vpr 63.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.35 743 12331 4128 5906 2297 63.6 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.65 0.000723478 0.000671986 0.0463322 0.0430797 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.66 0.215962 0.187934 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.29 0.09 0.13 -1 -1 0.29 0.0305602 0.02668 86 34 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.33 vpr 62.86 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.3 MiB 1.09 494 12399 5297 6440 662 62.9 MiB 0.12 0.00 3.26295 -100.502 -3.26295 3.26295 0.65 0.00061651 0.000573571 0.0618932 0.0575124 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.49 0.196932 0.17265 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.25 0.08 0.15 -1 -1 0.25 0.0266303 0.0231931 59 56 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.65 vpr 62.88 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30280 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.00 698 10149 3910 5225 1014 62.9 MiB 0.09 0.00 3.05815 -118.306 -3.05815 3.05815 0.66 0.000658698 0.000612929 0.044926 0.0417695 38 2191 39 6.95648e+06 144757 678818. 2348.85 2.99 0.179291 0.156211 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0269985 0.0235395 61 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.42 vpr 63.61 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30392 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.95 717 11607 3761 5813 2033 63.6 MiB 0.11 0.00 3.1175 -113.433 -3.1175 3.1175 0.66 0.000749416 0.000695965 0.0489661 0.0454743 40 2046 32 6.95648e+06 347416 706193. 2443.58 6.64 0.355485 0.306873 26914 176310 -1 1703 21 1731 2236 195586 47682 3.41277 3.41277 -124.646 -3.41277 0 0 926341. 3205.33 0.25 0.09 0.17 -1 -1 0.25 0.0312178 0.0273329 82 64 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.48 vpr 63.02 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30352 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 2.06 682 10459 3058 6921 480 63.0 MiB 0.10 0.00 3.13575 -104.344 -3.13575 3.13575 0.66 0.000659561 0.000614985 0.04815 0.0448486 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.69 0.188081 0.163936 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0277792 0.0241797 57 55 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.54 vpr 63.54 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.7 MiB 1.41 710 12323 5117 6727 479 63.5 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.71 0.000739018 0.000686485 0.053241 0.0494478 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.29 0.206655 0.18079 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0306844 0.0268187 76 65 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.57 vpr 63.74 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.1 MiB 1.36 717 15298 5325 7460 2513 63.7 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.65 0.00115133 0.0010924 0.0650913 0.0604416 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.29 0.242246 0.211684 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0328698 0.0285708 85 93 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.29 vpr 63.25 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.78 564 10149 3066 5426 1657 63.3 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.65 0.000664899 0.000617401 0.0489119 0.0455236 44 2002 28 6.95648e+06 144757 787024. 2723.27 1.82 0.182272 0.159285 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0308609 0.0268999 61 61 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.89 vpr 63.18 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30060 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.01 611 8289 3413 4626 250 63.2 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.66 0.000686792 0.000638598 0.0395605 0.0368441 52 1978 31 6.95648e+06 144757 926341. 3205.33 2.11 0.185806 0.161943 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.0298204 0.0262716 63 63 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.00 vpr 63.62 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 0.86 951 8283 1857 5834 592 63.6 MiB 0.09 0.00 3.78219 -143.123 -3.78219 3.78219 0.66 0.000785399 0.000729796 0.0333155 0.0309581 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.39 0.199641 0.173447 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.23 0.14 0.16 -1 -1 0.23 0.039667 0.0345172 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.61 vpr 63.36 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.90 739 8336 2662 4258 1416 63.4 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.66 0.000708359 0.000658345 0.0369582 0.0343852 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.03 0.209509 0.181675 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294082 0.0257591 77 62 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.46 vpr 63.88 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30796 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.52 819 16473 6066 7302 3105 63.9 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.69 0.000867384 0.000804792 0.0716372 0.0664977 48 2605 47 6.95648e+06 419795 865456. 2994.66 4.95 0.284041 0.248003 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.27 0.15 0.19 -1 -1 0.27 0.0461677 0.0397452 89 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.15 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30360 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.2 MiB 1.27 588 9529 3953 5280 296 62.8 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.69 0.00057124 0.000540393 0.03761 0.0350133 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.21 0.153644 0.133896 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330821 0.0288432 58 4 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.77 vpr 63.91 MiB 0.06 7036 -1 -1 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.90 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.66 0.000788405 0.000730991 0.0567411 0.0524797 50 2285 32 6.95648e+06 332941 902133. 3121.57 3.04 0.222384 0.194103 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0332403 0.0290069 81 92 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.28 vpr 63.29 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30172 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 613 11854 5235 6332 287 63.3 MiB 0.10 0.00 2.96105 -113.67 -2.96105 2.96105 0.66 0.000546313 0.000499437 0.056373 0.0522847 40 2066 46 6.95648e+06 144757 706193. 2443.58 2.80 0.225997 0.196887 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.23 0.10 0.18 -1 -1 0.23 0.0318516 0.0277945 61 96 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.86 vpr 63.64 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 1.03 784 11983 4223 5778 1982 63.6 MiB 0.11 0.00 3.13882 -116.487 -3.13882 3.13882 0.66 0.000772501 0.000716438 0.050022 0.0464075 48 2212 28 6.95648e+06 347416 865456. 2994.66 1.98 0.21085 0.183953 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.26 0.09 0.19 -1 -1 0.26 0.0337236 0.0294333 84 65 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.98 vpr 63.69 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30952 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.3 MiB 1.29 961 18301 6218 9454 2629 63.7 MiB 0.17 0.00 4.52824 -160.34 -4.52824 4.52824 0.67 0.000919043 0.000852124 0.0791877 0.0735032 46 3150 41 6.95648e+06 477698 828058. 2865.25 4.69 0.292937 0.256451 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0390305 0.0337889 104 96 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.01 vpr 62.56 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 30304 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.43 395 8267 2975 4043 1249 62.6 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.67 0.000636996 0.000592323 0.0362019 0.0336536 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.06 0.159408 0.137956 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0224677 0.0194797 45 56 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.87 vpr 62.81 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.61 505 9994 3801 4923 1270 62.8 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.66 0.000616985 0.000574089 0.0419172 0.0390189 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.65 0.166391 0.144988 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.23 0.05 0.15 -1 -1 0.23 0.0156791 0.013824 58 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.06 vpr 63.39 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.23 594 9219 3126 4706 1387 63.4 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.68 0.000648819 0.000602602 0.0442474 0.0411938 52 1888 25 6.95648e+06 144757 926341. 3205.33 2.02 0.176272 0.154075 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0302459 0.0263813 65 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 10.04 vpr 62.70 MiB 0.07 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.49 415 9310 3976 4598 736 62.7 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.68 0.000630908 0.000587555 0.0406688 0.0378903 40 1641 47 6.95648e+06 217135 706193. 2443.58 6.79 0.290968 0.249137 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0227539 0.0198202 56 34 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.74 vpr 63.91 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.05 849 10835 4559 6029 247 63.9 MiB 0.11 0.00 3.79924 -134.385 -3.79924 3.79924 0.57 0.00080774 0.000748651 0.0564517 0.0523913 44 3443 36 6.95648e+06 188184 787024. 2723.27 3.99 0.232864 0.202839 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.0356805 0.0310493 77 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.66 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 0.87 742 12512 4241 5927 2344 63.7 MiB 0.13 0.00 3.1116 -112.527 -3.1116 3.1116 0.74 0.000781147 0.000724011 0.0582048 0.0539414 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.57 0.243824 0.212495 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0402471 0.0349383 87 94 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.80 vpr 63.40 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.8 MiB 0.57 1062 15584 5717 7278 2589 63.4 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.66 0.00081645 0.000758503 0.0707713 0.0656883 50 2979 31 6.99608e+06 323745 902133. 3121.57 2.38 0.242973 0.212833 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.30 0.09 0.22 -1 -1 0.30 0.0331302 0.0291028 130 96 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.69 vpr 63.59 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1018 13610 5732 7207 671 63.6 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.65 0.000761825 0.000706997 0.0612353 0.0568528 54 3118 36 6.99608e+06 294314 949917. 3286.91 2.47 0.228463 0.199738 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.29 0.10 0.21 -1 -1 0.29 0.0313994 0.0275342 117 91 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.49 vpr 63.60 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1040 13610 5701 7488 421 63.6 MiB 0.13 0.00 3.59279 -128.627 -3.59279 3.59279 0.65 0.000760172 0.000707191 0.060149 0.055907 40 3318 43 6.99608e+06 264882 706193. 2443.58 13.89 0.370632 0.320814 26914 176310 -1 2702 23 2033 2424 265080 55517 4.25296 4.25296 -147.611 -4.25296 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0329514 0.028739 106 65 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.35 vpr 63.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.66 806 14444 6101 7602 741 63.0 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.68 0.000686037 0.00063742 0.0615305 0.0572096 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.89 0.201639 0.176899 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0296071 0.0258638 89 34 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.26 vpr 63.38 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.52 871 12416 4669 6393 1354 63.4 MiB 0.13 0.00 4.27644 -154.345 -4.27644 4.27644 0.67 0.000744166 0.000691222 0.0594412 0.0552183 56 2565 50 6.99608e+06 220735 973134. 3367.25 2.76 0.245215 0.214568 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.30 0.12 0.20 -1 -1 0.30 0.0366584 0.0321185 93 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.97 vpr 63.56 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1298 16069 5589 8587 1893 63.6 MiB 0.16 0.00 3.60699 -134.626 -3.60699 3.60699 0.68 0.0007667 0.000711394 0.0640642 0.0594511 48 3162 26 6.99608e+06 441471 865456. 2994.66 2.49 0.218217 0.191072 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0342925 0.0299545 117 64 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.79 vpr 62.67 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30592 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.08 0.00 3.30124 -103.988 -3.30124 3.30124 0.65 0.000677317 0.00063024 0.0365495 0.034047 44 2016 40 6.99608e+06 220735 787024. 2723.27 1.94 0.166544 0.144341 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0248881 0.0216495 68 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.52 vpr 63.15 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.45 708 9368 3795 5080 493 63.1 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.66 0.00066735 0.000620804 0.0392732 0.0365734 46 2433 35 6.99608e+06 250167 828058. 2865.25 4.21 0.190732 0.166437 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.26 0.12 0.18 -1 -1 0.26 0.0350692 0.0304863 77 4 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.00 vpr 63.18 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.5 MiB 2.66 865 11366 4429 5807 1130 63.2 MiB 0.11 0.00 3.3156 -116.953 -3.3156 3.3156 0.66 0.000665616 0.000618279 0.0496394 0.046157 44 2856 40 6.99608e+06 220735 787024. 2723.27 2.60 0.201046 0.175342 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0311239 0.0271082 96 85 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.58 vpr 63.11 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.1 MiB 0.67 668 10346 4043 5155 1148 63.1 MiB 0.10 0.00 3.58059 -133.895 -3.58059 3.58059 0.66 0.000646155 0.000601029 0.0437576 0.0407396 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.01 0.167608 0.14679 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0295843 0.0259148 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.14 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.4 MiB 2.22 858 10835 4264 5113 1458 63.1 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.65 0.000649061 0.000603224 0.0466001 0.0433166 38 2753 35 6.99608e+06 220735 678818. 2348.85 3.54 0.193055 0.168216 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0284136 0.0247374 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.00 vpr 63.24 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1078 12030 4277 6214 1539 63.2 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.61 0.000658693 0.00061202 0.0505284 0.0469848 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.64 0.20739 0.181113 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303149 0.0263846 91 65 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.15 vpr 63.55 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.66 0.00074917 0.000695745 0.0341931 0.0318067 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.57 0.196004 0.170519 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0345373 0.0301544 101 58 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.04 vpr 63.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.1 MiB 0.80 1134 14123 4441 7724 1958 63.8 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.66 0.000783937 0.000728008 0.0644521 0.0598661 48 3127 38 6.99608e+06 279598 865456. 2994.66 3.31 0.241495 0.211441 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0386137 0.0337423 112 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.88 vpr 62.78 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30648 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.2 MiB 2.12 572 11293 4723 5996 574 62.8 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.66 0.000575224 0.000534833 0.0429313 0.0399596 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.20 0.170613 0.14835 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0248046 0.0216046 67 29 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.62 vpr 63.60 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30584 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 1.83 1040 13324 4763 6768 1793 63.6 MiB 0.08 0.00 3.68279 -132.173 -3.68279 3.68279 0.67 0.000406344 0.000373317 0.0316411 0.0291207 50 2876 28 6.99608e+06 235451 902133. 3121.57 2.02 0.180162 0.156062 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0478658 0.0426089 106 63 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.37 vpr 63.41 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.15 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.66 0.00073941 0.000686582 0.0317383 0.029521 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.39 0.182341 0.158497 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0297174 0.0259998 99 57 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.30 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 871 13856 5887 7726 243 63.3 MiB 0.13 0.00 3.39034 -128.572 -3.39034 3.39034 0.65 0.000680821 0.000632571 0.0593126 0.0551658 44 3195 31 6.99608e+06 206020 787024. 2723.27 2.01 0.203122 0.177999 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0278798 0.0244046 91 65 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.38 vpr 62.42 MiB 0.04 6740 -1 -1 1 0.03 -1 -1 30132 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.8 MiB 2.09 536 9041 3932 4796 313 62.4 MiB 0.04 0.00 2.34646 -88.6787 -2.34646 2.34646 0.63 0.000224508 0.000206402 0.0147198 0.0135595 36 1652 38 6.99608e+06 161872 648988. 2245.63 1.79 0.127571 0.109242 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.21 0.05 0.17 -1 -1 0.21 0.0202662 0.017624 56 34 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.87 vpr 63.20 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1018 11532 3380 6660 1492 63.2 MiB 0.10 0.00 3.58639 -133.629 -3.58639 3.58639 0.66 0.000666235 0.00061958 0.0482517 0.044876 40 2527 22 6.99608e+06 220735 706193. 2443.58 2.08 0.178475 0.156058 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0276308 0.0241249 91 64 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.42 MiB 0.02 7044 -1 -1 1 0.05 -1 -1 30348 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1089 12759 4547 6573 1639 63.4 MiB 0.11 0.00 4.04748 -146.851 -4.04748 4.04748 0.68 0.000724068 0.000672777 0.0513131 0.0476978 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.10 0.204908 0.179098 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0334569 0.0293014 97 34 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.41 vpr 63.62 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 31008 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.15 1280 15206 4884 7262 3060 63.6 MiB 0.15 0.00 4.01908 -141.768 -4.01908 4.01908 0.65 0.000842705 0.000783788 0.0713301 0.0663243 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.41 0.242815 0.212535 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0417096 0.0362386 138 124 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.74 vpr 62.41 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30628 -1 -1 15 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.9 MiB 0.70 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.69 0.000441244 0.000410075 0.0224926 0.0209252 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.45 0.119014 0.102823 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0154127 0.0135239 52 30 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.12 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 698 9036 3669 4978 389 63.1 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.68 0.000688351 0.000639785 0.0634912 0.0591259 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 1.96 0.198255 0.174522 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0360682 0.0319935 75 3 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.11 vpr 62.21 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.23 736 9906 3603 5031 1272 62.2 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.67 0.000475922 0.00044278 0.0327309 0.0304482 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.39 0.119201 0.104252 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0209472 0.0183284 44 3 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.48 vpr 63.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.9 MiB 1.13 836 12681 5269 6945 467 63.7 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.66 0.000739996 0.000687363 0.0563669 0.0524048 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.46 0.230536 0.202045 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0329114 0.0287859 95 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.33 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.3 MiB 0.11 0.00 2.93295 -116.62 -2.93295 2.93295 0.65 0.00069251 0.000642787 0.0506511 0.0470429 40 2476 21 6.99608e+06 412039 706193. 2443.58 1.91 0.186871 0.163521 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.0285983 0.0250648 87 3 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.57 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.6 MiB 0.15 0.00 3.82425 -139.818 -3.82425 3.82425 0.65 0.000890744 0.000834222 0.0660261 0.0613206 46 3235 48 6.99608e+06 309029 828058. 2865.25 2.99 0.252722 0.221135 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338563 0.0298086 115 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.25 vpr 62.84 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.2 MiB 1.10 701 9397 3869 5271 257 62.8 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.65 0.000615013 0.000571898 0.0388789 0.0361651 40 2056 26 6.99608e+06 161872 706193. 2443.58 2.50 0.16791 0.146054 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0260136 0.0227245 72 34 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.32 vpr 62.76 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.1 MiB 7.15 650 7975 2399 4401 1175 62.8 MiB 0.04 0.00 3.55679 -118.022 -3.55679 3.55679 0.65 0.000276819 0.000254598 0.0155191 0.0143283 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.36 0.167484 0.143808 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0321291 0.0283024 73 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 62.77 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 739 7975 3247 4371 357 62.8 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.65 0.000585019 0.000544306 0.0406481 0.0377877 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.40 0.173212 0.150756 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0235827 0.020533 72 34 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.97 vpr 62.75 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.21 696 7204 2957 4121 126 62.8 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.70 0.000613359 0.000570273 0.0306445 0.0285266 42 2358 35 6.99608e+06 147157 744469. 2576.02 1.98 0.16356 0.141901 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.023784 0.0208085 64 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.00 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.3 MiB 0.66 709 9540 3934 5278 328 62.7 MiB 0.08 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000627913 0.000583827 0.0386868 0.0359895 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.58 0.170633 0.148816 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.26 0.07 0.18 -1 -1 0.26 0.0272535 0.0238171 77 34 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.93 vpr 63.19 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 930 10835 4554 5858 423 63.2 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.70 0.000631484 0.000587347 0.0441776 0.0410564 36 2556 47 6.99608e+06 235451 648988. 2245.63 3.55 0.193263 0.168078 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.21 0.07 0.19 -1 -1 0.21 0.0253984 0.0221193 86 61 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.43 vpr 63.90 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30564 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.2 MiB 0.94 1138 15273 6065 7495 1713 63.9 MiB 0.16 0.00 3.90815 -143.373 -3.90815 3.90815 0.65 0.000830365 0.000771992 0.0730857 0.0679415 46 3798 44 6.99608e+06 294314 828058. 2865.25 4.56 0.265474 0.23183 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.11 0.18 -1 -1 0.25 0.0365603 0.0319042 106 29 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 6.21 vpr 63.58 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.66 0.000771363 0.000716365 0.0496059 0.0461193 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.30 0.202718 0.17718 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.33 0.10 0.22 -1 -1 0.33 0.0338944 0.0296167 110 65 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 63.35 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.80 1070 8867 2185 5933 749 63.4 MiB 0.08 0.00 3.49385 -125.494 -3.49385 3.49385 0.66 0.000681264 0.000633276 0.0391236 0.0364011 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.50 0.189359 0.164516 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0288946 0.0251809 99 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.66 vpr 63.54 MiB 0.08 7188 -1 -1 1 0.05 -1 -1 30552 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1182 9006 2249 6265 492 63.5 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.65 0.000756388 0.00070284 0.0426239 0.0396379 40 2955 30 6.99608e+06 264882 706193. 2443.58 2.09 0.201157 0.175041 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.23 0.10 0.17 -1 -1 0.23 0.0301862 0.0265043 105 64 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.05 vpr 63.59 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30508 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.65 0.000843255 0.000783379 0.0827718 0.0768699 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.23 0.248954 0.218231 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.31 0.13 0.19 -1 -1 0.31 0.038675 0.0336927 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.05 vpr 63.66 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 24.9 MiB 2.88 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.65 0.000780689 0.000724845 0.0497533 0.0462082 44 3431 27 6.99608e+06 279598 787024. 2723.27 2.36 0.210763 0.184035 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0450943 0.039127 117 90 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.84 vpr 63.75 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.22 1059 13763 5785 7510 468 63.8 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.66 0.000750495 0.000696652 0.0610427 0.0566747 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.84 0.23169 0.202647 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0325575 0.0284389 107 64 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.55 vpr 63.83 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30744 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1271 6556 1686 3783 1087 63.8 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.70 0.000767266 0.000712809 0.0317367 0.0295351 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.99 0.215272 0.186404 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.23 0.15 0.10 -1 -1 0.23 0.0391876 0.0341166 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.70 vpr 63.61 MiB 0.06 7276 -1 -1 1 0.04 -1 -1 30624 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.1 MiB 2.13 1530 16529 5778 8459 2292 63.6 MiB 0.18 0.00 4.81093 -174.639 -4.81093 4.81093 0.67 0.000927381 0.000861553 0.0849029 0.0789041 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.52 0.267808 0.235147 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.31 0.15 0.17 -1 -1 0.31 0.0436924 0.0380498 139 96 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.32 vpr 63.10 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.81 802 9996 3771 4383 1842 63.1 MiB 0.10 0.00 3.1395 -118.304 -3.1395 3.1395 0.68 0.000629305 0.000585174 0.0453582 0.0422303 40 1998 21 6.99608e+06 191304 706193. 2443.58 6.82 0.293299 0.252879 26914 176310 -1 1846 22 1556 1917 164650 33970 3.16707 3.16707 -125.758 -3.16707 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273871 0.0239132 75 34 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.97 vpr 63.53 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1237 14606 4845 8003 1758 63.5 MiB 0.14 0.00 4.54014 -162.571 -4.54014 4.54014 0.66 0.000768294 0.000713832 0.0670838 0.062325 44 3549 35 6.99608e+06 264882 787024. 2723.27 3.59 0.238086 0.208857 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0333396 0.029088 106 64 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.99 vpr 63.62 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1279 13077 3808 7089 2180 63.6 MiB 0.13 0.00 3.54953 -133.609 -3.54953 3.54953 0.65 0.000763955 0.000709996 0.0576479 0.0536177 46 3226 21 6.99608e+06 294314 828058. 2865.25 2.19 0.207743 0.182355 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0302954 0.0265118 108 63 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.58 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.74 797 9368 3826 5299 243 63.0 MiB 0.10 0.00 3.54729 -133.832 -3.54729 3.54729 0.66 0.000734371 0.000675093 0.0437773 0.0407151 46 2734 24 6.99608e+06 191304 828058. 2865.25 3.14 0.190573 0.166758 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0292219 0.0255247 77 3 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.64 vpr 63.71 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.65 0.000786047 0.000729561 0.0505816 0.0469466 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.54 0.232581 0.202769 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.033205 0.0290585 120 96 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.92 vpr 63.49 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 24.8 MiB 0.97 1139 12528 3436 7246 1846 63.5 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.70 0.000772392 0.000716305 0.0554568 0.0515376 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.23 0.229341 0.20103 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.03313 0.0289493 106 61 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.53 vpr 63.57 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1314 14431 4781 7561 2089 63.6 MiB 0.16 0.00 3.61639 -141.899 -3.61639 3.61639 0.69 0.000799338 0.000742896 0.0736985 0.0682933 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.82 0.250698 0.219817 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.33 0.11 0.17 -1 -1 0.33 0.0353718 0.0309905 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.19 vpr 63.42 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 813 11432 3614 6147 1671 63.4 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.67 0.000738821 0.000683383 0.0518395 0.0481751 48 3063 38 6.99608e+06 235451 865456. 2994.66 3.56 0.220954 0.193598 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.26 0.12 0.14 -1 -1 0.26 0.0331824 0.0290848 94 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 16.68 vpr 63.61 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.81 930 14500 5516 6956 2028 63.6 MiB 0.14 0.00 3.81585 -138.808 -3.81585 3.81585 0.69 0.00076894 0.000713957 0.0659461 0.0612289 44 3517 47 6.99608e+06 264882 787024. 2723.27 13.05 0.408475 0.354148 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0396963 0.0345748 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.86 vpr 63.58 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.3 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.65 0.000831533 0.000772396 0.065657 0.0608105 44 3778 32 6.99608e+06 323745 787024. 2723.27 2.57 0.240097 0.209158 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.27 0.09 0.18 -1 -1 0.27 0.0329575 0.0287279 132 122 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.17 vpr 63.52 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1318 15273 5215 8174 1884 63.5 MiB 0.15 0.00 3.73195 -141.182 -3.73195 3.73195 0.67 0.000809554 0.000751409 0.0700525 0.0650309 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.20 0.242775 0.21262 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.33 0.17 0.17 -1 -1 0.33 0.0416189 0.0364636 126 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.89 vpr 63.27 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 0.49 921 12528 4814 6023 1691 63.3 MiB 0.11 0.00 2.98795 -120.412 -2.98795 2.98795 0.65 0.000642292 0.000597314 0.0508079 0.047296 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.60 0.179009 0.156723 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0271664 0.0237019 80 34 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.46 vpr 63.38 MiB 0.01 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.7 MiB 0.74 1095 11776 4100 5415 2261 63.4 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.66 0.00070677 0.00065603 0.0512866 0.0476907 46 2887 24 6.99608e+06 235451 828058. 2865.25 2.88 0.199073 0.173913 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.09 0.18 -1 -1 0.33 0.0268674 0.023867 108 94 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.59 vpr 63.56 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.1 MiB 0.85 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.67 0.000884155 0.000821369 0.0787555 0.073228 54 3744 47 6.99608e+06 294314 949917. 3286.91 2.66 0.299433 0.262793 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.28 0.14 0.23 -1 -1 0.28 0.0435504 0.0379064 126 65 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.82 vpr 63.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1100 10916 2969 6188 1759 63.4 MiB 0.11 0.00 3.58059 -138.842 -3.58059 3.58059 0.65 0.000728979 0.000676939 0.0501428 0.0466303 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.52 0.216485 0.189154 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0324451 0.0283235 93 34 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.62 vpr 62.90 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30444 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.64 716 11804 3687 5992 2125 62.9 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.65 0.000615556 0.000572246 0.0405868 0.0377396 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.30 0.183389 0.159204 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0295224 0.0256409 80 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.10 vpr 63.88 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 30976 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.83 1504 15883 5797 7858 2228 63.9 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.65 0.000951193 0.000883193 0.0812633 0.0754952 56 3670 24 6.99608e+06 353176 973134. 3367.25 2.25 0.279855 0.24514 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.29 0.13 0.23 -1 -1 0.29 0.0411109 0.0359127 159 127 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.85 vpr 63.41 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 938 15044 6550 8115 379 63.4 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.65 0.000742206 0.000689236 0.0680038 0.0632156 48 2674 27 6.99608e+06 235451 865456. 2994.66 2.28 0.223265 0.196109 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0318091 0.0278564 92 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.42 vpr 62.76 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30312 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.28 660 12763 5275 7138 350 62.8 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.65 0.000617122 0.000573409 0.0425442 0.0395559 46 2129 35 6.99608e+06 353176 828058. 2865.25 2.43 0.175354 0.152889 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0277707 0.0241535 70 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.92 vpr 63.90 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30796 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 1143 13432 5563 7207 662 63.9 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.68 0.000854627 0.00079476 0.0680384 0.0632746 46 4011 41 6.99608e+06 264882 828058. 2865.25 5.32 0.266644 0.233091 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0370189 0.032616 112 34 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.44 vpr 62.75 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30396 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.30 625 10614 4416 5947 251 62.8 MiB 0.09 0.00 2.85145 -111.794 -2.85145 2.85145 0.66 0.000607625 0.000564445 0.0440693 0.0409427 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.183854 0.160152 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0275761 0.0240165 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.65 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.2 MiB 0.65 755 9857 4076 5498 283 62.7 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.65 0.000616739 0.000573488 0.0401466 0.0373486 44 2377 21 6.99608e+06 220735 787024. 2723.27 1.93 0.160575 0.139984 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0264088 0.023037 74 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.69 vpr 63.43 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 1003 15481 6003 6865 2613 63.4 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.66 0.00074583 0.00069244 0.0703618 0.0653279 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.24 0.234888 0.20583 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342207 0.0298524 113 88 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.34 vpr 63.61 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30744 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1068 14144 5407 6800 1937 63.6 MiB 0.13 0.00 4.29664 -157.784 -4.29664 4.29664 0.68 0.000769772 0.000714192 0.0640171 0.0594557 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.50 0.226928 0.199222 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0346218 0.0302876 109 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.23 vpr 63.69 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.00 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.66 0.000772844 0.000717753 0.0326154 0.0303242 44 3666 26 6.99608e+06 264882 787024. 2723.27 2.40 0.193254 0.168014 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0331066 0.0289454 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.60 vpr 63.33 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.8 MiB 0.64 792 12585 5306 6906 373 63.3 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.71 0.000685268 0.000636397 0.0535938 0.0498004 46 2594 31 6.99608e+06 220735 828058. 2865.25 3.18 0.197676 0.172267 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0307413 0.0268935 92 65 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.40 vpr 63.16 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.5 MiB 2.28 885 11260 4668 6241 351 63.2 MiB 0.09 0.00 3.46644 -123.995 -3.46644 3.46644 0.67 0.000531088 0.000487088 0.0385122 0.0353721 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.49 0.187786 0.162467 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.24 0.06 0.11 -1 -1 0.24 0.0210685 0.0185169 102 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.98 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.13 904 12506 5230 6653 623 63.6 MiB 0.13 0.00 3.42074 -117.96 -3.42074 3.42074 0.66 0.000732263 0.000679824 0.059686 0.0554151 44 3198 37 6.99608e+06 279598 787024. 2723.27 2.97 0.220827 0.193044 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.30 0.09 0.18 -1 -1 0.30 0.0314174 0.0274196 101 60 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.37 vpr 63.33 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 30572 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 824 9872 4064 5274 534 63.3 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.65 0.000666267 0.000619411 0.0420186 0.0391114 44 2539 27 6.99608e+06 264882 787024. 2723.27 2.00 0.185433 0.161918 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.031359 0.0273607 87 34 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.31 vpr 63.27 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30100 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.66 0.000652314 0.000606298 0.0448768 0.041732 44 2874 44 6.99608e+06 220735 787024. 2723.27 2.75 0.197218 0.171306 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0308294 0.0271557 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.30 vpr 63.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.63 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.65 0.000695151 0.000645565 0.054539 0.0506452 46 3110 45 6.99608e+06 220735 828058. 2865.25 2.90 0.202049 0.176759 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0298784 0.0260276 104 91 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.92 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.14 808 15688 5217 8110 2361 63.0 MiB 0.14 0.00 3.76925 -134.079 -3.76925 3.76925 0.66 0.000695669 0.000646679 0.059035 0.0548849 46 3039 46 6.99608e+06 367892 828058. 2865.25 3.95 0.228217 0.199962 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0298464 0.0260472 86 4 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.27 vpr 63.50 MiB 0.05 7092 -1 -1 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.68 1209 11281 3120 7720 441 63.5 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.67 0.000782407 0.00072692 0.052718 0.0489263 40 3750 26 6.99608e+06 250167 706193. 2443.58 20.65 0.377919 0.327226 26914 176310 -1 3109 32 2987 3961 695507 232571 4.80515 4.80515 -184.309 -4.80515 0 0 926341. 3205.33 0.23 0.21 0.15 -1 -1 0.23 0.0452283 0.0392673 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.46 vpr 63.55 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.8 MiB 0.59 1142 12364 5175 6807 382 63.5 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.67 0.000780871 0.000725092 0.0576382 0.0535415 54 3283 29 6.99608e+06 264882 949917. 3286.91 2.94 0.221072 0.19353 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.31 0.11 0.19 -1 -1 0.31 0.0317002 0.0278034 108 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.05 vpr 63.58 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1089 13788 4649 7550 1589 63.6 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.67 0.000786922 0.0007304 0.0624545 0.0580102 44 3953 47 6.99608e+06 264882 787024. 2723.27 4.55 0.248508 0.217291 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.25 0.10 0.20 -1 -1 0.25 0.0320005 0.0279905 107 65 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.83 vpr 62.93 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.10 0.00 3.58339 -124.571 -3.58339 3.58339 0.66 0.000618908 0.000575343 0.0500648 0.0465097 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.35 0.188266 0.164147 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0251551 0.0219356 76 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.24 vpr 63.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1070 13152 5486 7187 479 63.6 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.69 0.000737267 0.000684368 0.0598965 0.0556801 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.21 0.222052 0.194536 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293912 0.0257568 105 63 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.54 vpr 63.71 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1372 11615 4190 5568 1857 63.7 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.67 0.000847355 0.000786429 0.0548038 0.0508955 46 3391 25 6.99608e+06 323745 828058. 2865.25 2.93 0.230589 0.201174 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0388414 0.0337902 139 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.04 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.04 -1 -1 30360 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1101 12733 5285 6817 631 63.3 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.65 0.000792562 0.00072893 0.0570857 0.0529784 50 3217 36 6.99608e+06 323745 902133. 3121.57 13.87 0.401511 0.346642 28642 213929 -1 2323 21 2201 2619 211762 52502 4.6934 4.6934 -161.769 -4.6934 0 0 1.08113e+06 3740.92 0.27 0.09 0.19 -1 -1 0.27 0.0326983 0.0286511 125 94 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.35 vpr 63.45 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.8 MiB 2.61 1072 15456 6595 7994 867 63.4 MiB 0.15 0.00 4.1343 -135.415 -4.1343 4.1343 0.67 0.000907806 0.000843234 0.0698627 0.0648584 48 3698 50 6.99608e+06 323745 865456. 2994.66 4.79 0.260726 0.228234 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.27 0.16 0.17 -1 -1 0.27 0.0377766 0.0330643 114 92 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.45 vpr 63.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1174 14500 5592 7226 1682 63.5 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.66 0.000773243 0.000717902 0.0684075 0.0635078 46 3851 34 6.99608e+06 264882 828058. 2865.25 18.70 0.426163 0.369221 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0339885 0.0298259 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.04 vpr 63.57 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.67 0.000734998 0.000682413 0.0490137 0.0455089 38 3405 45 6.99608e+06 294314 678818. 2348.85 5.55 0.227155 0.197628 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.29 0.11 0.15 -1 -1 0.29 0.0336259 0.0293662 112 88 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.68 vpr 62.60 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 0.65 592 9684 3186 4658 1840 62.6 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.67 0.000619203 0.000575776 0.0404677 0.0376744 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.29 0.187687 0.163319 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.26 0.09 0.12 -1 -1 0.26 0.0270365 0.0235439 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.77 vpr 63.55 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 999 9872 3990 5501 381 63.6 MiB 0.10 0.00 4.9054 -173.166 -4.9054 4.9054 0.66 0.000778994 0.000723104 0.0466319 0.0433036 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.32 0.204461 0.178094 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.31 0.10 0.22 -1 -1 0.31 0.035841 0.0313029 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.15 vpr 63.54 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1203 7431 1958 4126 1347 63.5 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.66 0.000780204 0.000724023 0.0358477 0.0333449 44 3706 30 6.99608e+06 250167 787024. 2723.27 2.61 0.198382 0.172263 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.25 0.12 0.16 -1 -1 0.25 0.0349107 0.0304374 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 16.99 vpr 63.00 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 766 11324 4293 5664 1367 63.0 MiB 0.05 0.00 3.24452 -112.954 -3.24452 3.24452 0.67 0.000285627 0.000262496 0.0219418 0.0202074 48 2295 39 6.99608e+06 191304 865456. 2994.66 12.32 0.311851 0.26676 28354 207349 -1 1784 21 1600 1887 197435 47668 3.48726 3.48726 -120.115 -3.48726 0 0 1.05005e+06 3633.38 0.27 0.08 0.19 -1 -1 0.27 0.0275347 0.024109 85 55 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.12 vpr 62.65 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 592 7514 3020 4270 224 62.6 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.69 0.0005977 0.000555618 0.0319781 0.0297328 44 2109 28 6.99608e+06 161872 787024. 2723.27 1.94 0.165995 0.144131 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0265781 0.0231406 63 4 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.44 vpr 63.56 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1014 12331 5131 6918 282 63.6 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.65 0.000740415 0.000687504 0.0548958 0.0510204 40 2840 45 6.99608e+06 250167 706193. 2443.58 2.80 0.22817 0.199309 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.23 0.16 0.16 -1 -1 0.23 0.0420894 0.0365071 102 59 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.84 vpr 63.56 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 1.31 1077 13043 5447 7262 334 63.6 MiB 0.13 0.00 4.38874 -150.527 -4.38874 4.38874 0.65 0.000762646 0.000707661 0.0585376 0.0543542 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.55 0.231405 0.201982 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.26 0.15 0.17 -1 -1 0.26 0.0420053 0.0365089 115 88 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.78 vpr 63.60 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.29 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.65 0.000937722 0.000870978 0.0347532 0.0323064 48 3128 28 6.99608e+06 397324 865456. 2994.66 2.79 0.201501 0.175275 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.26 0.13 0.14 -1 -1 0.26 0.0415076 0.0363231 100 3 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.43 vpr 63.39 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30464 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.90 884 14431 6074 7798 559 63.4 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.66 0.000717058 0.000665876 0.0634399 0.0589523 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.79 0.221143 0.194174 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307884 0.0268797 101 59 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.70 vpr 62.72 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 16 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 589 11925 5033 6263 629 62.7 MiB 0.09 0.00 3.68305 -110.555 -3.68305 3.68305 0.65 0.000573815 0.00053397 0.0452249 0.0420847 40 1692 28 6.99608e+06 235451 706193. 2443.58 1.90 0.16348 0.142469 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0220367 0.0191993 67 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 21.38 vpr 63.75 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.79 1512 15151 5383 7381 2387 63.8 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.000857296 0.000791129 0.0773741 0.0718183 50 4170 39 6.99608e+06 309029 902133. 3121.57 17.53 0.468734 0.405171 28642 213929 -1 3441 24 2733 3835 527406 117145 4.67941 4.67941 -171.114 -4.67941 0 0 1.08113e+06 3740.92 0.27 0.16 0.19 -1 -1 0.27 0.0429848 0.0374962 141 95 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.29 vpr 63.64 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.65 0.00084351 0.000783783 0.0438202 0.0407674 42 3808 25 6.99608e+06 323745 744469. 2576.02 2.07 0.211137 0.183442 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.24 0.11 0.15 -1 -1 0.24 0.0356478 0.0310588 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.95 vpr 63.40 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.5 MiB 2.73 1031 11233 4729 6294 210 63.4 MiB 0.10 0.00 3.87693 -140.03 -3.87693 3.87693 0.66 0.00068574 0.000636339 0.0478245 0.0443742 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.51 0.189226 0.164956 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.25 0.08 0.11 -1 -1 0.25 0.0285745 0.0249765 102 89 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.98 vpr 63.40 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30552 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.66 0.000725795 0.000674673 0.0625258 0.0581264 46 3037 39 6.99608e+06 235451 828058. 2865.25 2.31 0.224124 0.196323 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0321731 0.0280828 92 34 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.12 vpr 63.77 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30764 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.67 0.000860533 0.000800824 0.069505 0.0646898 38 3765 35 6.99608e+06 294314 678818. 2348.85 3.87 0.258977 0.226655 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0322494 0.0282265 117 64 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.72 vpr 63.44 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13788 5313 5928 2547 63.4 MiB 0.13 0.00 3.56069 -123.887 -3.56069 3.56069 0.65 0.000717011 0.000665902 0.0583453 0.0542059 36 3765 43 6.99608e+06 294314 648988. 2245.63 7.02 0.230394 0.201432 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.033625 0.0293349 101 61 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.50 vpr 63.42 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1034 13906 5203 6656 2047 63.4 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.66 0.000786314 0.0007256 0.0648143 0.0602028 46 3490 34 6.99608e+06 250167 828058. 2865.25 4.21 0.234526 0.205601 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.24 0.05 0.12 -1 -1 0.24 0.0181963 0.0162639 107 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.01 vpr 63.53 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1295 11830 3708 6867 1255 63.5 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.65 0.000769653 0.000714443 0.0543596 0.0505316 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.53 0.213095 0.186394 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0309392 0.0271109 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.81 vpr 62.73 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.0 MiB 1.15 714 7817 3113 4376 328 62.7 MiB 0.07 0.00 3.29694 -113.946 -3.29694 3.29694 0.66 0.000598654 0.000556858 0.0319076 0.0297032 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.04 0.161036 0.139612 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0250098 0.0217002 73 34 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.56 vpr 63.43 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.31 796 13192 4518 6301 2373 63.4 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.65 0.000666075 0.000619021 0.0554427 0.0514582 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.59 0.203166 0.177259 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.30 0.08 0.18 -1 -1 0.30 0.0281309 0.0246089 91 82 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.34 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.62 1104 8164 1792 5984 388 63.3 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.65 0.000725755 0.000674776 0.0370122 0.034463 38 3147 50 6.99608e+06 250167 678818. 2348.85 3.80 0.21437 0.186139 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0335204 0.0292714 92 34 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.65 vpr 62.91 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.50 924 11813 4851 6237 725 62.9 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.66 0.000600794 0.000558074 0.0462667 0.0429945 38 2436 26 6.99608e+06 235451 678818. 2348.85 2.51 0.164964 0.143726 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277275 0.0240538 81 56 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.70 vpr 62.94 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.67 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.65 0.000654004 0.000600732 0.0533295 0.0496083 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.31 0.188722 0.165108 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0231807 0.0203723 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.09 964 11296 3574 5293 2429 63.5 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.66 0.000746844 0.000693295 0.0502357 0.0466926 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.31 0.210033 0.183403 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.28 0.11 0.13 -1 -1 0.28 0.0328082 0.0285998 105 64 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.68 vpr 63.12 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.18 694 11756 4613 5996 1147 63.1 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.66 0.000634383 0.00058962 0.048792 0.0453597 48 2270 42 6.99608e+06 191304 865456. 2994.66 2.73 0.19567 0.170575 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0260284 0.0226637 81 55 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.84 vpr 63.39 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.41 911 15034 6476 7971 587 63.4 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.65 0.000752094 0.000699111 0.0661581 0.061449 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.60 0.231913 0.203414 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.29 0.09 0.21 -1 -1 0.29 0.0311707 0.0272094 103 65 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30308 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1135 16081 6006 7648 2427 63.6 MiB 0.17 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000792008 0.000734923 0.0802752 0.0747246 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.07 0.263699 0.23117 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0302425 0.0265272 123 93 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.21 vpr 63.42 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 2.40 1185 10050 2506 6241 1303 63.4 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.65 0.000665784 0.000618822 0.0419072 0.0389879 38 3007 50 6.99608e+06 220735 678818. 2348.85 3.16 0.201173 0.174813 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279954 0.0244827 88 61 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.34 vpr 63.01 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 844 13856 5698 7170 988 63.0 MiB 0.15 0.00 3.30794 -123.058 -3.30794 3.30794 0.66 0.000673523 0.000625469 0.0698808 0.0647266 46 2571 29 6.99608e+06 206020 828058. 2865.25 2.87 0.215414 0.189179 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297454 0.025875 91 63 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.65 vpr 63.45 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1239 11118 3579 5407 2132 63.4 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.65 0.000811389 0.000755376 0.0518509 0.0482252 46 2851 29 6.99608e+06 264882 828058. 2865.25 2.08 0.210074 0.183342 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0341321 0.0297773 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.01 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.96 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.66 0.000713425 0.000661972 0.039312 0.0365267 38 3163 50 6.99608e+06 309029 678818. 2348.85 4.57 0.213015 0.184621 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0172219 0.0153018 101 62 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 16.91 vpr 63.69 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1399 13316 4006 7788 1522 63.7 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.65 0.000861596 0.000800968 0.0638529 0.0593525 38 4423 46 6.99608e+06 323745 678818. 2348.85 13.46 0.409142 0.352873 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0391886 0.0340593 140 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.89 vpr 62.53 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.0 MiB 1.13 486 10149 3821 5138 1190 62.5 MiB 0.08 0.00 2.81885 -95.7056 -2.81885 2.81885 0.66 0.000579251 0.000538879 0.0396532 0.0368955 44 2052 46 6.99608e+06 161872 787024. 2723.27 2.23 0.174783 0.151736 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.02386 0.0207883 57 4 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.95 vpr 63.66 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1299 14303 5218 6688 2397 63.7 MiB 0.14 0.00 4.76923 -166.635 -4.76923 4.76923 0.66 0.000780947 0.000724329 0.0661607 0.0614374 46 3535 24 6.99608e+06 279598 828058. 2865.25 2.54 0.222862 0.195402 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0316096 0.0277342 118 92 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.17 vpr 63.38 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1244 15216 5143 8703 1370 63.4 MiB 0.14 0.00 4.66407 -173.875 -4.66407 4.66407 0.65 0.00072261 0.000671356 0.0669381 0.0622027 44 3377 41 6.99608e+06 235451 787024. 2723.27 2.60 0.229549 0.201262 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.25 0.11 0.14 -1 -1 0.25 0.0321864 0.0280765 110 96 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.62 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30416 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1129 13403 5326 6238 1839 63.6 MiB 0.12 0.00 3.33684 -128.417 -3.33684 3.33684 0.89 0.000594434 0.000544882 0.047438 0.0435706 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.29 0.223512 0.194629 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.22 0.19 0.11 -1 -1 0.22 0.051104 0.0443431 106 65 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.70 vpr 63.66 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30760 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.4 MiB 0.73 1500 14261 4373 7976 1912 63.7 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.66 0.000916428 0.000851489 0.0727778 0.0675792 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.08 0.264564 0.231667 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0367643 0.0321517 140 96 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.02 vpr 62.66 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 30324 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.99 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.65 0.000622691 0.000578741 0.0303429 0.0281888 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.52 0.156173 0.134535 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219706 0.0190439 65 56 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.51 vpr 62.91 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.96 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.70 0.000621678 0.000577698 0.0394262 0.0367199 34 2262 25 6.99608e+06 206020 618332. 2139.56 1.93 0.155262 0.135243 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0219026 0.0191797 72 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.28 vpr 62.87 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 764 10316 3722 4683 1911 62.9 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.66 0.000656069 0.000609362 0.0452644 0.0420766 44 3301 35 6.99608e+06 176588 787024. 2723.27 3.28 0.189806 0.165692 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.25 0.10 0.21 -1 -1 0.25 0.029171 0.0254909 80 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.72 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.68 497 10819 4307 4933 1579 62.7 MiB 0.09 0.00 3.31386 -89.9377 -3.31386 3.31386 0.66 0.000647088 0.000603037 0.0407049 0.0379379 38 1712 31 6.99608e+06 264882 678818. 2348.85 1.86 0.154522 0.134353 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0239852 0.0208942 68 34 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.03 vpr 63.52 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30540 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1423 14358 4574 7658 2126 63.5 MiB 0.14 0.00 3.77875 -143.667 -3.77875 3.77875 0.66 0.000812114 0.000754269 0.0663138 0.0615622 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.26 0.23514 0.205869 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.35 0.11 0.20 -1 -1 0.35 0.0291451 0.0258444 125 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 5.82 vpr 63.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1182 13663 4698 6384 2581 63.7 MiB 0.14 0.00 4.16978 -143.827 -4.16978 4.16978 0.66 0.000782365 0.000726129 0.0639972 0.0594537 46 3209 24 6.99608e+06 323745 828058. 2865.25 2.13 0.221252 0.193906 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0337162 0.029429 121 94 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 7.82 vpr 62.77 MiB 0.05 6892 -1 -1 14 0.26 -1 -1 32872 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1265 9263 2276 5364 1623 62.8 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.65 0.000918685 0.000842563 0.0518695 0.047945 44 3187 47 6.79088e+06 255968 787024. 2723.27 2.81 0.27075 0.235219 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0486984 0.0424814 134 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 7.72 vpr 62.73 MiB 0.05 6788 -1 -1 14 0.28 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1228 8270 2008 5297 965 62.7 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.65 0.000900735 0.000835664 0.0455987 0.0423016 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.25 0.221943 0.193173 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0323699 0.0285516 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 9.54 vpr 62.64 MiB 0.05 6868 -1 -1 11 0.22 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 1.62 1125 11613 3520 5862 2231 62.6 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.66 0.00088626 0.000820018 0.060814 0.0562856 38 3591 44 6.79088e+06 269440 678818. 2348.85 4.94 0.275465 0.239832 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.28 0.08 0.14 -1 -1 0.28 0.0269666 0.0243256 138 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 12.22 vpr 62.88 MiB 0.05 6816 -1 -1 12 0.33 -1 -1 32728 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.9 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.65 0.000902471 0.00083621 0.0419129 0.038825 38 2805 20 6.79088e+06 296384 678818. 2348.85 7.90 0.347136 0.299365 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0334068 0.0294597 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 26.54 vpr 63.18 MiB 0.02 6796 -1 -1 13 0.31 -1 -1 32900 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.65 0.00103692 0.000960661 0.0710613 0.0657986 40 3628 20 6.79088e+06 323328 706193. 2443.58 21.50 0.459173 0.397886 26254 175826 -1 3546 18 1747 4686 306027 66756 7.21431 7.21431 -166.609 -7.21431 0 0 926341. 3205.33 0.23 0.11 0.11 -1 -1 0.23 0.0397939 0.0351206 160 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 21.92 vpr 63.14 MiB 0.03 6672 -1 -1 12 0.30 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1344 4768 918 3685 165 63.1 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.66 0.000956906 0.000885912 0.0273586 0.0254022 40 3616 33 6.79088e+06 323328 706193. 2443.58 16.69 0.435675 0.374235 26254 175826 -1 3273 18 1457 4340 288576 61849 6.72076 6.72076 -158.409 -6.72076 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.036881 0.0324977 150 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 8.28 vpr 62.25 MiB 0.04 6524 -1 -1 12 0.17 -1 -1 32312 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.6 MiB 1.46 1000 7177 1656 4753 768 62.2 MiB 0.08 0.00 7.28149 -137.47 -7.28149 7.28149 0.70 0.000785571 0.000725222 0.0379845 0.0353239 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.03 0.19796 0.172069 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0258128 0.0227753 101 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 7.06 vpr 62.97 MiB 0.03 6736 -1 -1 11 0.21 -1 -1 32708 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.65 0.00085361 0.000782909 0.0498167 0.0459766 38 3033 23 6.79088e+06 242496 678818. 2348.85 3.11 0.22151 0.192635 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299203 0.0264289 118 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.58 vpr 62.41 MiB 0.02 6596 -1 -1 12 0.17 -1 -1 32432 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 2.35 1115 11631 3187 7135 1309 62.4 MiB 0.11 0.00 6.73244 -139.285 -6.73244 6.73244 0.66 0.000750036 0.000694909 0.0537423 0.0497747 36 2986 40 6.79088e+06 242496 648988. 2245.63 3.60 0.228049 0.198627 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.21 0.07 0.09 -1 -1 0.21 0.0240555 0.0215892 111 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 13.93 vpr 62.48 MiB 0.04 6492 -1 -1 13 0.19 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.0 MiB 1.39 1011 5412 1090 4064 258 62.5 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000818333 0.000758248 0.0291177 0.0270238 34 3575 46 6.79088e+06 215552 618332. 2139.56 9.66 0.326418 0.280578 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.29 0.08 0.16 -1 -1 0.29 0.0283984 0.0255369 107 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 5.79 vpr 62.36 MiB 0.04 6696 -1 -1 12 0.20 -1 -1 32580 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.28 838 6386 1352 4871 163 62.4 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.65 0.000704057 0.000652366 0.0298531 0.027698 38 2306 22 6.79088e+06 215552 678818. 2348.85 1.81 0.167761 0.145296 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0228644 0.02028 93 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 14.78 vpr 62.56 MiB 0.04 6576 -1 -1 12 0.13 -1 -1 32640 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1055 4560 1014 3240 306 62.6 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.65 0.000711279 0.000658672 0.0224351 0.0207874 40 2500 20 6.79088e+06 188608 706193. 2443.58 10.22 0.304683 0.261469 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273718 0.0240864 94 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.79 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.26 -1 -1 32844 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.35 1239 11431 3102 6258 2071 63.1 MiB 0.12 0.00 7.91359 -165.523 -7.91359 7.91359 0.65 0.000982646 0.000909573 0.0643446 0.0595706 36 3864 39 6.79088e+06 282912 648988. 2245.63 6.50 0.292082 0.254274 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0406202 0.0356797 148 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 7.19 vpr 63.16 MiB 0.02 6712 -1 -1 14 0.32 -1 -1 33096 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1366 11245 3016 6173 2056 63.2 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.66 0.000987436 0.000913718 0.0634744 0.0587717 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.41 0.264704 0.230631 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0503228 0.0439428 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 12.93 vpr 62.42 MiB 0.05 6592 -1 -1 11 0.18 -1 -1 32400 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.65 0.000754333 0.000698506 0.0580178 0.0537936 40 2281 19 6.79088e+06 269440 706193. 2443.58 8.81 0.35973 0.31113 26254 175826 -1 2219 18 1178 2818 179355 42380 6.07609 6.07609 -130.204 -6.07609 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0265573 0.0234187 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.35 vpr 63.44 MiB 0.04 6792 -1 -1 12 0.27 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1420 13992 4103 7703 2186 63.4 MiB 0.16 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000996273 0.000922694 0.0805561 0.0744952 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.87 0.306314 0.267628 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0400629 0.0352882 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 8.49 vpr 63.16 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1236 10687 3174 5565 1948 63.2 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.65 0.000994362 0.000915789 0.0612016 0.0566778 38 3417 39 6.79088e+06 282912 678818. 2348.85 4.07 0.294005 0.255666 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0386639 0.0340435 144 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 6.71 vpr 62.29 MiB 0.02 6568 -1 -1 12 0.17 -1 -1 32444 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.67 0.000749537 0.000691153 0.0379579 0.0351627 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.06 0.196131 0.170264 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0246236 0.0218536 104 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.98 vpr 61.93 MiB 0.02 6508 -1 -1 10 0.12 -1 -1 32304 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.40 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.66 0.000572093 0.000531662 0.0294834 0.0273781 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.03 0.162851 0.140726 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0190775 0.0167779 67 88 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 6.75 vpr 62.41 MiB 0.04 6632 -1 -1 13 0.21 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 1.81 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.67 0.000746479 0.000692004 0.0314776 0.0291664 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.04 0.180037 0.156505 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0249529 0.0220905 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 7.45 vpr 62.77 MiB 0.02 6672 -1 -1 13 0.28 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1254 12371 3408 7445 1518 62.8 MiB 0.15 0.00 7.46133 -157.73 -7.46133 7.46133 0.72 0.000960148 0.000888014 0.076876 0.0710101 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.12 0.306199 0.267499 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0388915 0.0342658 143 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 7.67 vpr 63.13 MiB 0.02 6792 -1 -1 13 0.30 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.84 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.65 0.000956134 0.000885132 0.0618236 0.0572714 40 3438 18 6.79088e+06 255968 706193. 2443.58 2.77 0.261008 0.227515 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0510905 0.0445997 141 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 4.94 vpr 61.77 MiB 0.03 6404 -1 -1 9 0.10 -1 -1 32124 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.2 MiB 1.54 588 10149 2859 5591 1699 61.8 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.66 0.000499776 0.000464726 0.034537 0.0321232 30 1736 26 6.79088e+06 215552 556674. 1926.21 0.85 0.0980044 0.0860494 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0176496 0.0154682 64 73 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 8.64 vpr 63.10 MiB 0.02 6696 -1 -1 13 0.34 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 2.17 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.65 0.000974086 0.000903302 0.0414575 0.0384207 38 3745 37 6.79088e+06 296384 678818. 2348.85 3.49 0.257695 0.22336 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0426348 0.0373043 137 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 5.69 vpr 61.86 MiB 0.03 6352 -1 -1 8 0.10 -1 -1 30992 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.32 737 11631 4246 5219 2166 61.9 MiB 0.08 0.00 4.77835 -104.906 -4.77835 4.77835 0.65 0.000514294 0.000477895 0.0373539 0.0347392 30 1930 29 6.79088e+06 229024 556674. 1926.21 0.97 0.104463 0.0919141 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.18 0.03 0.08 -1 -1 0.18 0.0110387 0.00987682 64 61 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 6.92 vpr 62.70 MiB 0.04 6832 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1155 10581 3115 6097 1369 62.7 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.69 0.000849706 0.000788254 0.0572703 0.0531995 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.06 0.230695 0.201731 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0285159 0.0252333 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 9.74 vpr 63.09 MiB 0.02 6772 -1 -1 12 0.25 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1241 4433 817 3477 139 63.1 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.70 0.000977367 0.000903724 0.0277414 0.025713 36 4047 49 6.79088e+06 296384 648988. 2245.63 5.46 0.266888 0.231106 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.20 0.09 0.09 -1 -1 0.20 0.027633 0.0245762 145 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 7.53 vpr 62.81 MiB 0.02 6708 -1 -1 13 0.28 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1284 4659 748 3690 221 62.8 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.65 0.000914223 0.000845613 0.0282342 0.0261828 38 3292 49 6.79088e+06 269440 678818. 2348.85 3.31 0.258067 0.222906 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353296 0.0310848 136 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 6.36 vpr 62.48 MiB 0.05 6576 -1 -1 12 0.19 -1 -1 32288 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1045 5303 1002 3952 349 62.5 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.65 0.000766293 0.000709242 0.0256175 0.023697 38 2622 19 6.79088e+06 255968 678818. 2348.85 1.76 0.175372 0.151829 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.21 0.04 0.09 -1 -1 0.21 0.0148605 0.0135481 106 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 7.28 vpr 62.15 MiB 0.02 6520 -1 -1 11 0.15 -1 -1 32716 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.5 MiB 1.87 954 11652 3379 7115 1158 62.1 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.67 0.000692035 0.00064107 0.0481296 0.0446396 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.69 0.194208 0.169217 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0258718 0.0228321 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 7.40 vpr 62.30 MiB 0.02 6604 -1 -1 11 0.15 -1 -1 32412 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1013 7346 1810 4929 607 62.3 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.65 0.000727466 0.000674401 0.0346294 0.0321114 36 2839 26 6.79088e+06 255968 648988. 2245.63 3.52 0.188786 0.164067 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268238 0.0236634 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 7.50 vpr 62.93 MiB 0.04 6652 -1 -1 12 0.19 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1274 9443 2812 5690 941 62.9 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.65 0.000859532 0.000796501 0.0497391 0.0460911 38 3239 49 6.79088e+06 255968 678818. 2348.85 2.74 0.260935 0.226094 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.034222 0.0300518 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 7.39 vpr 62.39 MiB 0.03 6508 -1 -1 11 0.17 -1 -1 32520 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.9 MiB 1.49 908 10056 3226 4794 2036 62.4 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.66 0.000772882 0.000715927 0.0483496 0.0448044 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.11 0.220481 0.192112 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.028406 0.025032 107 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 5.91 vpr 62.52 MiB 0.04 6676 -1 -1 10 0.17 -1 -1 32640 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.38 870 8022 2297 4713 1012 62.5 MiB 0.08 0.00 6.19022 -129.37 -6.19022 6.19022 0.69 0.00072027 0.000666601 0.0365349 0.0337065 34 2314 24 6.79088e+06 242496 618332. 2139.56 1.86 0.190137 0.165164 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0286698 0.0251962 103 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.82 vpr 63.10 MiB 0.02 6808 -1 -1 13 0.32 -1 -1 33424 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1352 10103 2504 6636 963 63.1 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.66 0.00106153 0.000980609 0.0609609 0.0563514 38 3914 48 6.79088e+06 296384 678818. 2348.85 5.45 0.320641 0.278858 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.21 0.06 0.09 -1 -1 0.21 0.0252382 0.0227633 162 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 12.02 vpr 63.28 MiB 0.05 6816 -1 -1 13 0.32 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1274 13849 4315 6877 2657 63.3 MiB 0.15 0.00 7.85526 -169.716 -7.85526 7.85526 0.65 0.000983715 0.000910464 0.0767195 0.070801 36 4447 42 6.79088e+06 282912 648988. 2245.63 7.33 0.315242 0.275346 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0427464 0.0374926 152 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.24 vpr 62.39 MiB 0.05 6552 -1 -1 12 0.15 -1 -1 32844 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.25 851 11631 4796 6628 207 62.4 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.65 0.00074102 0.000685826 0.0524204 0.0485176 36 2928 40 6.79088e+06 242496 648988. 2245.63 6.20 0.231086 0.201834 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.20 0.07 0.09 -1 -1 0.20 0.0267652 0.0236954 102 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 6.63 vpr 63.24 MiB 0.02 6700 -1 -1 12 0.26 -1 -1 33056 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1154 12749 3915 6368 2466 63.2 MiB 0.14 0.00 7.84323 -159.621 -7.84323 7.84323 0.59 0.000978239 0.000905998 0.0705089 0.0652143 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.57 0.275407 0.240257 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.22 0.12 0.12 -1 -1 0.22 0.0450531 0.039395 148 219 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 14.38 vpr 62.95 MiB 0.05 6764 -1 -1 14 0.35 -1 -1 33104 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.65 0.000955624 0.000885556 0.0625237 0.0579839 36 4160 47 6.79088e+06 282912 648988. 2245.63 10.10 0.408809 0.353661 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0394323 0.0346858 146 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 7.29 vpr 62.67 MiB 0.04 6880 -1 -1 13 0.26 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 2.17 1310 10149 2655 5632 1862 62.7 MiB 0.11 0.00 7.78561 -164.423 -7.78561 7.78561 0.66 0.000879432 0.000814639 0.0527774 0.0489338 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.17 0.241611 0.21026 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0344146 0.0302114 126 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 19.05 vpr 62.61 MiB 0.02 6692 -1 -1 12 0.24 -1 -1 32904 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1267 10859 2857 6722 1280 62.6 MiB 0.12 0.00 7.65156 -158.395 -7.65156 7.65156 0.66 0.00108257 0.000995625 0.0592775 0.0548986 40 3210 25 6.79088e+06 309856 706193. 2443.58 15.11 0.423023 0.36614 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.27 0.09 0.15 -1 -1 0.27 0.0351359 0.0311736 135 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 8.22 vpr 62.56 MiB 0.04 6732 -1 -1 12 0.20 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.60 0.00083187 0.000770231 0.0562454 0.0521067 36 3341 42 6.79088e+06 229024 648988. 2245.63 4.34 0.251322 0.218438 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033241 0.0291358 113 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 8.80 vpr 63.43 MiB 0.04 7024 -1 -1 14 0.47 -1 -1 32520 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1406 13355 3498 8147 1710 63.4 MiB 0.16 0.00 8.18038 -175.8 -8.18038 8.18038 0.65 0.00108322 0.00100082 0.0825634 0.0763236 38 4021 47 6.79088e+06 336800 678818. 2348.85 4.21 0.348322 0.304694 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.27 0.10 0.14 -1 -1 0.27 0.0389529 0.0345345 169 245 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.93 vpr 62.46 MiB 0.02 6524 -1 -1 11 0.22 -1 -1 32520 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1088 9006 2212 5478 1316 62.5 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.65 0.000814582 0.000754596 0.045453 0.042099 36 3313 23 6.79088e+06 242496 648988. 2245.63 4.53 0.215458 0.187331 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0309182 0.0271323 113 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 8.19 vpr 62.80 MiB 0.05 6744 -1 -1 13 0.29 -1 -1 32752 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1133 5422 1123 3954 345 62.8 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.67 0.000891563 0.000825724 0.0307146 0.0285062 36 3213 29 6.79088e+06 255968 648988. 2245.63 3.63 0.219689 0.190027 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0330407 0.0291576 132 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 10.08 vpr 63.16 MiB 0.03 6636 -1 -1 12 0.25 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1437 6967 1505 4666 796 63.2 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.65 0.00100091 0.000925063 0.0416451 0.038539 38 3828 35 6.79088e+06 282912 678818. 2348.85 5.73 0.278546 0.241791 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.041517 0.0364808 153 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 9.12 vpr 62.73 MiB 0.05 6748 -1 -1 13 0.26 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1157 7823 1835 4914 1074 62.7 MiB 0.11 0.00 7.47708 -158.746 -7.47708 7.47708 0.66 0.00089482 0.00082905 0.0528113 0.0489852 36 3541 41 6.79088e+06 255968 648988. 2245.63 4.85 0.274706 0.239579 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0317307 0.0280545 131 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 8.07 vpr 62.98 MiB 0.03 6876 -1 -1 13 0.21 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1097 11106 3753 5771 1582 63.0 MiB 0.13 0.00 7.69072 -162.222 -7.69072 7.69072 0.67 0.000987304 0.000922097 0.0615489 0.0569984 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.12 0.257682 0.224207 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0426018 0.0372754 118 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 9.78 vpr 62.99 MiB 0.03 6720 -1 -1 12 0.25 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.66 0.00097055 0.000897938 0.0463755 0.0430064 36 3806 40 6.79088e+06 309856 648988. 2245.63 4.93 0.272105 0.235851 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0388009 0.0341413 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 19.87 vpr 62.84 MiB 0.04 6828 -1 -1 13 0.32 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 1.97 1315 9051 2036 5908 1107 62.8 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.68 0.000960503 0.000887814 0.0515224 0.0476589 40 3325 24 6.79088e+06 269440 706193. 2443.58 14.80 0.442727 0.381893 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0514664 0.0449435 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 17.77 vpr 62.54 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1139 8270 1889 5806 575 62.5 MiB 0.09 0.00 8.36252 -172.285 -8.36252 8.36252 0.67 0.000861859 0.000799242 0.0446075 0.0414042 40 2999 22 6.79088e+06 242496 706193. 2443.58 12.81 0.402548 0.346931 26254 175826 -1 2868 16 1271 3527 223782 49875 7.46496 7.46496 -168.675 -7.46496 0 0 926341. 3205.33 0.25 0.08 0.16 -1 -1 0.25 0.0303815 0.0268631 123 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 8.82 vpr 62.96 MiB 0.02 6852 -1 -1 13 0.31 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.04 1159 8868 1881 6136 851 63.0 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.66 0.000937212 0.00086874 0.0490727 0.0455 36 3689 32 6.79088e+06 269440 648988. 2245.63 2.78 0.222677 0.19443 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.21 0.11 0.13 -1 -1 0.21 0.040276 0.0354975 134 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 6.88 vpr 63.26 MiB 0.02 6808 -1 -1 13 0.28 -1 -1 33108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1323 8591 2185 5991 415 63.3 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.65 0.000996346 0.000922088 0.0495303 0.0458475 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.69 0.247883 0.21549 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.049066 0.0430426 154 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 7.20 vpr 63.45 MiB 0.02 6736 -1 -1 12 0.33 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.39 1325 11983 3288 6841 1854 63.4 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.65 0.00102033 0.000944733 0.067737 0.0625685 44 3682 36 6.79088e+06 323328 787024. 2723.27 2.71 0.296889 0.25863 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0452158 0.0401748 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 11.54 vpr 62.26 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32380 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.39 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.65 0.000681386 0.000630026 0.0339751 0.031483 40 2274 24 6.79088e+06 175136 706193. 2443.58 7.43 0.304264 0.262135 26254 175826 -1 2061 14 902 2231 149609 32911 5.5245 5.5245 -134.444 -5.5245 0 0 926341. 3205.33 0.23 0.06 0.11 -1 -1 0.23 0.0225574 0.0199568 90 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 7.92 vpr 62.59 MiB 0.04 6644 -1 -1 13 0.18 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.47 1073 11631 3861 5991 1779 62.6 MiB 0.12 0.00 7.81611 -170.556 -7.81611 7.81611 0.66 0.00091697 0.000857745 0.0593602 0.0550011 38 2825 21 6.79088e+06 229024 678818. 2348.85 2.57 0.231004 0.202037 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294951 0.0260914 113 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 8.79 vpr 63.41 MiB 0.03 6960 -1 -1 14 0.40 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1399 15493 4561 8338 2594 63.4 MiB 0.18 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00113674 0.00104557 0.0949061 0.0876823 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.23 0.369944 0.323016 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.25 0.32 0.17 -1 -1 0.25 0.0814709 0.0708164 180 267 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.91 vpr 63.25 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1244 13849 3731 7364 2754 63.3 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.65 0.00102789 0.000950214 0.0808519 0.0747894 38 3697 23 6.79088e+06 282912 678818. 2348.85 3.59 0.299817 0.262257 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0370009 0.0327971 154 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 4.90 vpr 62.41 MiB 0.02 6568 -1 -1 11 0.16 -1 -1 32620 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 899 5994 1459 3795 740 62.4 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.65 0.000723002 0.000669835 0.0286268 0.026468 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.65 0.147432 0.128286 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0267135 0.0235382 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 7.87 vpr 63.60 MiB 0.04 6960 -1 -1 15 0.44 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1572 8083 1890 5078 1115 63.6 MiB 0.11 0.00 9.61575 -193.644 -9.61575 9.61575 0.71 0.00109983 0.00100924 0.0525623 0.0485348 44 4110 31 6.79088e+06 323328 787024. 2723.27 3.29 0.305529 0.265312 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0402975 0.0356574 172 241 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 7.11 vpr 62.98 MiB 0.02 6664 -1 -1 13 0.37 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.07 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.65 0.000988445 0.000915501 0.055689 0.0516018 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.03 0.248495 0.21691 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0389201 0.034419 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 5.61 vpr 62.23 MiB 0.02 6540 -1 -1 11 0.13 -1 -1 32636 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1043 11604 3704 5973 1927 62.2 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.65 0.000729788 0.000675276 0.0520692 0.0481738 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.49 0.1639 0.144063 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0280305 0.0246262 97 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 7.03 vpr 63.10 MiB 0.03 6888 -1 -1 12 0.29 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1321 11989 3057 7272 1660 63.1 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.66 0.000984237 0.000904521 0.0670253 0.0617948 40 3150 27 6.79088e+06 282912 706193. 2443.58 2.48 0.270904 0.236111 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0370457 0.0326176 152 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 8.81 vpr 62.44 MiB 0.04 6596 -1 -1 12 0.19 -1 -1 32384 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.83 1076 11776 3996 5804 1976 62.4 MiB 0.12 0.00 7.20737 -155.525 -7.20737 7.20737 0.65 0.000847847 0.000784424 0.0606436 0.056238 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.16 0.236441 0.206429 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.036946 0.0323494 115 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.05 vpr 62.62 MiB 0.02 6592 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.0 MiB 1.35 861 12331 3461 6927 1943 62.6 MiB 0.11 0.00 7.68992 -150.206 -7.68992 7.68992 0.65 0.000749869 0.000694947 0.0553767 0.0512959 30 2423 23 6.79088e+06 255968 556674. 1926.21 0.99 0.146864 0.129806 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0241836 0.0214652 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 8.24 vpr 62.67 MiB 0.02 6800 -1 -1 12 0.28 -1 -1 32860 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1109 13105 4321 6403 2381 62.7 MiB 0.13 0.00 7.73882 -148.46 -7.73882 7.73882 0.65 0.000958017 0.000879371 0.0710996 0.0657443 36 3249 25 6.79088e+06 323328 648988. 2245.63 3.98 0.272708 0.238035 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0353883 0.0312504 144 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 7.79 vpr 63.12 MiB 0.04 6672 -1 -1 14 0.31 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.3 MiB 2.29 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.73 0.00101852 0.000942938 0.0476384 0.0440779 46 3512 20 6.79088e+06 296384 828058. 2865.25 2.34 0.254685 0.221315 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0376891 0.0333169 155 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 7.92 vpr 62.86 MiB 0.02 6780 -1 -1 12 0.23 -1 -1 32784 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.65 0.00110627 0.00102459 0.069317 0.06415 38 3480 45 6.79088e+06 255968 678818. 2348.85 3.62 0.294539 0.257186 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0478282 0.0417141 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.00 vpr 62.36 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 32728 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.66 0.000723939 0.000661849 0.0331961 0.0306145 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.02 0.201823 0.174464 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.21 0.13 0.11 -1 -1 0.21 0.0363901 0.0317303 95 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 6.80 vpr 62.55 MiB 0.02 6724 -1 -1 12 0.21 -1 -1 32348 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1016 11806 3829 5905 2072 62.6 MiB 0.12 0.00 7.21239 -153.602 -7.21239 7.21239 0.66 0.00084792 0.000786403 0.0614919 0.0570062 46 2377 20 6.79088e+06 242496 828058. 2865.25 2.04 0.225771 0.197152 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0313243 0.0276727 114 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 18.43 vpr 62.73 MiB 0.02 6668 -1 -1 11 0.23 -1 -1 32756 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.61 1192 7587 1799 4901 887 62.7 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.65 0.000899057 0.000833398 0.0399498 0.0369907 38 3199 19 6.79088e+06 296384 678818. 2348.85 12.99 0.347974 0.299089 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0326184 0.0287622 129 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 20.83 vpr 62.67 MiB 0.02 6764 -1 -1 11 0.20 -1 -1 32636 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 990 12156 4943 6412 801 62.7 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.66 0.000846774 0.000784253 0.0614511 0.0568988 40 3108 38 6.79088e+06 282912 706193. 2443.58 16.43 0.434536 0.374581 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0383975 0.0334717 125 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 7.72 vpr 62.36 MiB 0.05 6736 -1 -1 13 0.18 -1 -1 32636 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.81 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.65 0.000719139 0.000666296 0.0298326 0.0276704 36 2646 31 6.79088e+06 215552 648988. 2245.63 2.16 0.185248 0.160569 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0242371 0.0215957 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 7.87 vpr 62.65 MiB 0.02 6604 -1 -1 12 0.21 -1 -1 32604 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1239 4476 858 3235 383 62.6 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.66 0.000876021 0.000808667 0.0260865 0.0241892 36 3048 33 6.79088e+06 269440 648988. 2245.63 2.91 0.220181 0.18966 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0312789 0.0276188 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 6.60 vpr 62.77 MiB 0.03 6804 -1 -1 13 0.29 -1 -1 32964 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.64 0.000921218 0.000853488 0.0412566 0.0382389 38 2773 17 6.79088e+06 269440 678818. 2348.85 1.94 0.216817 0.188067 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0370006 0.0326052 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 8.00 vpr 63.31 MiB 0.05 6656 -1 -1 14 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.51 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.66 0.000996657 0.000922751 0.0522658 0.0483439 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.45 0.274069 0.238578 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0355089 0.0314035 149 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 19.85 vpr 62.75 MiB 0.04 6784 -1 -1 14 0.26 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1168 12528 4001 6466 2061 62.8 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.65 0.000907343 0.000839678 0.0676538 0.0626655 38 3448 46 6.79088e+06 269440 678818. 2348.85 14.65 0.419273 0.362094 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.037957 0.0333438 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.91 vpr 62.77 MiB 0.05 6668 -1 -1 13 0.34 -1 -1 33396 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.95 1266 7823 1896 4973 954 62.8 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.66 0.000946398 0.000874796 0.0462085 0.04274 44 3303 29 6.79088e+06 255968 787024. 2723.27 2.77 0.254475 0.221032 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0351314 0.0310337 139 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 6.66 vpr 62.51 MiB 0.04 6524 -1 -1 13 0.20 -1 -1 32784 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.49 955 5888 1275 4387 226 62.5 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.66 0.000752619 0.000692434 0.0294945 0.0273368 40 2382 30 6.79088e+06 215552 706193. 2443.58 2.34 0.186868 0.162107 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0270252 0.0239526 106 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 9.18 vpr 62.84 MiB 0.04 6868 -1 -1 13 0.43 -1 -1 32928 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1281 12175 3045 7735 1395 62.8 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.65 0.000986682 0.000915319 0.0685038 0.0634771 36 3566 29 6.79088e+06 309856 648988. 2245.63 4.61 0.281897 0.246267 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.21 0.14 0.14 -1 -1 0.21 0.045127 0.0395111 144 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 6.73 vpr 62.69 MiB 0.04 6868 -1 -1 14 0.28 -1 -1 31400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1252 6306 1410 4478 418 62.7 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.66 0.000890066 0.000821668 0.034845 0.0322939 46 3049 24 6.79088e+06 269440 828058. 2865.25 2.09 0.217121 0.187978 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0359006 0.0316988 133 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 7.41 vpr 63.03 MiB 0.03 6708 -1 -1 12 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.65 0.000946808 0.000878238 0.0392083 0.0363668 38 3142 49 6.79088e+06 282912 678818. 2348.85 2.88 0.265233 0.229415 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344545 0.0304355 143 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 8.60 vpr 62.79 MiB 0.05 6784 -1 -1 13 0.21 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1166 13583 4513 7114 1956 62.8 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.65 0.00087284 0.000807684 0.0694914 0.0643185 38 3283 21 6.79088e+06 282912 678818. 2348.85 3.83 0.246843 0.215918 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.23 0.08 0.17 -1 -1 0.23 0.0320303 0.028247 126 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 8.81 vpr 63.29 MiB 0.02 6688 -1 -1 14 0.39 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.45 1356 6595 1328 4700 567 63.3 MiB 0.08 0.00 8.2637 -174.994 -8.2637 8.2637 0.65 0.00101205 0.000937719 0.0401248 0.0372516 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.22 0.264622 0.229885 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0400624 0.0357349 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 6.73 vpr 62.71 MiB 0.02 6824 -1 -1 11 0.33 -1 -1 32816 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1061 13403 4351 6899 2153 62.7 MiB 0.13 0.00 6.99502 -136.053 -6.99502 6.99502 0.65 0.000873357 0.000809848 0.0685248 0.0635579 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.48 0.212668 0.186631 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.19 0.12 0.12 -1 -1 0.19 0.0421213 0.0367616 130 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 8.92 vpr 62.56 MiB 0.02 6580 -1 -1 13 0.17 -1 -1 32800 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 2.89 995 4062 701 3272 89 62.6 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.62 0.000736398 0.000682564 0.022381 0.0208204 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.37 0.188296 0.162748 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0266293 0.0234957 99 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 8.43 vpr 62.93 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 32804 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1302 5483 1117 4002 364 62.9 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.65 0.000869959 0.000804854 0.0308036 0.0286151 36 3263 26 6.79088e+06 255968 648988. 2245.63 3.92 0.215526 0.186682 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.21 0.08 0.09 -1 -1 0.21 0.0313365 0.027698 129 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 7.29 vpr 63.37 MiB 0.05 6720 -1 -1 15 0.36 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.66 0.00103079 0.000954193 0.0602428 0.0557801 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.36 0.302198 0.263357 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0439346 0.0385692 153 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 7.43 vpr 62.18 MiB 0.02 6560 -1 -1 11 0.16 -1 -1 32468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.92 829 6054 1305 4663 86 62.2 MiB 0.07 0.00 6.63906 -133.693 -6.63906 6.63906 0.66 0.000710304 0.000658491 0.0290988 0.0269194 34 2844 35 6.79088e+06 188608 618332. 2139.56 2.79 0.186679 0.161459 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255808 0.022537 91 124 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 7.02 vpr 62.39 MiB 0.04 6540 -1 -1 12 0.19 -1 -1 32440 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1045 8360 2472 4444 1444 62.4 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.65 0.000798881 0.000740265 0.0431063 0.0399729 36 3087 23 6.79088e+06 215552 648988. 2245.63 2.74 0.199241 0.173284 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0319637 0.0280363 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 7.45 vpr 63.02 MiB 0.02 6772 -1 -1 12 0.30 -1 -1 32944 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1231 6306 1337 4274 695 63.0 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.65 0.000981217 0.000908445 0.0380226 0.0352391 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.17 0.257174 0.222356 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.20 0.12 0.09 -1 -1 0.20 0.0440589 0.0389136 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 8.51 vpr 62.75 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1313 9443 2521 5826 1096 62.8 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.65 0.000894614 0.000828851 0.0506707 0.0469297 36 3623 36 6.79088e+06 255968 648988. 2245.63 3.99 0.254871 0.22146 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.22 0.09 0.11 -1 -1 0.22 0.034846 0.0307756 133 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 8.33 vpr 63.55 MiB 0.04 6940 -1 -1 14 0.46 -1 -1 33396 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1284 5079 907 4069 103 63.5 MiB 0.09 0.00 8.77515 -179.37 -8.77515 8.77515 0.65 0.00109846 0.00101288 0.0469696 0.0436119 38 4131 35 6.79088e+06 309856 678818. 2348.85 3.82 0.288553 0.250651 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0454537 0.0401231 170 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 18.25 vpr 62.66 MiB 0.02 6812 -1 -1 11 0.28 -1 -1 32364 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.65 0.000870817 0.000806857 0.061618 0.0571294 38 2927 33 6.79088e+06 282912 678818. 2348.85 13.40 0.373272 0.323193 25966 169698 -1 2582 16 1118 3242 177675 39214 6.29442 6.29442 -136.052 -6.29442 0 0 902133. 3121.57 0.25 0.08 0.16 -1 -1 0.25 0.032027 0.0283375 128 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 10.50 vpr 62.36 MiB 0.04 6540 -1 -1 11 0.20 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.11 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.65 0.000709526 0.000656662 0.0359064 0.0332524 38 2218 30 6.79088e+06 255968 678818. 2348.85 6.56 0.332114 0.285248 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0296906 0.026003 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.32 vpr 63.66 MiB 0.04 6860 -1 -1 13 0.47 -1 -1 32888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 24.9 MiB 1.64 1654 14793 4090 8037 2666 63.7 MiB 0.18 0.00 8.15219 -167.23 -8.15219 8.15219 0.65 0.00119286 0.00109271 0.0894951 0.0824395 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.335756 0.293341 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.23 0.39 0.15 -1 -1 0.23 0.0919851 0.0798388 191 279 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.38 vpr 62.82 MiB 0.05 6844 -1 -1 14 0.25 -1 -1 33132 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1216 6923 1704 4584 635 62.8 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.65 0.000881511 0.000817615 0.0374556 0.0347465 30 3569 30 6.79088e+06 269440 556674. 1926.21 2.06 0.164119 0.144001 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0336854 0.029663 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 6.96 vpr 62.32 MiB 0.02 6632 -1 -1 12 0.14 -1 -1 32520 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.7 MiB 2.04 1144 8723 2365 5890 468 62.3 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.65 0.000760785 0.000704796 0.039794 0.0368709 44 3005 29 6.79088e+06 255968 787024. 2723.27 2.17 0.199649 0.173954 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0275522 0.0243322 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 20.11 vpr 62.63 MiB 0.03 6660 -1 -1 13 0.34 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.56 1115 5066 1001 3852 213 62.6 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.65 0.000881964 0.000817565 0.0285675 0.0265245 38 3306 39 6.79088e+06 242496 678818. 2348.85 14.54 0.391644 0.335993 25966 169698 -1 2672 26 1221 3475 344525 134931 7.04987 7.04987 -158.656 -7.04987 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0443258 0.0387524 125 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 21.00 vpr 63.13 MiB 0.03 6840 -1 -1 13 0.31 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.81 0.00105775 0.00097991 0.0473236 0.0438176 38 4261 31 6.79088e+06 336800 678818. 2348.85 15.76 0.479036 0.412165 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.22 0.20 0.15 -1 -1 0.22 0.0598445 0.0521619 159 234 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.96 vpr 62.73 MiB 0.05 6832 -1 -1 11 0.23 -1 -1 32788 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1209 11059 2877 6113 2069 62.7 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000924005 0.000854906 0.0594386 0.0550371 38 3561 49 6.79088e+06 309856 678818. 2348.85 4.47 0.297232 0.258854 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.036919 0.0324452 140 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 6.85 vpr 62.86 MiB 0.02 6704 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1211 12503 3460 7559 1484 62.9 MiB 0.14 0.00 9.11536 -184.558 -9.11536 9.11536 0.66 0.000957695 0.000886033 0.0728687 0.0674037 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.24 0.253575 0.22212 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.22 0.13 0.15 -1 -1 0.22 0.0409518 0.0363788 142 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 13.85 vpr 63.09 MiB 0.05 6708 -1 -1 13 0.30 -1 -1 33016 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1357 5463 1001 4200 262 63.1 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.67 0.00101777 0.000935024 0.0330101 0.0304794 36 4143 34 6.79088e+06 309856 648988. 2245.63 8.83 0.268636 0.233102 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0349146 0.0309497 154 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 6.54 vpr 62.66 MiB 0.01 6544 -1 -1 12 0.20 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.86 941 10557 3755 4946 1856 62.7 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.65 0.000757528 0.000702472 0.0521987 0.0484591 36 2695 26 6.79088e+06 242496 648988. 2245.63 1.91 0.214178 0.186965 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0287767 0.0253272 109 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 6.26 vpr 62.63 MiB 0.05 6536 -1 -1 11 0.16 -1 -1 32440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1148 5224 1190 3763 271 62.6 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.65 0.000727127 0.000673502 0.0258115 0.0239181 48 2763 18 6.79088e+06 188608 865456. 2994.66 2.04 0.176656 0.153093 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0263788 0.0233756 98 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 8.42 vpr 63.08 MiB 0.04 6804 -1 -1 13 0.30 -1 -1 32976 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1115 8455 2194 4906 1355 63.1 MiB 0.10 0.00 7.89179 -153.02 -7.89179 7.89179 0.65 0.000944991 0.00087284 0.0474494 0.0439367 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.37 0.254673 0.220982 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0387025 0.0340688 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 62.30 MiB 0.04 6624 -1 -1 10 0.17 -1 -1 32800 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.63 851 10204 2504 7246 454 62.3 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.66 0.000717875 0.000665162 0.0480387 0.044561 38 2368 25 6.79088e+06 229024 678818. 2348.85 1.96 0.193202 0.168449 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0309449 0.0272841 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.45 vpr 62.34 MiB 0.05 6636 -1 -1 14 0.19 -1 -1 32668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.9 MiB 2.57 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.65 0.000767009 0.000709957 0.0302132 0.0279868 36 3203 45 6.79088e+06 242496 648988. 2245.63 5.02 0.219435 0.190197 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0545022 0.047217 110 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 9.15 vpr 62.60 MiB 0.02 6764 -1 -1 12 0.31 -1 -1 32956 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1262 12919 3620 7000 2299 62.6 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.63 0.000945839 0.000875602 0.0696219 0.0643847 36 3634 39 6.79088e+06 296384 648988. 2245.63 4.79 0.291627 0.254687 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.25 0.09 0.15 -1 -1 0.25 0.0352955 0.0311369 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 7.11 vpr 62.33 MiB 0.02 6632 -1 -1 12 0.15 -1 -1 32360 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.7 MiB 2.20 992 10726 2823 7181 722 62.3 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.65 0.000721007 0.000667529 0.0499757 0.0463652 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.21 0.162971 0.143133 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0272719 0.0242128 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.34 vpr 63.12 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 32792 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 1163 7736 1889 5402 445 63.1 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.70 0.00089032 0.00082465 0.0431257 0.0399267 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.15 0.238941 0.20782 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0330206 0.0290881 123 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 6.44 vpr 62.71 MiB 0.05 6908 -1 -1 13 0.31 -1 -1 32936 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1250 11296 2557 6849 1890 62.7 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.65 0.000887658 0.000822129 0.0600729 0.0556774 40 2968 20 6.79088e+06 255968 706193. 2443.58 1.99 0.235329 0.205195 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.034331 0.0301982 134 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 6.33 vpr 62.40 MiB 0.02 6640 -1 -1 11 0.16 -1 -1 32280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.27 937 7515 1724 5667 124 62.4 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.66 0.000757994 0.000702342 0.037093 0.0343982 46 2683 20 6.79088e+06 202080 828058. 2865.25 2.20 0.191511 0.166523 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268485 0.0237702 105 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.87 vpr 62.56 MiB 0.04 6656 -1 -1 13 0.19 -1 -1 32508 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.66 0.000844927 0.000783327 0.0698167 0.0647163 38 2883 22 6.79088e+06 229024 678818. 2348.85 3.20 0.249236 0.21871 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0313334 0.0276416 116 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 6.97 vpr 62.91 MiB 0.02 6832 -1 -1 13 0.33 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1327 8092 2018 5457 617 62.9 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.66 0.000911679 0.000845738 0.0456385 0.0423815 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.31 0.231398 0.201114 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0367871 0.0324787 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 7.87 vpr 62.51 MiB 0.05 6740 -1 -1 11 0.17 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.5 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.66 0.000792215 0.000733799 0.0637596 0.0590521 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.47 0.239158 0.208796 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0353595 0.0316033 115 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.07 vpr 63.23 MiB 0.02 6876 -1 -1 14 0.30 -1 -1 33396 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1410 8213 2036 5597 580 63.2 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.69 0.00102188 0.000945495 0.0490702 0.0453912 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.44 0.268305 0.234053 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0366234 0.0324489 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 10.35 vpr 62.57 MiB 0.03 6552 -1 -1 12 0.20 -1 -1 32448 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.75 1093 11281 2937 6811 1533 62.6 MiB 0.12 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000739598 0.000684599 0.0556871 0.051583 34 3493 43 6.79088e+06 242496 618332. 2139.56 4.73 0.239341 0.209101 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0277811 0.0245617 108 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 7.52 vpr 62.80 MiB 0.03 6784 -1 -1 13 0.28 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1323 14123 4442 7710 1971 62.8 MiB 0.16 0.00 7.64293 -157.325 -7.64293 7.64293 0.65 0.000910992 0.000843453 0.0851464 0.0791705 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.64 0.262284 0.230792 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.036052 0.0317784 132 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.66 vpr 62.36 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.67 0.000749268 0.000693755 0.05646 0.0522906 36 3009 44 6.79088e+06 215552 648988. 2245.63 3.01 0.236476 0.206462 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0177433 0.0160074 104 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 7.35 vpr 62.93 MiB 0.04 6852 -1 -1 12 0.21 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1030 11783 4465 6036 1282 62.9 MiB 0.13 0.00 7.13827 -153.033 -7.13827 7.13827 0.76 0.000851435 0.00078783 0.063309 0.0585885 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.36 0.233966 0.204359 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0305704 0.0270152 121 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.91 vpr 63.37 MiB 0.04 6908 -1 -1 15 0.46 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.93 1457 12373 3076 6798 2499 63.4 MiB 0.15 0.00 9.48621 -188.88 -9.48621 9.48621 0.66 0.00115167 0.00106615 0.0765741 0.0707904 46 4011 21 6.79088e+06 323328 828058. 2865.25 3.66 0.317332 0.277743 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0471324 0.0414787 176 250 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 5.95 vpr 61.80 MiB 0.03 6388 -1 -1 10 0.10 -1 -1 32076 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.2 MiB 1.50 678 9345 2965 4615 1765 61.8 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.66 0.000659133 0.000612134 0.0426856 0.039637 36 1722 23 6.79088e+06 148192 648988. 2245.63 1.75 0.154225 0.134529 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.23 0.05 0.15 -1 -1 0.23 0.0232266 0.0203336 63 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.58 vpr 62.45 MiB 0.04 6656 -1 -1 13 0.17 -1 -1 32472 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.70 930 9881 2975 5177 1729 62.4 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.65 0.000752687 0.000697858 0.0462136 0.0428857 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.11 0.219457 0.190866 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0297497 0.0261988 105 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 8.14 vpr 62.59 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32540 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.87 1026 12331 4984 6774 573 62.6 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.66 0.000835594 0.000773534 0.0627522 0.0580946 38 3211 42 6.79088e+06 229024 678818. 2348.85 3.41 0.260059 0.226507 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0337063 0.0296842 115 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 4.71 vpr 62.12 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32368 -1 -1 20 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 1.06 772 8553 2593 4994 966 62.1 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.70 0.000616888 0.000573226 0.0348058 0.0323538 32 2040 31 6.79088e+06 269440 586450. 2029.24 0.97 0.118619 0.104045 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0206391 0.0181989 86 111 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.87 vpr 63.19 MiB 0.05 6828 -1 -1 12 0.25 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.4 MiB 2.36 1475 10263 2607 5842 1814 63.2 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.65 0.000961972 0.000890265 0.0555956 0.0514356 38 4034 49 6.79088e+06 309856 678818. 2348.85 5.55 0.298123 0.25967 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0358162 0.0316376 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.09 vpr 63.22 MiB 0.04 6876 -1 -1 14 0.33 -1 -1 33024 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.66 0.00095869 0.000886502 0.0699998 0.0646894 38 3451 34 6.79088e+06 296384 678818. 2348.85 3.83 0.285693 0.24914 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.038403 0.0339505 151 204 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.46 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30736 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.20 895 12321 3076 8292 953 63.5 MiB 0.14 0.00 4.3249 -144.349 -4.3249 4.3249 0.66 0.000824308 0.000766581 0.0467388 0.0434153 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.30 0.150131 0.131748 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0309578 0.0269769 155 96 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.96 vpr 63.28 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30632 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.24 889 13477 4603 6656 2218 63.3 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.65 0.000758029 0.000703394 0.0583357 0.0541799 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.02 0.154216 0.136041 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323683 0.0280503 141 91 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.33 vpr 63.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30456 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.4 MiB 1.65 953 18428 5979 9684 2765 63.2 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.67 0.000741727 0.000686721 0.061256 0.0566361 30 2530 23 6.87369e+06 503058 556674. 1926.21 0.99 0.150016 0.13263 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308084 0.0267687 145 65 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.59 vpr 63.15 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.23 922 15090 5352 7218 2520 63.1 MiB 0.16 0.00 4.1666 -130.205 -4.1666 4.1666 0.70 0.000786983 0.000728851 0.0614599 0.0571558 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.63 0.199329 0.174925 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297362 0.0258013 136 34 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.31 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1047 14965 5078 8038 1849 63.3 MiB 0.15 0.00 4.2175 -149.421 -4.2175 4.2175 0.65 0.000741226 0.000688539 0.0621227 0.0577285 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.59 0.208179 0.182566 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.032851 0.0285934 147 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.74 vpr 63.32 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.11 1041 20588 6432 11323 2833 63.3 MiB 0.19 0.00 3.55395 -124.862 -3.55395 3.55395 0.65 0.000766237 0.000709123 0.0682532 0.0632196 32 2871 28 6.87369e+06 544980 586450. 2029.24 0.94 0.165902 0.146965 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.19 0.10 0.11 -1 -1 0.19 0.0323527 0.0280992 154 64 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.56 vpr 62.62 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30672 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.1 MiB 1.99 640 10388 2730 6621 1037 62.6 MiB 0.10 0.00 3.6994 -105.15 -3.6994 3.6994 0.68 0.000564366 0.000524551 0.0363824 0.0338211 28 1921 25 6.87369e+06 279477 531479. 1839.03 0.93 0.106706 0.0936416 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.17 0.07 0.13 -1 -1 0.17 0.0253451 0.0218606 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.27 vpr 63.14 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 0.87 969 14273 4212 7662 2399 63.1 MiB 0.13 0.00 3.61131 -114.549 -3.61131 3.61131 0.65 0.000664295 0.000617927 0.0443504 0.0411473 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.90 0.130101 0.114546 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.18 0.07 0.08 -1 -1 0.18 0.0259802 0.0226949 141 4 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.81 vpr 62.96 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.1 MiB 2.45 735 9712 2823 5738 1151 63.0 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.69 0.00050926 0.000466416 0.0345157 0.0317336 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.84 0.111252 0.0972724 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0227074 0.0197891 103 85 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.72 vpr 62.69 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.54 706 12808 2978 8428 1402 62.7 MiB 0.10 0.00 3.8076 -131.302 -3.8076 3.8076 0.67 0.00051977 0.000477234 0.0483749 0.0448819 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.57 0.196852 0.171433 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.027833 0.0241278 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.92 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 2.84 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.66 0.000651147 0.00060539 0.0465814 0.0433071 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.86 0.122218 0.108004 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0240918 0.0209726 109 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.24 vpr 63.06 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 1.31 881 15207 4108 9975 1124 63.1 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.66 0.000668208 0.000613345 0.0480654 0.0444845 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.38 0.178478 0.155449 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0249312 0.021619 116 65 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.48 vpr 63.28 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 4.23 958 19935 5624 11872 2439 63.3 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.69 0.000750177 0.000696164 0.0679397 0.062932 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.56 0.21544 0.188842 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.026464 0.0230953 147 58 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.87 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1059 21016 6637 11817 2562 63.4 MiB 0.20 0.00 4.34584 -150.842 -4.34584 4.34584 0.65 0.000778745 0.000719782 0.0742459 0.0687613 30 2683 24 6.87369e+06 517032 556674. 1926.21 0.96 0.16812 0.149083 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0335842 0.0291474 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.10 vpr 62.49 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30772 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.74 791 11776 3380 6895 1501 62.5 MiB 0.10 0.00 3.6364 -112.843 -3.6364 3.6364 0.66 0.000577156 0.000536725 0.0415926 0.0386977 32 2110 22 6.87369e+06 265503 586450. 2029.24 0.85 0.110343 0.0973497 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.19 0.07 0.12 -1 -1 0.19 0.022329 0.0193585 102 29 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.98 vpr 63.40 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.44 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.70 0.000782763 0.000727059 0.0623666 0.0579136 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.81 0.216391 0.188923 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0319652 0.0278269 145 63 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 63.35 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.18 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.65 0.000743976 0.000691406 0.0564693 0.0523558 28 2543 24 6.87369e+06 531006 531479. 1839.03 0.93 0.146379 0.129385 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0327378 0.0283884 148 57 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.19 vpr 63.04 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30040 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.20 836 17103 4501 10697 1905 63.0 MiB 0.17 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000677391 0.000629515 0.0649323 0.0602691 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.34 0.14913 0.132447 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0268488 0.0233194 117 65 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.95 vpr 62.16 MiB 0.03 6772 -1 -1 1 0.02 -1 -1 30228 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.54 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.67 0.000599612 0.000557753 0.0329556 0.0306448 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.90 0.102272 0.0895668 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.19 0.05 0.12 -1 -1 0.19 0.0174037 0.0151332 73 34 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.63 vpr 62.85 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 944 12636 3568 7641 1427 62.8 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.67 0.000668939 0.000621373 0.0526463 0.048927 32 2277 24 6.87369e+06 237555 586450. 2029.24 0.91 0.14042 0.124216 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0286841 0.0250083 113 64 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.14 vpr 63.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30196 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.88 894 19124 5624 10425 3075 63.2 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.67 0.00073568 0.000684357 0.0624691 0.0578932 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.64 0.212976 0.186411 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.19 0.05 0.09 -1 -1 0.19 0.0161849 0.0142448 150 34 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 9.70 vpr 63.48 MiB 0.03 7188 -1 -1 1 0.05 -1 -1 30564 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.7 MiB 2.84 951 19380 5821 10599 2960 63.5 MiB 0.19 0.00 3.81248 -128.436 -3.81248 3.81248 0.66 0.000965596 0.000890459 0.0710356 0.0655544 30 2850 21 6.87369e+06 558954 556674. 1926.21 4.09 0.279563 0.242999 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0338636 0.0294632 154 124 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.15 vpr 62.01 MiB 0.04 6820 -1 -1 1 0.02 -1 -1 30636 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.5 MiB 1.83 600 9219 3759 4898 562 62.0 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.66 0.000449184 0.000417831 0.0358766 0.0333842 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0874968 0.077471 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0192123 0.0165744 69 30 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.90 vpr 63.02 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1038 9757 2635 6591 531 63.0 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.66 0.000690641 0.000642682 0.0384623 0.0357679 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.76 0.177851 0.154779 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0289807 0.0252395 141 3 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.95 vpr 62.21 MiB 0.02 6644 -1 -1 1 0.04 -1 -1 30532 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.37 506 9516 2238 6770 508 62.2 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.66 0.000477073 0.000444144 0.0296652 0.0275798 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.20 0.122826 0.107296 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0260763 0.0226997 71 3 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.61 vpr 63.24 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.4 MiB 0.74 1092 17964 4627 11625 1712 63.2 MiB 0.20 0.00 4.26205 -149.131 -4.26205 4.26205 0.68 0.000747215 0.000685284 0.0679371 0.0628589 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.07 0.158056 0.140152 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289582 0.0252195 155 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.49 vpr 63.21 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.81 964 9612 2267 6482 863 63.2 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.66 0.000704692 0.000653942 0.0318044 0.0294946 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.03 0.131265 0.114954 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0283436 0.024758 151 3 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.31 vpr 63.33 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13358 3512 8899 947 63.3 MiB 0.14 0.00 4.2809 -148.724 -4.2809 4.2809 0.66 0.000787531 0.00073061 0.0461596 0.0427486 26 3507 43 6.87369e+06 544980 503264. 1741.40 2.59 0.157384 0.138137 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.17 0.13 0.13 -1 -1 0.17 0.0351887 0.0306229 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.61 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.87 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.67 0.000618767 0.000575155 0.0279089 0.0259652 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.40 0.16177 0.140414 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0224363 0.0196942 104 34 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.67 vpr 62.52 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.01 856 11260 3834 5392 2034 62.5 MiB 0.12 0.00 3.7936 -125.971 -3.7936 3.7936 0.74 0.000615131 0.00057151 0.0480709 0.0446482 32 2233 22 6.87369e+06 251529 586450. 2029.24 0.96 0.128142 0.113442 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.21 0.09 0.13 -1 -1 0.21 0.0309663 0.0268571 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.65 vpr 62.55 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30364 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 1.00 743 13092 5209 6121 1762 62.6 MiB 0.14 0.00 3.48175 -108.034 -3.48175 3.48175 0.66 0.00104244 0.000970629 0.056577 0.0526437 28 2217 26 6.87369e+06 265503 531479. 1839.03 0.98 0.130704 0.115795 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.24 0.07 0.11 -1 -1 0.24 0.019505 0.0171101 104 34 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.21 vpr 62.56 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.13 0.00 3.58201 -129.205 -3.58201 3.58201 0.65 0.000610198 0.000567512 0.0540774 0.0503314 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.41 0.172981 0.15157 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0250465 0.0217846 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.31 vpr 62.97 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.6 MiB 0.75 924 11975 3064 7554 1357 63.0 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.65 0.000628985 0.000584458 0.0374879 0.0348522 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.89 0.114705 0.100691 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0292368 0.0253047 119 34 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.35 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30060 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.0 MiB 2.47 824 15003 4455 7859 2689 62.9 MiB 0.13 0.00 2.90021 -94.838 -2.90021 2.90021 0.65 0.000625439 0.000579086 0.0476329 0.0441351 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.32 0.167999 0.146315 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.21 0.07 0.09 -1 -1 0.21 0.0249962 0.0216256 113 61 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.98 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30500 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.67 1315 20411 5511 12546 2354 63.6 MiB 0.22 0.00 4.25391 -147.758 -4.25391 4.25391 0.66 0.000951756 0.000889169 0.0717005 0.066358 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.38 0.185272 0.163801 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.18 0.13 0.12 -1 -1 0.18 0.0376156 0.0326261 184 29 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.40 vpr 63.34 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 2.74 1049 18419 4848 10881 2690 63.3 MiB 0.17 0.00 3.66825 -130.624 -3.66825 3.66825 0.65 0.000785432 0.000729863 0.0620304 0.0574961 32 2652 21 6.87369e+06 544980 586450. 2029.24 0.91 0.152535 0.135162 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0268916 0.0235475 154 65 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.32 vpr 62.79 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.4 MiB 3.18 881 17134 5393 9307 2434 62.8 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.66 0.000679746 0.000630078 0.0569747 0.0527326 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.43 0.184421 0.161195 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0260103 0.0224943 116 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.33 vpr 63.25 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30380 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.93 1019 8641 2131 5612 898 63.3 MiB 0.12 0.00 3.59121 -120.774 -3.59121 3.59121 0.69 0.000901426 0.000837606 0.0419826 0.0390702 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.59 0.200644 0.174369 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319811 0.0277115 141 64 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.10 vpr 63.56 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.65 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.67 0.000838496 0.00077902 0.078059 0.0725153 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.68 0.231984 0.203309 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.22 0.07 0.14 -1 -1 0.22 0.0256751 0.0223169 145 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.98 vpr 63.32 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.65 0.00076967 0.000714377 0.0529953 0.0492247 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.53 0.203831 0.177919 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0320425 0.0278831 141 90 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.31 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1053 19023 5653 10954 2416 63.3 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.66 0.000753904 0.000700112 0.0649646 0.0601688 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.45 0.212462 0.186034 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311568 0.0269399 148 64 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.60 vpr 63.21 MiB 0.05 7092 -1 -1 1 0.05 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1150 19618 5466 12522 1630 63.2 MiB 0.18 0.00 4.1996 -145.707 -4.1996 4.1996 0.66 0.000768546 0.000713743 0.0659248 0.0610962 30 2927 24 6.87369e+06 531006 556674. 1926.21 4.24 0.248663 0.217349 25186 138497 -1 2218 18 1562 2480 174353 38167 3.7701 3.7701 -147.596 -3.7701 0 0 706193. 2443.58 0.25 0.08 0.10 -1 -1 0.25 0.0271111 0.0236894 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.96 vpr 64.03 MiB 0.03 7236 -1 -1 1 0.04 -1 -1 30788 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.1 MiB 3.12 1303 13356 3327 8820 1209 64.0 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.65 0.000928107 0.000854251 0.0529036 0.0489521 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.16 0.161466 0.141839 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.17 0.11 0.11 -1 -1 0.17 0.0373986 0.032535 186 96 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.85 vpr 62.59 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.81 908 12636 4255 7048 1333 62.6 MiB 0.13 0.00 3.7654 -130.371 -3.7654 3.7654 0.65 0.000629638 0.000585682 0.0506952 0.0471489 34 2191 32 6.87369e+06 237555 618332. 2139.56 1.51 0.182895 0.159836 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0233526 0.0202751 112 34 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.40 vpr 63.30 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.49 1036 19820 6398 10981 2441 63.3 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.66 0.000766016 0.000711435 0.0692492 0.0642729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.23 0.181169 0.160024 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.20 0.11 0.13 -1 -1 0.20 0.0321021 0.0278334 152 64 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.91 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30704 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1118 16515 4839 10227 1449 63.4 MiB 0.16 0.00 3.56001 -125.702 -3.56001 3.56001 0.66 0.000775388 0.000720561 0.0582834 0.0540856 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.35 0.150679 0.13316 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0311658 0.0270078 150 63 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.27 vpr 63.19 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 942 16081 4088 11306 687 63.2 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.66 0.000708782 0.000658644 0.0637822 0.0592522 34 3051 25 6.87369e+06 293451 618332. 2139.56 2.17 0.205772 0.180814 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0316372 0.0275019 147 3 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.33 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30560 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.56 1066 20980 7180 11264 2536 63.3 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.65 0.000790765 0.000734141 0.0745136 0.0689941 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.51 0.23023 0.202274 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0308858 0.0268074 148 96 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.37 vpr 63.30 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1032 19142 4987 12020 2135 63.3 MiB 0.20 0.00 3.61805 -127.505 -3.61805 3.61805 0.67 0.000760629 0.000705234 0.0710442 0.0657893 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.28 0.182299 0.160931 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.17 0.05 0.07 -1 -1 0.17 0.0179675 0.0156835 152 61 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.43 vpr 63.38 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.72 1111 18648 5184 11229 2235 63.4 MiB 0.18 0.00 3.58025 -126.995 -3.58025 3.58025 0.66 0.000768883 0.00071323 0.0662197 0.0613132 32 2918 26 6.87369e+06 558954 586450. 2029.24 0.98 0.159213 0.140945 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0321075 0.0280837 156 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.58 vpr 63.29 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30648 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.84 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.69 0.000753225 0.000700128 0.0426039 0.0395544 34 2850 24 6.87369e+06 544980 618332. 2139.56 1.99 0.191678 0.167373 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0278979 0.0243932 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.14 vpr 63.24 MiB 0.05 6956 -1 -1 1 0.04 -1 -1 30664 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1087 15172 3966 9854 1352 63.2 MiB 0.15 0.00 4.1996 -143.047 -4.1996 4.1996 0.69 0.000774825 0.000719516 0.0509635 0.0471673 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.71 0.211864 0.184404 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0331884 0.0288214 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.46 vpr 63.77 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30580 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 25.1 MiB 3.71 988 19356 5396 10906 3054 63.8 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.65 0.000830933 0.000770036 0.0712429 0.065899 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.01 0.169308 0.149593 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0330511 0.0285719 150 122 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.15 vpr 63.47 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1079 15709 4633 9421 1655 63.5 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.66 0.000812796 0.000754658 0.0711953 0.0661087 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.72 0.230343 0.201755 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0343442 0.0297476 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.40 vpr 62.59 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30540 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.0 MiB 0.84 919 15426 4260 9754 1412 62.6 MiB 0.13 0.00 3.51475 -125.544 -3.51475 3.51475 0.66 0.000638318 0.000593958 0.0478223 0.0443698 32 2428 31 6.87369e+06 447163 586450. 2029.24 0.94 0.134697 0.118574 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0273314 0.0236843 121 34 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.54 vpr 63.25 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.86 953 12980 4579 7047 1354 63.3 MiB 0.14 0.00 3.6884 -132.193 -3.6884 3.6884 0.68 0.000714009 0.000662914 0.0590387 0.0547913 32 2548 27 6.87369e+06 223581 586450. 2029.24 0.93 0.147839 0.13069 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.22 0.10 0.15 -1 -1 0.22 0.0341031 0.0296644 112 94 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.06 vpr 63.43 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30788 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.9 MiB 1.90 1419 16556 4403 10830 1323 63.4 MiB 0.18 0.00 4.99284 -170.715 -4.99284 4.99284 0.66 0.00106753 0.000993415 0.0614611 0.0569834 28 3950 45 6.87369e+06 614849 531479. 1839.03 2.46 0.19887 0.17469 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.20 0.14 0.08 -1 -1 0.20 0.037568 0.0325996 189 65 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.20 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.55 1069 15831 4027 10006 1798 63.2 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.66 0.000780036 0.000723825 0.0544397 0.050286 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.13 0.142686 0.125882 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0413221 0.0356822 150 34 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.27 vpr 63.02 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30296 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.67 823 15633 5297 7776 2560 63.0 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.65 0.000617644 0.000573172 0.048343 0.0448172 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.03 0.123391 0.108888 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.17 0.04 0.07 -1 -1 0.17 0.0161521 0.0141071 116 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.93 vpr 63.50 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 31072 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 24.9 MiB 5.40 1193 22455 6528 13018 2909 63.5 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.69 0.000953751 0.00088506 0.0835759 0.0774261 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.62 0.239314 0.210922 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.21 0.14 0.13 -1 -1 0.21 0.0437943 0.0378161 190 127 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.20 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.3 MiB 2.86 975 19868 5843 10688 3337 63.2 MiB 0.17 0.00 4.28153 -144.516 -4.28153 4.28153 0.67 0.000750213 0.000696956 0.0632288 0.0586669 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.19 0.183376 0.161556 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289729 0.0251684 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.08 vpr 62.68 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.59 857 11197 2857 7409 931 62.7 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.65 0.000622527 0.000579222 0.0331289 0.030761 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.87 0.107121 0.0941421 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0262032 0.0226931 123 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.70 vpr 63.43 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1249 21169 5887 12519 2763 63.4 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.66 0.00085602 0.00079554 0.0723584 0.06716 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.51 0.183078 0.16176 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.19 0.14 0.11 -1 -1 0.19 0.0372862 0.0322512 189 34 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.87 806 12292 2857 8871 564 62.8 MiB 0.11 0.00 3.7764 -134.344 -3.7764 3.7764 0.65 0.000604044 0.000561094 0.0452227 0.0420221 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.37 0.166068 0.145075 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0264163 0.0228978 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.64 vpr 62.72 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30060 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.16 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.65 0.000614356 0.000571372 0.0315518 0.0292482 28 2094 21 6.87369e+06 461137 531479. 1839.03 0.92 0.104927 0.0919668 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.026353 0.022756 118 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.17 vpr 63.34 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30260 -1 -1 35 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.05 1008 14550 3923 8443 2184 63.3 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.68 0.000741532 0.000688413 0.0515543 0.0478369 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.47 0.195202 0.170421 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292661 0.025383 141 88 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.46 vpr 63.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 2.03 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.65 0.000753416 0.000701605 0.0531092 0.049309 34 2806 28 6.87369e+06 293451 618332. 2139.56 1.78 0.209919 0.183107 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.0352036 0.0305181 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.59 vpr 63.40 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.91 1100 18901 5336 11603 1962 63.4 MiB 0.18 0.00 4.27679 -150.534 -4.27679 4.27679 0.56 0.000790326 0.000727356 0.0651175 0.0603553 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.05 0.156513 0.13878 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.18 0.09 0.13 -1 -1 0.18 0.0330496 0.0286816 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.94 vpr 63.12 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 2.86 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.65 0.000686204 0.00063105 0.0547869 0.0507557 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.46 0.187298 0.163615 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0270182 0.02349 123 65 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.09 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.65 0.00067665 0.000629265 0.0193315 0.0179786 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.43 0.149279 0.128934 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278404 0.0240939 108 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.73 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.68 914 16740 4391 9932 2417 63.2 MiB 0.16 0.00 3.59605 -116.379 -3.59605 3.59605 0.69 0.000726804 0.00067534 0.0586669 0.0544782 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.32 0.19726 0.172673 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026658 0.0231992 143 60 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.95 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.2 MiB 1.48 905 12191 3346 7959 886 63.0 MiB 0.11 0.00 4.19891 -125.962 -4.19891 4.19891 0.66 0.000667003 0.000620877 0.0398213 0.0369411 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.61 0.121865 0.106907 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.16 0.11 0.11 -1 -1 0.16 0.0340326 0.0294761 139 34 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.69 vpr 62.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.24 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.67 0.00064665 0.000600903 0.0452925 0.042106 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.86 0.119422 0.105373 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0261104 0.0226434 110 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.23 vpr 63.13 MiB 0.04 6872 -1 -1 1 0.04 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.05 904 14256 4718 7453 2085 63.1 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.66 0.000703585 0.000650192 0.0597809 0.0555272 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.37 0.19492 0.170785 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0279126 0.024247 110 91 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.88 vpr 62.88 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30184 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.79 962 16804 5215 8614 2975 62.9 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.65 0.000808979 0.000759869 0.0529431 0.0491689 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.45 0.13249 0.11744 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.18 0.09 0.12 -1 -1 0.18 0.0260193 0.0227999 151 4 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.00 vpr 63.53 MiB 0.05 6968 -1 -1 1 0.05 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 3.93 1093 19380 5712 11198 2470 63.5 MiB 0.18 0.00 4.29189 -149.386 -4.29189 4.29189 0.66 0.000773174 0.000717835 0.0658998 0.0610278 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.37 0.162521 0.143906 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0352847 0.030557 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.19 vpr 63.41 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.51 1146 17256 4889 10338 2029 63.4 MiB 0.18 0.00 4.30289 -150.744 -4.30289 4.30289 0.65 0.000781793 0.00072618 0.0666785 0.0618434 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.01 0.160697 0.142402 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308231 0.0268498 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.97 vpr 63.17 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30528 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.81 1114 16491 4519 10066 1906 63.2 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.65 0.000763161 0.000708717 0.0554139 0.051306 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.51 0.162854 0.143553 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313768 0.0272022 152 65 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.86 vpr 62.68 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 746 10406 2932 6420 1054 62.7 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.65 0.000616316 0.000573793 0.0385431 0.0358612 32 2264 21 6.87369e+06 265503 586450. 2029.24 0.89 0.110609 0.0974482 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.21 0.09 0.14 -1 -1 0.21 0.0256651 0.0223086 110 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.54 vpr 63.23 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.4 MiB 2.95 980 15709 4819 8970 1920 63.2 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.66 0.00073329 0.000680726 0.0643365 0.0597156 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.93 0.155382 0.137461 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0283602 0.0246686 140 63 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.93 vpr 63.62 MiB 0.04 7188 -1 -1 1 0.04 -1 -1 30872 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.8 MiB 4.94 1155 15540 3963 10188 1389 63.6 MiB 0.16 0.00 4.23385 -146.284 -4.23385 4.23385 0.67 0.00086016 0.000796699 0.0557272 0.0515611 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.21 0.183672 0.160561 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0372594 0.0321419 158 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.92 vpr 63.46 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1029 18273 5989 9373 2911 63.5 MiB 0.18 0.00 4.26989 -143.564 -4.26989 4.26989 0.65 0.000797005 0.000740538 0.0693751 0.064245 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.20 0.145321 0.129603 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0337583 0.0293146 149 94 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 5.90 vpr 63.26 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30648 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.15 942 16921 5030 8706 3185 63.3 MiB 0.17 0.00 3.63595 -118.056 -3.63595 3.63595 0.67 0.000762288 0.000700316 0.0626343 0.0579815 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.02 0.160772 0.14198 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.19 0.08 0.13 -1 -1 0.19 0.0309738 0.0268622 141 92 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.70 vpr 63.63 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.20 1087 14593 4252 9147 1194 63.6 MiB 0.16 0.00 4.1996 -148.308 -4.1996 4.1996 0.65 0.000780075 0.000724251 0.0637187 0.0591754 34 3260 29 6.87369e+06 293451 618332. 2139.56 1.88 0.226378 0.198045 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.20 0.12 0.09 -1 -1 0.20 0.0342308 0.0297091 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.67 vpr 63.16 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30332 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.12 943 12751 3363 8405 983 63.2 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.63 0.000737109 0.000682388 0.0452754 0.0419034 26 2618 24 6.87369e+06 503058 503264. 1741.40 0.95 0.140566 0.123506 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0312349 0.027035 138 88 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.55 vpr 62.57 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.62 862 12292 3174 7904 1214 62.6 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.65 0.000612204 0.000569761 0.0456634 0.0425053 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.35 0.161486 0.141329 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241587 0.0210505 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.00 vpr 63.34 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30344 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.19 1088 19841 5443 12522 1876 63.3 MiB 0.19 0.00 4.3249 -149.309 -4.3249 4.3249 0.66 0.000772559 0.000715829 0.0680462 0.0629887 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.00 0.162678 0.144142 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.19 0.11 0.14 -1 -1 0.19 0.0345776 0.0299965 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.29 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.84 1071 15151 5130 8107 1914 63.3 MiB 0.16 0.00 4.2388 -148.068 -4.2388 4.2388 0.66 0.00077875 0.000722277 0.0661096 0.0613743 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.61 0.219556 0.192488 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0325765 0.0283577 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.26 vpr 62.93 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.0 MiB 3.32 885 16708 4981 9424 2303 62.9 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.000658966 0.000612815 0.0536003 0.0497633 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.32 0.177315 0.155474 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262076 0.0227107 112 55 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.30 vpr 62.47 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 0.82 723 6960 1528 4773 659 62.5 MiB 0.09 0.00 3.7434 -125.643 -3.7434 3.7434 0.66 0.000751047 0.000699405 0.0280819 0.026162 32 2245 24 6.87369e+06 237555 586450. 2029.24 0.91 0.102889 0.0900109 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.023112 0.0200812 112 4 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.26 vpr 63.30 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.69 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.65 0.000755549 0.000702316 0.0643126 0.0596367 28 2603 22 6.87369e+06 489084 531479. 1839.03 0.90 0.151806 0.134682 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0281979 0.024527 144 59 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.09 vpr 63.22 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1094 18745 5603 10775 2367 63.2 MiB 0.17 0.00 4.21185 -141.009 -4.21185 4.21185 0.65 0.000761726 0.000706579 0.0669063 0.0619691 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.22 0.167508 0.148047 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.18 0.10 0.12 -1 -1 0.18 0.0360327 0.0312447 142 88 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.71 vpr 63.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.92 1329 17642 5677 9392 2573 63.4 MiB 0.18 0.00 4.98719 -165.596 -4.98719 4.98719 0.63 0.000797412 0.000740577 0.0597168 0.0554178 34 3730 48 6.87369e+06 572927 618332. 2139.56 3.00 0.255546 0.223881 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0340414 0.0296232 183 3 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.67 vpr 63.21 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.54 1005 13300 3782 8501 1017 63.2 MiB 0.14 0.00 3.59605 -120.715 -3.59605 3.59605 0.66 0.000717272 0.000665628 0.0502434 0.0465363 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.47 0.194386 0.169441 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0264931 0.0230704 141 59 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.12 vpr 62.46 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.70 735 12247 4571 5926 1750 62.5 MiB 0.11 0.00 3.6866 -109.378 -3.6866 3.6866 0.66 0.000438321 0.000402263 0.0441998 0.0409729 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.83 0.108583 0.0959298 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0254477 0.0222748 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.50 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30608 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 2.40 1290 11856 2585 8478 793 63.5 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.65 0.000911214 0.000843078 0.0472187 0.0437474 30 3626 23 6.87369e+06 586901 556674. 1926.21 1.43 0.1571 0.137866 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.19 0.10 0.12 -1 -1 0.19 0.0385309 0.0333936 184 95 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.01 vpr 63.35 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.14 874 9914 2276 6234 1404 63.4 MiB 0.11 0.00 4.91157 -150.663 -4.91157 4.91157 0.66 0.000827605 0.000768579 0.0461521 0.042895 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.13 0.221078 0.191836 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0339433 0.0293362 144 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.04 vpr 62.92 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.01 802 14356 5267 6628 2461 62.9 MiB 0.14 0.00 4.598 -126.496 -4.598 4.598 0.68 0.000683953 0.000634897 0.0601246 0.0558216 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.38 0.195489 0.171096 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236867 0.0209187 107 89 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.18 vpr 63.28 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.5 MiB 0.91 1114 14723 4652 8968 1103 63.3 MiB 0.17 0.00 4.1955 -143.003 -4.1955 4.1955 0.66 0.000727696 0.00067575 0.0569265 0.0526309 28 2955 24 6.87369e+06 475111 531479. 1839.03 1.57 0.146848 0.130104 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.18 0.11 0.12 -1 -1 0.18 0.0290997 0.0253113 147 34 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.90 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.9 MiB 1.94 1006 19865 6118 9930 3817 63.6 MiB 0.20 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000856362 0.000787946 0.0737644 0.0680664 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.04 0.261921 0.228464 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.03676 0.0317884 176 64 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.09 vpr 63.18 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1085 17873 5357 10009 2507 63.2 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.65 0.000720965 0.000669362 0.0599912 0.0555172 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.60 0.204157 0.178497 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300644 0.0260486 144 61 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.76 vpr 63.40 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 46 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.49 1127 20887 5685 13197 2005 63.4 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 0.66 0.000788578 0.000731863 0.0657779 0.0609127 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.48 0.159922 0.141491 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0342995 0.0297039 160 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.93 vpr 63.66 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1115 19606 5308 11826 2472 63.7 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.71 0.000774671 0.000719273 0.0636793 0.0590545 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.47 0.184439 0.162356 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0351058 0.0304891 157 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.55 vpr 62.57 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.61 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.69 0.000600059 0.000558053 0.0481315 0.0447571 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.29 0.172589 0.150466 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.20 0.06 0.11 -1 -1 0.20 0.0231166 0.0200212 107 34 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 63.00 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.16 808 7256 1653 5365 238 63.0 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.66 0.000655947 0.000609585 0.0291951 0.0271077 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.50 0.165215 0.143015 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.0174827 0.0153623 102 82 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.08 vpr 63.35 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1136 19618 6151 11073 2394 63.3 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.67 0.000739426 0.000687628 0.0625609 0.0580227 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.67 0.168992 0.149286 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0306524 0.0267349 152 34 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.02 vpr 62.55 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 23.9 MiB 3.12 794 17103 5256 9538 2309 62.5 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.66 0.000732981 0.000681337 0.0512668 0.0475683 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.30 0.136931 0.120641 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.15 0.10 0.10 -1 -1 0.15 0.0277466 0.0239175 108 56 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.47 vpr 62.82 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.23 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.71 0.000651743 0.000606525 0.0497787 0.0462442 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.46 0.183816 0.160462 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.026802 0.0232539 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.46 vpr 63.34 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1003 13598 3664 8482 1452 63.3 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.67 0.000756087 0.000695232 0.0489639 0.0453438 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.36 0.193099 0.168457 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.028702 0.0248798 146 64 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.31 vpr 62.78 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.79 698 11402 3727 5924 1751 62.8 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.72 0.000630362 0.000585237 0.0446494 0.0414952 26 2239 28 6.87369e+06 223581 503264. 1741.40 0.96 0.124848 0.109778 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0251477 0.0217892 103 55 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.25 vpr 63.30 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.4 MiB 2.61 1019 17256 4700 9815 2741 63.3 MiB 0.17 0.00 3.59195 -122.625 -3.59195 3.59195 0.66 0.000775791 0.000725351 0.0543374 0.0501793 32 2782 36 6.87369e+06 517032 586450. 2029.24 0.97 0.124028 0.109911 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.20 0.09 0.08 -1 -1 0.20 0.0328952 0.028551 143 65 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.80 vpr 63.36 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30348 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.10 929 10336 2368 6764 1204 63.4 MiB 0.12 0.00 3.59605 -120.102 -3.59605 3.59605 0.67 0.000954493 0.000879385 0.0384382 0.0355927 32 2620 21 6.87369e+06 544980 586450. 2029.24 0.99 0.140274 0.123039 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0340739 0.0295237 151 93 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.40 vpr 62.92 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.42 812 13206 3975 7418 1813 62.9 MiB 0.13 0.00 3.26897 -114.681 -3.26897 3.26897 0.65 0.000661677 0.000614619 0.0525356 0.0488033 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.36 0.187335 0.16367 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0291006 0.0254726 110 61 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.71 vpr 63.18 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.09 923 10056 2840 6443 773 63.2 MiB 0.12 0.00 3.6884 -128.712 -3.6884 3.6884 0.72 0.000683846 0.000636064 0.0453038 0.0421213 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.94 0.129975 0.114587 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0288887 0.025074 112 63 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.96 vpr 63.20 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30660 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1032 14988 3846 9829 1313 63.2 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.65 0.000771264 0.000715448 0.0504058 0.0466934 34 2540 20 6.87369e+06 558954 618332. 2139.56 1.58 0.19899 0.173873 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0341398 0.029763 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 63.13 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.21 880 11759 2826 8215 718 63.1 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.68 0.000717498 0.000664608 0.031817 0.0293698 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.71 0.142312 0.123945 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0306797 0.0265987 140 62 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.45 vpr 63.50 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30692 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.75 930 19136 5654 10352 3130 63.5 MiB 0.21 0.00 4.25669 -144.754 -4.25669 4.25669 0.66 0.000868862 0.000798952 0.0792822 0.0734335 34 2868 25 6.87369e+06 558954 618332. 2139.56 1.92 0.26059 0.228082 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0357247 0.030804 157 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.16 vpr 62.33 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30232 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 0.65 801 6501 1452 4525 524 62.3 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.73 0.00057597 0.000535847 0.0249699 0.0232568 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.87 0.10285 0.0898931 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.19 0.08 0.10 -1 -1 0.19 0.0261874 0.0228877 104 4 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.80 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.53 977 17961 5555 9821 2585 63.7 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.65 0.000778746 0.000715034 0.0618852 0.05732 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.48 0.210948 0.18454 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0270205 0.0235709 147 92 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.96 vpr 63.06 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.90 961 12808 4157 6979 1672 63.1 MiB 0.13 0.00 3.7416 -135.274 -3.7416 3.7416 0.65 0.000716397 0.000664129 0.0562931 0.052254 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.38 0.195542 0.17106 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0310427 0.0269383 114 96 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.73 vpr 63.26 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1013 13117 3136 9263 718 63.3 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.65 0.000867654 0.000801319 0.0446385 0.0413264 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.29 0.155098 0.135901 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0340171 0.0295209 153 65 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.61 vpr 63.51 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.25 1138 14475 3597 10051 827 63.5 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000922833 0.000857177 0.0534347 0.0494461 32 3530 43 6.87369e+06 656770 586450. 2029.24 1.50 0.190793 0.166873 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.19 0.13 0.14 -1 -1 0.19 0.0407452 0.0353433 190 96 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.22 vpr 62.23 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.90 613 9036 2242 6211 583 62.2 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000529727 0.000492728 0.0315819 0.0293703 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.80 0.0948377 0.0831344 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.20 0.05 0.13 -1 -1 0.20 0.0177852 0.015482 72 56 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.54 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 764 12120 4745 5717 1658 62.5 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000619074 0.000575869 0.0465721 0.0433318 32 2131 23 6.87369e+06 251529 586450. 2029.24 0.89 0.121427 0.10727 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.20 0.09 0.14 -1 -1 0.20 0.0308532 0.0267 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.60 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 884 12464 4265 6183 2016 63.0 MiB 0.13 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000648627 0.00060256 0.0494308 0.0459043 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.61 0.179223 0.156751 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.21 0.10 0.18 -1 -1 0.21 0.0291762 0.0252425 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.13 vpr 62.48 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.5 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.69 0.000536234 0.000499064 0.0406833 0.0378205 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.82 0.102713 0.0905946 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0239987 0.0207911 105 34 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.93 vpr 63.42 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.53 1035 11989 3061 8035 893 63.4 MiB 0.14 0.00 4.14459 -143.245 -4.14459 4.14459 0.67 0.000917043 0.000859411 0.056505 0.0524247 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.68 0.214136 0.186802 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311656 0.0271431 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.71 vpr 63.41 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30348 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.5 MiB 2.48 969 12394 3038 8536 820 63.4 MiB 0.13 0.00 3.62425 -121.977 -3.62425 3.62425 0.72 0.000632201 0.000576616 0.044336 0.0409093 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.44 0.199252 0.173141 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.034764 0.0302143 151 94 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.93 vpr 63.36 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30596 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1383 18363 6134 9531 2698 63.4 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000814662 0.000756751 0.0745697 0.0692271 36 3373 46 6.89349e+06 408721 648988. 2245.63 1.52 0.198317 0.174686 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0316248 0.0275274 192 96 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.33 vpr 63.33 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1338 16411 5641 8181 2589 63.3 MiB 0.17 0.00 5.22297 -160.634 -5.22297 5.22297 0.66 0.000771333 0.000716127 0.0646034 0.0600002 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.17 0.225976 0.197639 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0340051 0.0294828 177 91 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.57 vpr 63.04 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1277 15533 4267 9018 2248 63.0 MiB 0.17 0.00 4.0146 -140.879 -4.0146 4.0146 0.66 0.000904504 0.000841248 0.0651527 0.0604988 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.08 0.231806 0.202867 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0301146 0.0262361 167 65 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.19 vpr 62.88 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1071 16718 5447 9404 1867 62.9 MiB 0.17 0.00 4.53305 -141.516 -4.53305 4.53305 0.65 0.000678768 0.000629657 0.0629253 0.0584318 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.60 0.206028 0.18034 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298366 0.0256272 148 34 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.90 vpr 63.05 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.2 MiB 1.80 1361 14518 4265 8140 2113 63.0 MiB 0.17 0.00 5.03124 -172.909 -5.03124 5.03124 0.68 0.000744171 0.000691603 0.0624521 0.0580995 36 3336 26 6.89349e+06 338252 648988. 2245.63 2.23 0.218016 0.191295 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0287129 0.0250095 163 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.20 vpr 63.26 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1499 20359 6047 11800 2512 63.3 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.70 0.000765735 0.000710406 0.0659912 0.060989 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.63 0.225103 0.197021 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.22 0.11 0.16 -1 -1 0.22 0.0377332 0.0327929 179 64 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.72 vpr 62.41 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 1.40 730 14528 4147 9388 993 62.4 MiB 0.12 0.00 3.83226 -109.129 -3.83226 3.83226 0.66 0.000570349 0.000530453 0.0502473 0.046429 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.85 0.12109 0.106741 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.020886 0.0181141 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.79 vpr 62.97 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30192 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.70 921 14273 4335 7347 2591 63.0 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.66 0.000667263 0.00061852 0.0445223 0.0412815 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.50 0.173638 0.151537 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251962 0.0218916 141 4 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.63 vpr 62.80 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1141 14358 3961 8348 2049 62.8 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.65 0.000667176 0.000620384 0.0549113 0.0510073 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.46 0.207373 0.1806 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0258118 0.0224631 140 85 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.65 vpr 62.68 MiB 0.02 6832 -1 -1 1 0.02 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.53 873 6923 1573 5100 250 62.7 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000653017 0.000607625 0.027036 0.0251553 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.45 0.164051 0.141865 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.022868 0.0200957 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.82 vpr 62.95 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.87 942 6923 1677 4944 302 62.9 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.65 0.000653269 0.000607913 0.027475 0.0255772 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.37 0.155406 0.134354 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246215 0.0215017 135 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.09 vpr 63.02 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 883 15822 6326 7340 2156 63.0 MiB 0.16 0.00 3.8129 -121.35 -3.8129 3.8129 0.65 0.000667063 0.000620052 0.0654446 0.0605474 36 2401 21 6.89349e+06 281877 648988. 2245.63 1.97 0.194438 0.170413 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0215603 0.0188545 135 65 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 63.29 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.5 MiB 1.18 987 17513 5731 7853 3929 63.3 MiB 0.15 0.00 4.23419 -140.25 -4.23419 4.23419 0.71 0.000752529 0.000698813 0.0690538 0.0641029 38 3008 43 6.89349e+06 352346 678818. 2348.85 3.79 0.243409 0.213178 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0301451 0.0262744 161 58 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.72 vpr 63.29 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1162 11063 2970 6995 1098 63.3 MiB 0.13 0.00 5.02024 -166.562 -5.02024 5.02024 0.69 0.000784876 0.000729547 0.0447949 0.0416092 36 3019 23 6.89349e+06 394628 648988. 2245.63 1.65 0.198332 0.172675 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297018 0.0258776 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.25 vpr 62.37 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.34 754 11296 2879 7697 720 62.4 MiB 0.10 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000574843 0.000535077 0.0385279 0.0358409 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.32 0.158036 0.137188 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237539 0.0205872 112 29 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.25 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1259 17315 5682 9212 2421 63.3 MiB 0.19 0.00 4.31019 -146.5 -4.31019 4.31019 0.67 0.000771233 0.000716628 0.0706687 0.0655446 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.01 0.234803 0.205348 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0320295 0.0278038 174 63 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.23 vpr 63.23 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1183 12365 3291 7811 1263 63.2 MiB 0.14 0.00 3.69045 -130.871 -3.69045 3.69045 0.70 0.000750409 0.000697488 0.0535743 0.0497959 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.44 0.199528 0.17421 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252498 0.0220485 160 57 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.90 vpr 62.96 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.66 0.000676303 0.000628844 0.0576347 0.0535386 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.55 0.211748 0.184358 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0242771 0.0212977 139 65 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.92 vpr 62.16 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 0.91 569 8227 1998 5670 559 62.2 MiB 0.07 0.00 3.06366 -95.1937 -3.06366 3.06366 0.71 0.000504474 0.000469591 0.0305402 0.0284067 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.33 0.136929 0.118765 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0205741 0.0177333 85 34 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.28 vpr 62.94 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.65 0.000663957 0.000616671 0.0509524 0.0473151 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.44 0.183452 0.160239 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255511 0.0222404 141 64 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.23 vpr 63.00 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.94 1052 20112 6009 11047 3056 63.0 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.69 0.000730979 0.000679574 0.0635106 0.058872 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.55 0.212695 0.186528 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0277791 0.0241897 166 34 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.70 vpr 63.43 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1507 16511 4972 9774 1765 63.4 MiB 0.18 0.00 4.34661 -147.62 -4.34661 4.34661 0.65 0.00085323 0.000793618 0.0688169 0.0639282 36 3423 27 6.89349e+06 436909 648988. 2245.63 1.61 0.238115 0.207872 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0353182 0.0306665 201 124 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.51 vpr 62.10 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.23 692 10476 3888 5359 1229 62.1 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.69 0.000453685 0.000422005 0.0314768 0.0292775 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.70 0.139016 0.120288 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0134009 0.0117558 77 30 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.01 vpr 63.02 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30140 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1016 9571 2543 6414 614 63.0 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.65 0.000689839 0.000641581 0.0376758 0.0350422 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.33 0.134323 0.117734 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.18 0.08 0.09 -1 -1 0.18 0.0308415 0.0267066 141 3 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 61.88 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.5 MiB 0.31 514 9356 2285 6456 615 61.9 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.65 0.000470195 0.000437111 0.0289716 0.0269239 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.80 0.0810777 0.0716888 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.17 0.05 0.11 -1 -1 0.17 0.017299 0.0151035 71 3 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.84 vpr 63.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1097 15929 4551 10101 1277 63.1 MiB 0.17 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.00074212 0.00069041 0.061923 0.0575796 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.92 0.152959 0.135604 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0272663 0.0239687 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.28 vpr 62.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30040 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.68 885 10772 2583 7345 844 63.0 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.65 0.000699184 0.000648524 0.0347602 0.0322028 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.01 0.141413 0.123618 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0284688 0.0247894 151 3 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.18 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30452 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.3 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.65 0.000811709 0.000751433 0.0353053 0.0328058 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.87 0.19101 0.166039 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0321296 0.0279349 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.24 vpr 62.50 MiB 0.02 6780 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.69 863 14256 5690 7135 1431 62.5 MiB 0.13 0.00 3.57625 -122.952 -3.57625 3.57625 0.66 0.000617675 0.000574261 0.0524083 0.0487129 36 2395 27 6.89349e+06 239595 648988. 2245.63 1.87 0.178267 0.155801 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0261654 0.0227301 118 34 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.88 vpr 62.54 MiB 0.03 6896 -1 -1 1 0.05 -1 -1 30244 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.58 1065 12331 4460 6746 1125 62.5 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000618654 0.000575045 0.0456839 0.0424895 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.55 0.167686 0.146275 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0236671 0.0205487 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30336 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.93 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.67 0.000588695 0.000547534 0.037111 0.034541 30 2437 23 6.89349e+06 295971 556674. 1926.21 0.92 0.108192 0.0951554 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0315655 0.0272671 115 34 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.24 vpr 62.36 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 860 14700 5342 7547 1811 62.4 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.65 0.000613571 0.0005711 0.0548607 0.0510648 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.38 0.175613 0.154105 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0235494 0.0204532 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.77 vpr 62.36 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 985 14322 4727 7440 2155 62.4 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.66 0.000625972 0.000582575 0.0525159 0.0488251 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.92 0.136137 0.120401 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0246196 0.0214825 121 34 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.49 vpr 62.54 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30184 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1052 14724 4760 7779 2185 62.5 MiB 0.16 0.00 3.57215 -115.596 -3.57215 3.57215 0.66 0.0006679 0.000615592 0.0615132 0.0571439 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.36 0.203841 0.178033 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0236364 0.0206202 130 61 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.87 vpr 63.40 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1199 18247 5521 9891 2835 63.4 MiB 0.20 0.00 4.73855 -160.484 -4.73855 4.73855 0.61 0.000944782 0.000886486 0.077647 0.0721764 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.32 0.273519 0.239992 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323775 0.0281225 184 29 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.27 vpr 63.33 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.66 0.000780443 0.000724921 0.0583653 0.0542628 34 3686 37 6.89349e+06 352346 618332. 2139.56 1.80 0.22626 0.197571 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0372731 0.0322047 173 65 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.92 vpr 63.00 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.68 0.00067781 0.000630017 0.0565901 0.0525905 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.42 0.193196 0.169104 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0259383 0.0225191 143 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.14 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1244 16523 4277 10843 1403 63.1 MiB 0.18 0.00 4.45875 -146.616 -4.45875 4.45875 0.67 0.00075042 0.000696704 0.0643215 0.0596278 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.65 0.224049 0.195669 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.22 0.09 0.09 -1 -1 0.22 0.0315598 0.0274849 170 64 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.45 vpr 63.64 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.67 0.000844596 0.000785597 0.0727489 0.0675953 34 3603 25 6.89349e+06 436909 618332. 2139.56 1.88 0.22124 0.193928 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0315655 0.0273469 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.65 vpr 63.33 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30412 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.17 1401 11923 3470 7236 1217 63.3 MiB 0.13 0.00 5.49816 -175.294 -5.49816 5.49816 0.74 0.000599742 0.000548754 0.0421888 0.0389026 34 3760 29 6.89349e+06 394628 618332. 2139.56 4.67 0.305638 0.263652 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0312856 0.0272792 181 90 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.14 vpr 63.07 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30416 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1340 14763 4284 8311 2168 63.1 MiB 0.17 0.00 3.76655 -130.012 -3.76655 3.76655 0.69 0.000758729 0.000704496 0.0621432 0.0576911 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.68 0.238548 0.208237 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0325238 0.0283092 168 64 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.98 vpr 63.34 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 2.02 1284 16207 4365 9844 1998 63.3 MiB 0.16 0.00 4.62085 -160.706 -4.62085 4.62085 0.89 0.000595015 0.000546169 0.0507187 0.0466176 34 3366 50 6.89349e+06 380534 618332. 2139.56 2.02 0.235743 0.204373 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0310796 0.0270776 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.54 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.1 MiB 2.44 1764 15215 4236 8627 2352 63.6 MiB 0.19 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000845263 0.000778541 0.067427 0.0624955 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.20 0.275509 0.240112 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.21 0.14 0.13 -1 -1 0.21 0.036504 0.0317521 220 96 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.81 vpr 62.51 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30640 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.56 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.66 0.000640445 0.000595956 0.0260511 0.0242337 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.39 0.168767 0.145881 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254668 0.0221603 127 34 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.55 vpr 63.32 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.67 0.000773185 0.000717775 0.070126 0.0651223 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.25 0.225203 0.197945 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0301526 0.0263922 168 64 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.72 vpr 63.14 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1356 15391 5368 7626 2397 63.1 MiB 0.17 0.00 4.39449 -148.549 -4.39449 4.39449 0.72 0.000761155 0.000706715 0.0613051 0.0568303 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.09 0.220736 0.193029 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.028877 0.0253072 172 63 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.13 vpr 62.62 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.18 953 14407 3720 10033 654 62.6 MiB 0.14 0.00 4.3344 -147.594 -4.3344 4.3344 0.66 0.000549258 0.000503653 0.0453129 0.0416019 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.12 0.175794 0.152898 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0262622 0.0231332 147 3 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.04 vpr 63.30 MiB 0.05 7164 -1 -1 1 0.04 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1279 18101 5797 9598 2706 63.3 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.68 0.000785157 0.00072935 0.0714047 0.0663381 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.84 0.244635 0.214167 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0264702 0.0230928 184 96 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.03 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.94 1221 17635 5673 8836 3126 63.1 MiB 0.17 0.00 4.28929 -146.442 -4.28929 4.28929 0.70 0.000765099 0.000710982 0.068382 0.0635126 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.16 0.227184 0.199386 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0304305 0.0266997 169 61 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.98 vpr 63.20 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1303 7027 1560 5110 357 63.2 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.000773989 0.000718967 0.0295816 0.0274594 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.64 0.194466 0.168186 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0254669 0.022511 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.31 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 30516 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 1.47 1190 14518 4171 8562 1785 63.3 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.65 0.000739279 0.000686759 0.0578805 0.0537937 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.57 0.205645 0.180198 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0285819 0.0248603 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.42 vpr 63.32 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1201 13351 3240 8446 1665 63.3 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.65 0.000781109 0.000726329 0.0528392 0.0490879 36 3088 18 6.89349e+06 380534 648988. 2245.63 1.58 0.197814 0.17268 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0333611 0.02902 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.72 vpr 63.45 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1470 18625 5270 10765 2590 63.4 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.68 0.000824741 0.000766393 0.075484 0.0701894 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.61 0.245376 0.214839 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.032127 0.0279234 195 122 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.14 vpr 63.41 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.43 1648 15391 4130 9133 2128 63.4 MiB 0.18 0.00 4.77885 -161.828 -4.77885 4.77885 0.58 0.000808666 0.000750706 0.0660986 0.0614237 36 3608 22 6.89349e+06 380534 648988. 2245.63 1.91 0.223825 0.195887 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0354378 0.0308238 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.44 vpr 62.45 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.39 1067 16081 5068 9178 1835 62.5 MiB 0.15 0.00 3.68745 -131.866 -3.68745 3.68745 0.69 0.00063878 0.000594292 0.057265 0.0532629 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.37 0.17875 0.156902 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0226333 0.0197451 127 34 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 63.04 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1122 7711 1541 6020 150 63.0 MiB 0.09 0.00 4.29439 -143.523 -4.29439 4.29439 0.67 0.000713226 0.000658812 0.0316974 0.0294515 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.80 0.252353 0.216896 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283052 0.0246409 154 94 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.15 vpr 63.59 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30816 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1537 17347 5978 9037 2332 63.6 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.66 0.000898264 0.000835384 0.0771597 0.0718201 38 3731 22 6.89349e+06 422815 678818. 2348.85 1.70 0.250313 0.219649 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0353743 0.0308159 209 65 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.40 vpr 63.04 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1176 14295 4272 7910 2113 63.0 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.66 0.000737146 0.00068476 0.0594284 0.0552571 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.05 0.219935 0.192145 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0335909 0.029144 156 34 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.00 vpr 62.57 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.10 932 11809 3108 7963 738 62.6 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.66 0.000620462 0.000577476 0.0360648 0.0334708 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.31 0.154345 0.134096 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.23 0.06 0.14 -1 -1 0.23 0.0240635 0.0208005 129 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.46 vpr 63.36 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 31064 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.66 1787 18111 5206 10704 2201 63.4 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.65 0.00095312 0.000885592 0.0802955 0.0745641 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.93 0.306627 0.267899 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.23 0.11 0.16 -1 -1 0.23 0.0408635 0.0354266 239 127 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.73 vpr 63.03 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1091 13143 3864 7923 1356 63.0 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.70 0.000755398 0.000702227 0.0531662 0.0494078 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.64 0.202496 0.177006 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.030776 0.0268782 159 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.37 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30356 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.53 849 10087 2557 6780 750 62.4 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.000607691 0.00056421 0.0302899 0.0280971 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.91 0.103581 0.0907569 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.21 0.07 0.12 -1 -1 0.21 0.0226924 0.0197163 123 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.01 vpr 63.49 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.65 0.000825004 0.000764344 0.0525839 0.0488961 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.52 0.226504 0.197057 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0347328 0.0302902 194 34 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.98 vpr 62.51 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.88 787 10056 2193 7590 273 62.5 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000609598 0.000567276 0.0374044 0.0348083 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.48 0.161203 0.140457 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0252483 0.0218891 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.28 vpr 62.51 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 801 8131 1824 5536 771 62.5 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.65 0.000619491 0.00057624 0.03094 0.0287925 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.65 0.151238 0.131217 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0227629 0.0197732 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.49 vpr 63.44 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1254 15203 3953 9019 2231 63.4 MiB 0.16 0.00 4.1318 -129.307 -4.1318 4.1318 0.68 0.000756186 0.000703455 0.0608763 0.056558 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.46 0.207846 0.18168 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0295208 0.0256722 171 88 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30656 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1381 16974 4929 9664 2381 63.3 MiB 0.16 0.00 5.29596 -177.687 -5.29596 5.29596 0.66 0.000772564 0.000717011 0.0675648 0.0626923 36 3381 23 6.89349e+06 366440 648988. 2245.63 1.80 0.222756 0.195445 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0331964 0.0290045 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.42 vpr 63.41 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.63 1376 18180 6112 9250 2818 63.4 MiB 0.20 0.00 5.13064 -174.448 -5.13064 5.13064 0.67 0.000775111 0.000719759 0.0749303 0.0695437 34 3618 39 6.89349e+06 366440 618332. 2139.56 1.94 0.24831 0.217417 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0338205 0.0296997 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.47 vpr 63.02 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1013 14221 3579 9597 1045 63.0 MiB 0.14 0.00 4.30029 -147.314 -4.30029 4.30029 0.67 0.000686692 0.000637367 0.0565328 0.0525669 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.68 0.17555 0.154024 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0256387 0.0222136 141 65 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.81 vpr 63.06 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1168 10501 2617 6825 1059 63.1 MiB 0.10 0.00 4.23729 -139.76 -4.23729 4.23729 0.80 0.000599761 0.000555292 0.0325614 0.0299336 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.54 0.169565 0.146518 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0270898 0.0234813 146 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.12 vpr 63.22 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.18 0.00 3.9471 -130.183 -3.9471 3.9471 0.68 0.000724236 0.000672838 0.0664106 0.0616246 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.64 0.206139 0.181084 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0301111 0.0261603 164 60 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.67 vpr 62.96 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30508 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.14 970 11031 2869 6600 1562 63.0 MiB 0.10 0.00 4.51585 -132.654 -4.51585 4.51585 0.65 0.00067334 0.000626267 0.0405629 0.0377353 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.00 0.121685 0.106867 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0269296 0.0234438 145 34 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.38 vpr 62.90 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30156 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.78 1087 9083 2557 5800 726 62.9 MiB 0.09 0.00 4.36859 -139.508 -4.36859 4.36859 0.78 0.000506865 0.000467057 0.0344534 0.0319675 36 2461 21 6.89349e+06 295971 648988. 2245.63 1.88 0.15765 0.137056 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0230874 0.020111 136 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.91 vpr 63.06 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1180 8827 2269 5871 687 63.1 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.65 0.000697827 0.000648362 0.0353878 0.0328445 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.69 0.170767 0.148019 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0245359 0.0216055 150 91 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.11 vpr 63.02 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1032 15180 4497 8229 2454 63.0 MiB 0.14 0.00 4.35445 -144.691 -4.35445 4.35445 0.67 0.000702391 0.000651045 0.0479968 0.0444774 28 3116 24 6.89349e+06 521472 531479. 1839.03 1.79 0.136155 0.120052 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293902 0.025461 151 4 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.56 vpr 63.25 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1263 12351 3110 8140 1101 63.2 MiB 0.14 0.00 4.78058 -162.367 -4.78058 4.78058 0.66 0.000779867 0.000724425 0.0514792 0.0478223 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.67 0.216361 0.188747 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0306781 0.0267664 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.63 vpr 63.27 MiB 0.04 7044 -1 -1 1 0.04 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1405 10743 3107 6650 986 63.3 MiB 0.13 0.00 4.9601 -169.723 -4.9601 4.9601 0.66 0.000782458 0.000726051 0.0442406 0.0410427 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.37 0.193773 0.168572 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.21 0.11 0.15 -1 -1 0.21 0.0350189 0.0304775 171 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.76 vpr 63.09 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1306 10087 2279 7315 493 63.1 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.65 0.000765612 0.00071099 0.0387853 0.0359745 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.34 0.205393 0.178093 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.27 0.11 0.15 -1 -1 0.27 0.0317707 0.0278175 172 65 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.53 vpr 62.43 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.50 814 9181 2458 5686 1037 62.4 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.66 0.000618892 0.000575783 0.0342749 0.0318868 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.44 0.156651 0.136129 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0219365 0.0190904 122 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.56 vpr 63.11 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30544 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1287 12568 3293 7724 1551 63.1 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.66 0.000740285 0.000687467 0.0501106 0.0465692 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.77 0.196956 0.171803 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0308118 0.0267599 165 63 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.81 vpr 63.68 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30840 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.04 1479 11383 3062 7492 829 63.7 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.67 0.00105856 0.000978628 0.0495089 0.0460141 36 3485 21 6.89349e+06 422815 648988. 2245.63 1.98 0.214935 0.186912 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0353186 0.0305541 204 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 63.36 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30688 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1301 16445 5093 9336 2016 63.4 MiB 0.18 0.00 5.17904 -171.173 -5.17904 5.17904 0.67 0.000943993 0.000877503 0.0661523 0.0613718 36 3067 22 6.89349e+06 408721 648988. 2245.63 1.83 0.221465 0.193967 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.23 0.11 0.17 -1 -1 0.23 0.0385531 0.0335524 186 94 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.21 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30564 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1252 12351 3368 8179 804 63.2 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.66 0.000772645 0.00071895 0.0498195 0.0462778 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.24 0.226691 0.196903 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.26 0.08 0.14 -1 -1 0.26 0.0278975 0.024293 175 92 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.30 vpr 63.30 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30676 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1349 14160 4180 8412 1568 63.3 MiB 0.16 0.00 5.11687 -171.214 -5.11687 5.11687 0.67 0.000781613 0.000725574 0.0604479 0.0561111 34 3581 27 6.89349e+06 366440 618332. 2139.56 1.96 0.21853 0.19107 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309337 0.0270696 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.08 vpr 63.16 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30424 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1337 17431 5595 9274 2562 63.2 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.67 0.000845239 0.000792664 0.0648763 0.0602063 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.49 0.214704 0.187933 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293322 0.0255011 170 88 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.50 vpr 62.27 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 0.48 851 10744 3065 7267 412 62.3 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.66 0.000614028 0.000571497 0.0415225 0.0385499 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.39 0.163716 0.142801 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0225579 0.019614 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.57 vpr 63.27 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1266 16411 5685 8276 2450 63.3 MiB 0.18 0.00 5.17997 -174.972 -5.17997 5.17997 0.65 0.000779496 0.000723423 0.0675635 0.0627493 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.32 0.22524 0.197591 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0327204 0.0285389 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.35 vpr 63.37 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1294 9791 2343 6863 585 63.4 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.67 0.000779052 0.000723442 0.0432461 0.040209 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.16 0.205585 0.179192 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0313068 0.0272672 176 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.51 vpr 62.70 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 971 13043 4021 6975 2047 62.7 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.65 0.000637815 0.000592886 0.0486843 0.0453133 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.39 0.17343 0.15127 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0261222 0.022552 128 55 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.24 vpr 62.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.71 734 11604 2641 7381 1582 62.4 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.65 0.000600294 0.000558988 0.0423281 0.0394172 32 2249 20 6.89349e+06 239595 586450. 2029.24 0.86 0.112232 0.099313 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0239617 0.0207526 112 4 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.47 vpr 63.23 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.66 0.00074055 0.000688048 0.0553447 0.051401 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.51 0.203815 0.178228 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0334719 0.029112 158 59 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.88 vpr 63.21 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1314 10341 2747 6842 752 63.2 MiB 0.12 0.00 5.10864 -160.907 -5.10864 5.10864 0.65 0.00077034 0.000714279 0.0430161 0.0398155 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.81 0.201561 0.175094 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0304018 0.0264744 170 88 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 63.27 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1292 15419 3797 10101 1521 63.3 MiB 0.16 0.00 4.85078 -164.688 -4.85078 4.85078 0.65 0.000800683 0.000744646 0.053115 0.0492494 34 3291 24 6.89349e+06 577847 618332. 2139.56 1.74 0.201032 0.175853 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.23 0.10 0.09 -1 -1 0.23 0.0326577 0.0284132 183 3 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.83 vpr 63.21 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 30564 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1124 9395 2323 6078 994 63.2 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.66 0.000718096 0.000667181 0.0375023 0.0348973 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.63 0.196532 0.170741 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0296547 0.0257776 160 59 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.94 vpr 62.48 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.0 MiB 1.09 915 13031 5095 6351 1585 62.5 MiB 0.11 0.00 4.34539 -126.288 -4.34539 4.34539 0.66 0.000573393 0.000534107 0.0446719 0.0415869 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.31 0.15341 0.133857 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0135077 0.0118618 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.91 vpr 63.32 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1748 16302 4126 10044 2132 63.3 MiB 0.21 0.00 5.09354 -170.611 -5.09354 5.09354 0.69 0.000913683 0.000848699 0.0754689 0.0700495 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.23 0.263129 0.230048 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.21 0.11 0.10 -1 -1 0.21 0.0376485 0.0326776 219 95 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.86 vpr 63.34 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30612 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.93 1467 12661 2948 8528 1185 63.3 MiB 0.14 0.00 5.14784 -166.315 -5.14784 5.14784 0.65 0.000835935 0.000777052 0.0524276 0.0487052 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.12 0.239097 0.208474 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.22 0.10 0.15 -1 -1 0.22 0.0365614 0.0317343 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.25 vpr 63.07 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1133 9914 2313 7132 469 63.1 MiB 0.10 0.00 4.28535 -139.234 -4.28535 4.28535 0.66 0.000690364 0.000641708 0.0385024 0.0357575 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.72 0.192896 0.167087 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254125 0.0221273 150 89 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.83 vpr 63.18 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1114 12951 3612 7720 1619 63.2 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.71 0.000715818 0.000664725 0.0514777 0.0477639 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.45 0.195754 0.170853 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278901 0.0242964 151 34 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.52 MiB 0.05 7276 -1 -1 1 0.04 -1 -1 30808 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.43 1475 19413 5609 11709 2095 63.5 MiB 0.22 0.00 4.64537 -154.979 -4.64537 4.64537 0.67 0.000848432 0.000774615 0.0824658 0.0764143 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.68 0.259517 0.227124 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0358803 0.0311398 193 64 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.22 vpr 63.11 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30372 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1223 16773 5429 8542 2802 63.1 MiB 0.17 0.00 4.28025 -135.791 -4.28025 4.28025 0.67 0.000710746 0.000659044 0.0645845 0.0599933 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.70 0.211616 0.185501 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0254733 0.0221865 162 61 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.20 vpr 63.20 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30520 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.3 MiB 1.34 1373 17066 5393 8866 2807 63.2 MiB 0.19 0.00 5.03124 -168.563 -5.03124 5.03124 0.65 0.000771233 0.000715691 0.0662816 0.0615148 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.07 0.235689 0.20599 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0321644 0.0278831 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.03 vpr 63.36 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1418 13147 3928 7969 1250 63.4 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.65 0.000773749 0.000718387 0.0523408 0.0485918 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.58 0.204366 0.178316 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0316773 0.0276089 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.10 vpr 62.51 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30564 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.22 802 14322 5252 6511 2559 62.5 MiB 0.12 0.00 3.809 -119.785 -3.809 3.809 0.66 0.000599199 0.000557055 0.0497353 0.0462152 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.30 0.168639 0.147509 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.022427 0.0194646 118 34 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.27 vpr 62.84 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.2 MiB 0.99 1059 7038 1561 5080 397 62.8 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.67 0.000689935 0.000643465 0.0278587 0.0259047 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.60 0.165497 0.142971 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228659 0.0199174 136 82 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.02 vpr 63.19 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30428 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1144 15255 6301 7544 1410 63.2 MiB 0.15 0.00 4.60015 -151.135 -4.60015 4.60015 0.71 0.000724668 0.000673279 0.06073 0.0565168 36 2816 23 6.89349e+06 338252 648988. 2245.63 1.86 0.204606 0.179496 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0269208 0.0234775 154 34 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.03 vpr 62.59 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 23.9 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.67 0.00060445 0.000561901 0.0487858 0.0453608 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.31 0.168695 0.147071 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0214843 0.0186098 123 56 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.94 vpr 62.61 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1000 12186 3922 6390 1874 62.6 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.67 0.0006523 0.000605655 0.0467834 0.0434786 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.58 0.17476 0.15239 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0267946 0.0232994 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.38 vpr 63.18 MiB 0.02 7012 -1 -1 1 0.05 -1 -1 30448 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1201 16773 5048 9300 2425 63.2 MiB 0.18 0.00 4.20938 -143.511 -4.20938 4.20938 0.72 0.000751088 0.000697637 0.0707558 0.0657831 36 2859 23 6.89349e+06 380534 648988. 2245.63 1.91 0.222262 0.195433 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.031477 0.0274093 164 64 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.20 vpr 62.47 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30272 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 877 7953 1966 5579 408 62.5 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.63 0.000627417 0.000584103 0.0293072 0.0272561 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.34 0.153871 0.133352 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.20 0.06 0.10 -1 -1 0.20 0.0223677 0.019471 125 55 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.08 vpr 63.14 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1287 17711 6388 9306 2017 63.1 MiB 0.19 0.00 4.20729 -140.905 -4.20729 4.20729 0.67 0.000575323 0.000526356 0.0654438 0.0603268 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.81 0.211317 0.185098 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284906 0.0248235 162 65 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.69 vpr 63.29 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1441 16921 4862 9627 2432 63.3 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.68 0.000794888 0.000737576 0.0661728 0.0612932 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.25 0.225335 0.197201 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0352343 0.0305635 185 93 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.62 vpr 62.87 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1150 11245 3095 6987 1163 62.9 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.67 0.000663854 0.000615866 0.0421587 0.0391318 34 2943 19 6.89349e+06 295971 618332. 2139.56 1.68 0.172017 0.149719 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224854 0.0196273 137 61 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.59 vpr 62.94 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.18 1121 13443 3684 8167 1592 62.9 MiB 0.14 0.00 3.817 -131.483 -3.817 3.817 0.67 0.000682202 0.000634343 0.0513523 0.0476972 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.69 0.189867 0.166386 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.20 0.04 0.09 -1 -1 0.20 0.0146559 0.0129044 139 63 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.79 vpr 63.17 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30728 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.29 1272 13147 3375 7731 2041 63.2 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.67 0.000777982 0.000722589 0.0523372 0.0486044 36 3093 23 6.89349e+06 380534 648988. 2245.63 1.74 0.208077 0.181763 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0297772 0.0259352 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.28 vpr 62.97 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1161 15639 4794 8641 2204 63.0 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.66 0.000714878 0.000664131 0.0604291 0.0561476 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.93 0.14709 0.130266 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0263567 0.0229532 157 62 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.16 vpr 63.41 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30624 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1517 16893 4857 9388 2648 63.4 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.68 0.000862907 0.000802851 0.0726144 0.0674697 36 3623 47 6.89349e+06 408721 648988. 2245.63 1.95 0.271562 0.236577 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0352143 0.0305116 203 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.94 vpr 62.39 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.54 803 5149 1186 3599 364 62.4 MiB 0.06 0.00 2.99217 -104.791 -2.99217 2.99217 0.66 0.000579995 0.00053995 0.0189923 0.0176763 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.83 0.0848815 0.074009 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0235743 0.0204233 104 4 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.11 vpr 63.33 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30320 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1396 18101 5815 9868 2418 63.3 MiB 0.18 0.00 5.41163 -177.078 -5.41163 5.41163 0.65 0.000790206 0.000734033 0.0713302 0.0661524 34 3746 48 6.89349e+06 394628 618332. 2139.56 1.81 0.254653 0.222124 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0346148 0.0300479 179 92 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.39 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1193 17248 5142 9796 2310 63.1 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000715418 0.000663996 0.0659456 0.0611808 36 3213 26 6.89349e+06 338252 648988. 2245.63 2.61 0.215899 0.189306 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0353093 0.0306815 161 96 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.67 vpr 63.15 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1163 10187 2742 6187 1258 63.1 MiB 0.12 0.00 3.75965 -128.904 -3.75965 3.75965 0.66 0.000765216 0.000710701 0.0427696 0.0397187 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.47 0.198324 0.17252 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286161 0.0249786 170 65 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.93 vpr 63.37 MiB 0.05 7312 -1 -1 1 0.04 -1 -1 30924 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1578 21409 7235 11132 3042 63.4 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.65 0.000904094 0.000839176 0.0913222 0.0847569 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.47 0.271983 0.238701 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0377031 0.0327356 224 96 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.73 vpr 62.16 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 0.98 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.66 0.000538033 0.000501127 0.0429908 0.0399963 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.18 0.14515 0.1267 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.0164764 0.0143541 93 56 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.05 vpr 62.50 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 936 13763 4663 7110 1990 62.5 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.65 0.00062033 0.000577311 0.0493624 0.0459567 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.34 0.170095 0.148815 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0267058 0.0231481 124 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.85 vpr 62.80 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.67 0.000651327 0.000605289 0.0330376 0.0307111 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.17 0.162991 0.141553 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0277595 0.0240871 129 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.99 vpr 62.28 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.11 636 10231 2621 6138 1472 62.3 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.65 0.000532951 0.00049636 0.0326782 0.0303697 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.29 0.13608 0.117899 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0214047 0.0184975 107 34 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.26 vpr 63.37 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30512 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1453 17273 5845 8574 2854 63.4 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.65 0.000623687 0.00057108 0.0635065 0.0586403 38 3543 25 6.89349e+06 394628 678818. 2348.85 1.99 0.225873 0.197435 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.23 0.11 0.17 -1 -1 0.23 0.0344365 0.0299281 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.44 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1285 13758 3623 8223 1912 63.4 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.66 0.000781438 0.000725232 0.0564222 0.0523852 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.80 0.236814 0.206271 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0408528 0.0354271 183 94 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.76 vpr 63.05 MiB 0.04 7136 -1 -1 14 0.26 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 280 312 1 203 90 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1396 5718 1043 4241 434 63.1 MiB 0.09 0.00 8.33526 -166.471 -8.33526 8.33526 0.95 0.00154384 0.001435 0.0482428 0.0448695 28 3586 38 6.55708e+06 313430 500653. 1732.36 2.97 0.290644 0.263386 21310 115450 -1 3058 19 1536 4822 307043 72195 7.53276 7.53276 -163.755 -7.53276 0 0 612192. 2118.31 0.22 0.15 0.16 -1 -1 0.22 0.0606054 0.0551588 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 16.80 vpr 62.94 MiB 0.05 6848 -1 -1 14 0.28 -1 -1 32800 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 30 32 277 309 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1292 9821 2314 6313 1194 62.9 MiB 0.14 0.00 7.97266 -161.847 -7.97266 7.97266 0.95 0.00153217 0.0014241 0.0774486 0.0718962 28 3959 43 6.55708e+06 361650 500653. 1732.36 12.88 0.540127 0.488072 21310 115450 -1 3143 32 1996 6078 475638 149081 7.57758 7.57758 -164.207 -7.57758 0 0 612192. 2118.31 0.18 0.12 0.09 -1 -1 0.18 0.038013 0.0342126 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 10.52 vpr 62.99 MiB 0.04 7032 -1 -1 11 0.21 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1387 5633 1032 4013 588 63.0 MiB 0.09 0.00 6.70549 -144.379 -6.70549 6.70549 0.94 0.00152266 0.00141004 0.0475831 0.0442248 36 3713 39 6.55708e+06 301375 612192. 2118.31 6.61 0.414084 0.37392 22750 144809 -1 3104 15 1276 4210 249805 55842 5.90278 5.90278 -139.916 -5.90278 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.0494572 0.0451431 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.08 vpr 63.15 MiB 0.05 6996 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1235 6522 1332 4656 534 63.1 MiB 0.10 0.00 7.67294 -144.969 -7.67294 7.67294 0.95 0.00153864 0.00143033 0.0543445 0.0505161 34 3670 34 6.55708e+06 349595 585099. 2024.56 3.00 0.346625 0.313843 22462 138074 -1 3164 21 1689 5193 304890 68753 6.96632 6.96632 -142.994 -6.96632 0 0 742403. 2568.87 0.23 0.16 0.20 -1 -1 0.23 0.0655572 0.0596379 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.92 vpr 63.62 MiB 0.04 7044 -1 -1 13 0.31 -1 -1 33020 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 317 349 1 246 95 17 17 289 -1 unnamed_device 24.6 MiB 0.35 1620 8303 2009 5589 705 63.6 MiB 0.13 0.00 7.84931 -165.878 -7.84931 7.84931 0.95 0.00177784 0.00165329 0.0736385 0.0684265 30 4081 45 6.55708e+06 373705 526063. 1820.29 2.66 0.372347 0.33861 21886 126133 -1 3417 31 2192 6994 649153 243609 6.9587 6.9587 -160.39 -6.9587 0 0 666494. 2306.21 0.22 0.32 0.18 -1 -1 0.22 0.106189 0.0966253 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.18 vpr 63.07 MiB 0.05 6968 -1 -1 12 0.27 -1 -1 32852 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 299 331 1 224 95 17 17 289 -1 unnamed_device 24.1 MiB 0.57 1415 13055 3582 8009 1464 63.1 MiB 0.18 0.00 7.00015 -146.985 -7.00015 7.00015 0.97 0.00163652 0.00151807 0.105446 0.0977919 34 3991 40 6.55708e+06 373705 585099. 2024.56 2.84 0.410969 0.373281 22462 138074 -1 3201 16 1453 4561 250317 58217 6.09998 6.09998 -139.546 -6.09998 0 0 742403. 2568.87 0.23 0.13 0.20 -1 -1 0.23 0.056365 0.0514912 206 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 10.17 vpr 62.53 MiB 0.03 6808 -1 -1 12 0.18 -1 -1 32420 -1 -1 27 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 27 32 210 242 1 165 86 17 17 289 -1 unnamed_device 23.6 MiB 0.33 974 6890 1587 4820 483 62.5 MiB 0.08 0.00 6.94984 -127.162 -6.94984 6.94984 0.95 0.00145726 0.00135892 0.0459334 0.0426728 26 2854 25 6.55708e+06 325485 477104. 1650.88 6.41 0.343959 0.310465 21022 109990 -1 2549 19 1299 3712 305514 83748 6.49012 6.49012 -129.296 -6.49012 0 0 585099. 2024.56 0.19 0.14 0.15 -1 -1 0.19 0.0454334 0.0412414 137 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.74 vpr 63.17 MiB 0.05 6884 -1 -1 11 0.20 -1 -1 32660 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 264 296 1 200 91 17 17 289 -1 unnamed_device 24.3 MiB 0.21 1315 7231 1531 4891 809 63.2 MiB 0.12 0.00 6.53897 -136.036 -6.53897 6.53897 0.92 0.001432 0.00132968 0.0686987 0.0637761 30 3221 27 6.55708e+06 337540 526063. 1820.29 2.00 0.266263 0.24172 21886 126133 -1 2714 16 1147 3840 187272 43051 5.50098 5.50098 -128.943 -5.50098 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.050037 0.0456742 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 8.90 vpr 62.71 MiB 0.04 6620 -1 -1 12 0.17 -1 -1 32672 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.7 MiB 0.30 1115 11203 2815 6442 1946 62.7 MiB 0.14 0.00 6.90263 -147 -6.90263 6.90263 0.97 0.0012612 0.00117023 0.0762973 0.0707539 36 2655 15 6.55708e+06 301375 612192. 2118.31 4.96 0.521233 0.470236 22750 144809 -1 2404 15 948 2492 147743 34318 6.17898 6.17898 -142.164 -6.17898 0 0 782063. 2706.10 0.25 0.09 0.21 -1 -1 0.25 0.0412605 0.0376668 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.08 vpr 62.80 MiB 0.05 6712 -1 -1 13 0.19 -1 -1 32724 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.43 1192 15137 4443 8200 2494 62.8 MiB 0.18 0.00 7.39554 -161.911 -7.39554 7.39554 0.95 0.00136352 0.00126633 0.108172 0.100337 30 3232 46 6.55708e+06 301375 526063. 1820.29 2.03 0.338767 0.307654 21886 126133 -1 2512 16 1069 2908 152436 34980 6.42904 6.42904 -155.481 -6.42904 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0463411 0.0421958 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 5.10 vpr 62.66 MiB 0.04 6772 -1 -1 12 0.17 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1009 4842 919 3670 253 62.7 MiB 0.07 0.00 7.00015 -143.218 -7.00015 7.00015 0.96 0.00115876 0.00107517 0.0343581 0.0318348 28 2569 20 6.55708e+06 265210 500653. 1732.36 1.39 0.181041 0.163746 21310 115450 -1 2402 15 949 2345 148723 37256 6.01898 6.01898 -140.306 -6.01898 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0383636 0.0349402 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.81 vpr 62.53 MiB 0.02 6812 -1 -1 12 0.15 -1 -1 32672 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1020 12547 3823 6487 2237 62.5 MiB 0.15 0.00 6.61272 -143.64 -6.61272 6.61272 0.95 0.00117668 0.0010905 0.0830977 0.0769919 34 2847 40 6.55708e+06 253155 585099. 2024.56 2.33 0.307671 0.27869 22462 138074 -1 2226 16 939 2498 138197 32926 5.61918 5.61918 -136.448 -5.61918 0 0 742403. 2568.87 0.23 0.09 0.20 -1 -1 0.23 0.0405611 0.0369262 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.60 vpr 63.12 MiB 0.05 7072 -1 -1 13 0.26 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 306 338 1 236 95 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1509 7439 1652 5093 694 63.1 MiB 0.11 0.00 8.16384 -167.563 -8.16384 8.16384 0.93 0.0016815 0.00158577 0.0633599 0.0588814 28 4102 48 6.55708e+06 373705 500653. 1732.36 3.57 0.36269 0.328431 21310 115450 -1 3511 21 1745 5325 309232 70342 7.0025 7.0025 -161.942 -7.0025 0 0 612192. 2118.31 0.20 0.17 0.17 -1 -1 0.20 0.0722225 0.0657443 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.67 vpr 63.08 MiB 0.04 6892 -1 -1 14 0.31 -1 -1 33328 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1515 9123 2183 5795 1145 63.1 MiB 0.14 0.00 8.8902 -181.689 -8.8902 8.8902 0.98 0.00166302 0.00154232 0.0779407 0.0723444 30 3813 30 6.55708e+06 349595 526063. 1820.29 2.53 0.322671 0.293566 21886 126133 -1 3212 20 1539 4585 217258 51886 7.7171 7.7171 -169.708 -7.7171 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0695098 0.0633718 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.46 vpr 62.88 MiB 0.04 6832 -1 -1 11 0.17 -1 -1 32572 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1080 7125 1641 4792 692 62.9 MiB 0.09 0.00 6.46749 -127.989 -6.46749 6.46749 0.95 0.00125545 0.00116537 0.0484077 0.0449285 28 3059 28 6.55708e+06 349595 500653. 1732.36 1.87 0.22455 0.203386 21310 115450 -1 2622 17 1154 3053 188740 43352 5.60892 5.60892 -125.021 -5.60892 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0452015 0.041132 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.78 vpr 63.27 MiB 0.04 6936 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.3 MiB 0.50 1549 8648 1917 6189 542 63.3 MiB 0.13 0.00 7.81486 -160.86 -7.81486 7.81486 0.95 0.0017017 0.00158167 0.0727139 0.06753 34 4317 47 6.55708e+06 409870 585099. 2024.56 3.58 0.436826 0.396611 22462 138074 -1 3488 16 1500 4591 264427 60121 6.6027 6.6027 -153.349 -6.6027 0 0 742403. 2568.87 0.24 0.15 0.20 -1 -1 0.24 0.0619619 0.0568783 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.84 vpr 63.20 MiB 0.05 6744 -1 -1 13 0.26 -1 -1 32808 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1408 11265 2987 6987 1291 63.2 MiB 0.16 0.00 8.0479 -166.811 -8.0479 8.0479 0.95 0.00169157 0.00156895 0.0927604 0.086036 30 3460 21 6.55708e+06 385760 526063. 1820.29 1.84 0.307589 0.279292 21886 126133 -1 2946 16 1333 3878 178193 42730 6.9567 6.9567 -161.012 -6.9567 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0588041 0.05369 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.58 vpr 62.64 MiB 0.03 6904 -1 -1 12 0.15 -1 -1 32548 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.47 1098 5945 1145 4424 376 62.6 MiB 0.08 0.00 7.5252 -165.404 -7.5252 7.5252 0.95 0.00126531 0.0011757 0.0434442 0.0403499 28 2994 25 6.55708e+06 265210 500653. 1732.36 1.72 0.182717 0.165551 21310 115450 -1 2491 15 1000 2859 179112 40607 6.6393 6.6393 -161.138 -6.6393 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0414935 0.0377819 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 10.07 vpr 61.79 MiB 0.04 6448 -1 -1 10 0.10 -1 -1 32184 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63268 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.0 MiB 0.14 786 5244 1130 3909 205 61.8 MiB 0.05 0.00 5.1986 -117.307 -5.1986 5.1986 0.95 0.000615002 0.000566757 0.0211112 0.0194664 28 2255 27 6.55708e+06 241100 500653. 1732.36 6.76 0.264811 0.236384 21310 115450 -1 1986 19 775 1914 127546 29946 4.5908 4.5908 -117.461 -4.5908 0 0 612192. 2118.31 0.20 0.08 0.14 -1 -1 0.20 0.0349713 0.0315576 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 8.28 vpr 62.54 MiB 0.03 6728 -1 -1 13 0.16 -1 -1 32708 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.29 1111 8919 2132 5826 961 62.5 MiB 0.11 0.00 7.4032 -157.231 -7.4032 7.4032 0.94 0.00122386 0.00113247 0.0603119 0.0558835 26 3186 36 6.55708e+06 289320 477104. 1650.88 4.56 0.250662 0.227325 21022 109990 -1 2576 24 1090 2786 316796 119199 6.53698 6.53698 -153.821 -6.53698 0 0 585099. 2024.56 0.20 0.17 0.16 -1 -1 0.20 0.0580196 0.0526395 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 10.41 vpr 63.24 MiB 0.05 6968 -1 -1 13 0.28 -1 -1 32928 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 302 334 1 228 93 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1380 8913 2232 5739 942 63.2 MiB 0.14 0.00 7.81686 -155.403 -7.81686 7.81686 0.96 0.00165716 0.00154015 0.076748 0.0711987 36 3684 27 6.55708e+06 349595 612192. 2118.31 6.29 0.696957 0.629369 22750 144809 -1 3083 17 1541 4773 241455 57358 6.79164 6.79164 -150.258 -6.79164 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0590383 0.0537315 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 12.87 vpr 63.20 MiB 0.04 6976 -1 -1 13 0.28 -1 -1 33208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1549 7748 1691 5703 354 63.2 MiB 0.11 0.00 7.79063 -163.354 -7.79063 7.79063 0.95 0.00163583 0.00151954 0.0609754 0.056595 38 3911 41 6.55708e+06 409870 638502. 2209.35 8.64 0.787641 0.711967 23326 155178 -1 3294 20 1454 4762 246095 54904 6.7595 6.7595 -153.467 -6.7595 0 0 851065. 2944.86 0.27 0.17 0.23 -1 -1 0.27 0.0768385 0.0704432 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.90 vpr 61.70 MiB 0.04 6704 -1 -1 9 0.09 -1 -1 32144 -1 -1 21 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.1 MiB 0.25 600 8867 2203 6137 527 61.7 MiB 0.08 0.00 4.59771 -89.3905 -4.59771 4.59771 0.95 0.000778756 0.000723526 0.0426342 0.0395106 28 1887 18 6.55708e+06 253155 500653. 1732.36 1.41 0.135914 0.122474 21310 115450 -1 1601 13 634 1606 106280 25324 3.97954 3.97954 -90.4973 -3.97954 0 0 612192. 2118.31 0.20 0.06 0.17 -1 -1 0.20 0.0224764 0.0203315 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 9.79 vpr 63.21 MiB 0.04 6764 -1 -1 13 0.30 -1 -1 32800 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1450 8188 1784 5725 679 63.2 MiB 0.13 0.00 7.90507 -155.859 -7.90507 7.90507 0.96 0.00165737 0.00154118 0.0689956 0.0640894 38 3525 18 6.55708e+06 361650 638502. 2209.35 5.80 0.664609 0.601118 23326 155178 -1 2844 16 1411 4195 195256 45210 6.93116 6.93116 -146.53 -6.93116 0 0 851065. 2944.86 0.26 0.12 0.23 -1 -1 0.26 0.05683 0.0518892 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.58 vpr 61.77 MiB 0.04 6592 -1 -1 8 0.09 -1 -1 31040 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 23.0 MiB 0.17 444 10231 2672 5394 2165 61.8 MiB 0.09 0.00 4.58443 -87.4649 -4.58443 4.58443 0.95 0.000767983 0.000724354 0.0473699 0.0438784 30 1560 21 6.55708e+06 204935 526063. 1820.29 1.18 0.147385 0.132933 21886 126133 -1 1093 15 572 1185 61123 18074 4.08646 4.08646 -90.6103 -4.08646 0 0 666494. 2306.21 0.22 0.05 0.18 -1 -1 0.22 0.0250681 0.0225624 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.25 vpr 62.86 MiB 0.03 7004 -1 -1 15 0.24 -1 -1 33128 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.27 1191 12959 3762 7153 2044 62.9 MiB 0.16 0.00 8.851 -170.456 -8.851 8.851 0.95 0.00141145 0.00131176 0.096108 0.0892526 30 3058 20 6.55708e+06 301375 526063. 1820.29 1.42 0.274066 0.249804 21886 126133 -1 2484 17 1085 3223 162495 37866 7.76915 7.76915 -160.052 -7.76915 0 0 666494. 2306.21 0.22 0.11 0.19 -1 -1 0.22 0.0506171 0.0460686 160 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 19.62 vpr 63.21 MiB 0.02 6924 -1 -1 12 0.25 -1 -1 32972 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1527 8303 1758 5555 990 63.2 MiB 0.12 0.00 7.32786 -152.243 -7.32786 7.32786 0.94 0.00169055 0.00155951 0.0696144 0.0645888 30 4202 32 6.55708e+06 373705 526063. 1820.29 15.69 0.616376 0.557777 21886 126133 -1 3420 18 1515 4836 237951 55236 6.58078 6.58078 -146.679 -6.58078 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0639643 0.0583663 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 9.75 vpr 62.96 MiB 0.04 7032 -1 -1 13 0.27 -1 -1 32732 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1338 13547 3937 7498 2112 63.0 MiB 0.18 0.00 7.41221 -156.076 -7.41221 7.41221 0.95 0.00156816 0.00145635 0.107286 0.0996029 34 3683 24 6.55708e+06 337540 585099. 2024.56 5.60 0.619173 0.560636 22462 138074 -1 3050 22 1798 6051 342055 78711 6.83344 6.83344 -152.339 -6.83344 0 0 742403. 2568.87 0.24 0.18 0.20 -1 -1 0.24 0.0699936 0.0636442 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.42 vpr 62.73 MiB 0.02 6616 -1 -1 12 0.16 -1 -1 32404 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1079 6134 1296 4544 294 62.7 MiB 0.09 0.00 6.41157 -144.86 -6.41157 6.41157 0.95 0.00126752 0.00117571 0.0458969 0.0425019 32 3103 25 6.55708e+06 265210 554710. 1919.41 3.70 0.453643 0.408984 22174 131602 -1 2575 16 1122 2830 178087 42089 5.80812 5.80812 -142.229 -5.80812 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0440189 0.0401486 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 13.89 vpr 62.51 MiB 0.02 6644 -1 -1 11 0.16 -1 -1 32700 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.7 MiB 0.21 981 10687 3354 5227 2106 62.5 MiB 0.12 0.00 6.1536 -130.188 -6.1536 6.1536 0.96 0.00113706 0.00105457 0.0686896 0.0637213 26 3096 40 6.55708e+06 277265 477104. 1650.88 10.27 0.458425 0.412914 21022 109990 -1 2450 22 1171 3141 207315 49021 5.41032 5.41032 -130.097 -5.41032 0 0 585099. 2024.56 0.20 0.12 0.16 -1 -1 0.20 0.05051 0.045709 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.99 vpr 62.70 MiB 0.04 6844 -1 -1 11 0.16 -1 -1 32568 -1 -1 27 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1116 6615 1427 4569 619 62.7 MiB 0.09 0.00 6.46748 -128.458 -6.46748 6.46748 0.95 0.00121439 0.00112525 0.0465746 0.0430924 30 2774 27 6.55708e+06 325485 526063. 1820.29 1.35 0.212602 0.192666 21886 126133 -1 2342 16 1038 2917 143192 33449 5.71746 5.71746 -124.922 -5.71746 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.042634 0.0388881 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 11.86 vpr 63.04 MiB 0.02 6856 -1 -1 12 0.19 -1 -1 32500 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1337 7958 1839 5430 689 63.0 MiB 0.11 0.00 7.10257 -160.257 -7.10257 7.10257 0.92 0.00144469 0.00134239 0.0601272 0.0558838 28 3520 41 6.55708e+06 337540 500653. 1732.36 8.02 0.475389 0.42904 21310 115450 -1 3101 34 1414 3817 427357 175411 6.36532 6.36532 -159.422 -6.36532 0 0 612192. 2118.31 0.20 0.24 0.16 -1 -1 0.20 0.0922526 0.0835272 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.24 vpr 62.77 MiB 0.04 6820 -1 -1 11 0.17 -1 -1 32580 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1155 7646 1807 5307 532 62.8 MiB 0.10 0.00 6.58994 -140.092 -6.58994 6.58994 0.95 0.00129338 0.00120081 0.055447 0.0514489 28 3081 30 6.55708e+06 277265 500653. 1732.36 1.63 0.236868 0.214844 21310 115450 -1 2597 20 1247 3438 191122 44650 6.18238 6.18238 -145.473 -6.18238 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.0528504 0.0479873 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.36 vpr 62.46 MiB 0.04 6668 -1 -1 10 0.14 -1 -1 32596 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1047 9943 2574 5558 1811 62.5 MiB 0.12 0.00 6.34628 -126.58 -6.34628 6.34628 0.95 0.00120694 0.00111961 0.0680758 0.0631716 34 2473 17 6.55708e+06 289320 585099. 2024.56 3.60 0.347317 0.314515 22462 138074 -1 2137 15 815 2355 119341 28581 5.34298 5.34298 -117.291 -5.34298 0 0 742403. 2568.87 0.23 0.08 0.20 -1 -1 0.23 0.039704 0.0362113 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 8.02 vpr 63.38 MiB 0.03 7168 -1 -1 13 0.32 -1 -1 33188 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1621 5869 1104 4212 553 63.4 MiB 0.10 0.00 7.46683 -155.207 -7.46683 7.46683 0.95 0.00182747 0.00169627 0.0537761 0.0499119 30 3995 44 6.55708e+06 397815 526063. 1820.29 3.91 0.364185 0.330784 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.14 0.18 -1 -1 0.25 0.0664868 0.0607916 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 8.88 vpr 63.41 MiB 0.04 6944 -1 -1 13 0.31 -1 -1 33008 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 297 329 1 228 93 17 17 289 -1 unnamed_device 24.5 MiB 0.37 1398 11643 3043 6787 1813 63.4 MiB 0.17 0.00 7.88716 -168.222 -7.88716 7.88716 0.97 0.00167573 0.00155573 0.0981056 0.0910095 36 3864 21 6.55708e+06 349595 612192. 2118.31 4.65 0.462567 0.419834 22750 144809 -1 3328 17 1508 4913 291910 66422 7.3193 7.3193 -163.753 -7.3193 0 0 782063. 2706.10 0.25 0.15 0.23 -1 -1 0.25 0.0609609 0.0556843 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.69 vpr 62.59 MiB 0.04 6812 -1 -1 12 0.15 -1 -1 32716 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1164 9058 2432 5872 754 62.6 MiB 0.11 0.00 6.64691 -142.365 -6.64691 6.64691 0.95 0.00123538 0.00114647 0.0606443 0.0562221 34 2645 21 6.55708e+06 301375 585099. 2024.56 1.93 0.257592 0.233537 22462 138074 -1 2376 16 984 2864 159149 36629 5.98178 5.98178 -138.921 -5.98178 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0422527 0.0384952 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.39 vpr 63.07 MiB 0.02 6752 -1 -1 12 0.25 -1 -1 33180 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1508 8755 2020 5739 996 63.1 MiB 0.13 0.00 7.97527 -163.603 -7.97527 7.97527 0.94 0.00169853 0.00157842 0.0719113 0.0668318 36 3618 17 6.55708e+06 409870 612192. 2118.31 3.44 0.424221 0.385112 22750 144809 -1 3146 17 1326 3856 218909 50140 7.1573 7.1573 -155.863 -7.1573 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0614217 0.0560897 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.16 vpr 63.25 MiB 0.03 6840 -1 -1 14 0.42 -1 -1 33052 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1373 7639 1733 4830 1076 63.2 MiB 0.12 0.00 8.2489 -159.291 -8.2489 8.2489 0.94 0.00164998 0.00153484 0.0663378 0.0617006 30 3820 47 6.55708e+06 337540 526063. 1820.29 2.08 0.34758 0.315801 21886 126133 -1 3005 22 1513 4585 215360 51734 7.16956 7.16956 -152.957 -7.16956 0 0 666494. 2306.21 0.22 0.15 0.18 -1 -1 0.22 0.0724003 0.065916 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 6.08 vpr 63.00 MiB 0.04 6904 -1 -1 13 0.26 -1 -1 32844 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1326 8455 1999 5637 819 63.0 MiB 0.13 0.00 7.63835 -158.099 -7.63835 7.63835 0.94 0.0014892 0.00138381 0.0674857 0.0626885 30 3710 50 6.55708e+06 337540 526063. 1820.29 2.14 0.328511 0.297855 21886 126133 -1 3042 20 1429 4011 203673 47955 6.85838 6.85838 -152.522 -6.85838 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.0622611 0.0566484 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 9.61 vpr 63.08 MiB 0.05 7008 -1 -1 12 0.24 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 24.2 MiB 0.58 1314 13533 3823 7424 2286 63.1 MiB 0.18 0.00 6.9636 -142.062 -6.9636 6.9636 0.98 0.00155207 0.00144154 0.104624 0.0969891 42 3493 23 6.55708e+06 361650 701300. 2426.64 5.16 0.566624 0.513456 23902 167433 -1 2873 14 1225 3992 212270 49273 6.19264 6.19264 -136.002 -6.19264 0 0 896083. 3100.63 0.28 0.12 0.25 -1 -1 0.28 0.0483571 0.044188 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.96 vpr 62.82 MiB 0.04 6880 -1 -1 12 0.19 -1 -1 32804 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.8 MiB 0.30 1236 8473 1937 5465 1071 62.8 MiB 0.12 0.00 7.289 -144.81 -7.289 7.289 0.96 0.00141413 0.00131413 0.0657273 0.061056 30 3229 49 6.55708e+06 289320 526063. 1820.29 2.05 0.311211 0.28179 21886 126133 -1 2470 15 1049 3144 143516 35070 6.1631 6.1631 -138.066 -6.1631 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0456495 0.0416636 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.08 vpr 63.34 MiB 0.05 7184 -1 -1 14 0.43 -1 -1 32584 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1704 8873 1951 5982 940 63.3 MiB 0.14 0.00 7.96525 -166.736 -7.96525 7.96525 0.95 0.00190817 0.00177188 0.0807969 0.0751204 38 4005 25 6.55708e+06 409870 638502. 2209.35 3.75 0.503553 0.457849 23326 155178 -1 3482 15 1540 5437 263881 60199 7.1207 7.1207 -159.59 -7.1207 0 0 851065. 2944.86 0.26 0.14 0.23 -1 -1 0.26 0.0626324 0.0574202 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 8.24 vpr 62.77 MiB 0.03 6740 -1 -1 11 0.19 -1 -1 32536 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 246 278 1 189 88 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1159 11593 2682 6691 2220 62.8 MiB 0.15 0.00 6.46989 -136.304 -6.46989 6.46989 0.95 0.00136343 0.00126261 0.0867118 0.0804713 36 2943 21 6.55708e+06 301375 612192. 2118.31 4.37 0.502911 0.453928 22750 144809 -1 2650 21 1481 4319 246198 56458 5.85192 5.85192 -133.23 -5.85192 0 0 782063. 2706.10 0.25 0.15 0.21 -1 -1 0.25 0.0626962 0.0569654 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.63 vpr 63.08 MiB 0.03 6876 -1 -1 13 0.27 -1 -1 32756 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.2 MiB 0.40 1211 7728 1695 5371 662 63.1 MiB 0.11 0.00 7.98407 -153.841 -7.98407 7.98407 0.96 0.0015263 0.00141721 0.062729 0.0582562 34 3478 22 6.55708e+06 325485 585099. 2024.56 2.52 0.309674 0.280702 22462 138074 -1 2980 19 1378 4398 259694 58628 6.8411 6.8411 -148.878 -6.8411 0 0 742403. 2568.87 0.23 0.14 0.20 -1 -1 0.23 0.0601248 0.0546842 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.33 vpr 63.13 MiB 0.05 6956 -1 -1 12 0.26 -1 -1 32892 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 318 350 1 231 98 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1486 8873 2152 6049 672 63.1 MiB 0.13 0.00 7.25512 -155.423 -7.25512 7.25512 0.95 0.00173153 0.00160828 0.0732805 0.0680328 36 3699 44 6.55708e+06 409870 612192. 2118.31 5.28 0.618875 0.560191 22750 144809 -1 3253 17 1379 4842 257214 58741 6.42844 6.42844 -148.238 -6.42844 0 0 782063. 2706.10 0.24 0.15 0.16 -1 -1 0.24 0.0635071 0.0579305 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 8.32 vpr 63.01 MiB 0.09 6768 -1 -1 13 0.24 -1 -1 32792 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1284 9614 2389 6170 1055 63.0 MiB 0.13 0.00 7.57256 -157.801 -7.57256 7.57256 0.96 0.00151388 0.0014074 0.0745374 0.0692079 38 2922 17 6.55708e+06 337540 638502. 2209.35 4.37 0.55355 0.50069 23326 155178 -1 2562 16 1167 3403 165079 38799 6.66944 6.66944 -149.149 -6.66944 0 0 851065. 2944.86 0.25 0.11 0.22 -1 -1 0.25 0.0516754 0.0470345 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 16.21 vpr 62.90 MiB 0.04 7020 -1 -1 13 0.22 -1 -1 32748 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 269 301 1 198 89 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1228 13553 3512 7868 2173 62.9 MiB 0.17 0.00 7.53 -160.047 -7.53 7.53 0.95 0.00147434 0.00136911 0.105204 0.09756 28 3921 50 6.55708e+06 301375 500653. 1732.36 12.32 0.58507 0.528964 21310 115450 -1 3031 16 1247 3778 246097 55219 6.4433 6.4433 -152.511 -6.4433 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.0509889 0.0464575 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 10.12 vpr 63.03 MiB 0.04 6832 -1 -1 12 0.27 -1 -1 32976 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.1 MiB 0.65 1387 8087 1679 5459 949 63.0 MiB 0.12 0.00 7.05212 -153.477 -7.05212 7.05212 0.95 0.001671 0.00155255 0.0667125 0.0618854 38 3330 29 6.55708e+06 373705 638502. 2209.35 5.71 0.650152 0.588265 23326 155178 -1 2778 17 1170 4188 200903 45709 6.17638 6.17638 -144.389 -6.17638 0 0 851065. 2944.86 0.26 0.13 0.23 -1 -1 0.26 0.0604617 0.0552474 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 9.07 vpr 63.09 MiB 0.05 6844 -1 -1 13 0.29 -1 -1 32736 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1581 12693 3407 7880 1406 63.1 MiB 0.18 0.00 7.78084 -157.592 -7.78084 7.78084 0.96 0.00167106 0.00154264 0.104883 0.0973361 38 3610 20 6.55708e+06 349595 638502. 2209.35 4.80 0.548043 0.496985 23326 155178 -1 2921 18 1276 4009 184583 42930 6.8425 6.8425 -146.405 -6.8425 0 0 851065. 2944.86 0.26 0.13 0.23 -1 -1 0.26 0.062695 0.0572233 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 7.10 vpr 62.76 MiB 0.04 6852 -1 -1 14 0.26 -1 -1 33000 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1187 11177 2647 6549 1981 62.8 MiB 0.15 0.00 8.02137 -164.712 -8.02137 8.02137 0.95 0.00144388 0.00134099 0.0859026 0.0795803 28 3659 45 6.55708e+06 301375 500653. 1732.36 3.08 0.333721 0.302853 21310 115450 -1 2983 15 1236 3724 230504 53035 6.9567 6.9567 -160.853 -6.9567 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.0477845 0.0436375 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.72 vpr 63.04 MiB 0.05 7020 -1 -1 13 0.27 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.0 MiB 0.66 1504 7655 1499 5468 688 63.0 MiB 0.11 0.00 8.25451 -166.221 -8.25451 8.25451 0.95 0.00151801 0.00140629 0.0604948 0.056183 30 3699 49 6.55708e+06 373705 526063. 1820.29 2.48 0.336049 0.30448 21886 126133 -1 3038 16 1333 3742 175416 41924 7.16956 7.16956 -159.251 -7.16956 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.055921 0.0510427 200 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 22.40 vpr 63.12 MiB 0.05 6912 -1 -1 13 0.28 -1 -1 33116 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1458 8735 2070 5739 926 63.1 MiB 0.13 0.00 8.65471 -176.171 -8.65471 8.65471 0.95 0.00173679 0.00161499 0.0749062 0.0695904 28 4844 41 6.55708e+06 385760 500653. 1732.36 18.45 0.577483 0.522723 21310 115450 -1 3656 20 1666 5121 338552 78385 7.7589 7.7589 -175.031 -7.7589 0 0 612192. 2118.31 0.20 0.17 0.17 -1 -1 0.20 0.070351 0.0640115 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 9.58 vpr 63.21 MiB 0.03 6776 -1 -1 12 0.30 -1 -1 32804 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.42 1609 8856 1924 5931 1001 63.2 MiB 0.13 0.00 7.61091 -162.114 -7.61091 7.61091 0.96 0.00174354 0.00161961 0.0755511 0.0701141 36 4033 24 6.55708e+06 385760 612192. 2118.31 5.24 0.467139 0.424095 22750 144809 -1 3451 22 1646 5368 281184 65071 6.79164 6.79164 -156.467 -6.79164 0 0 782063. 2706.10 0.27 0.12 0.21 -1 -1 0.27 0.0605571 0.0551427 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.75 vpr 62.61 MiB 0.03 6764 -1 -1 11 0.13 -1 -1 32428 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1046 10163 2458 6316 1389 62.6 MiB 0.12 0.00 6.00396 -136.473 -6.00396 6.00396 0.95 0.00114054 0.00105812 0.0677917 0.0627978 30 2449 18 6.55708e+06 229045 526063. 1820.29 1.16 0.206402 0.187448 21886 126133 -1 2008 15 883 2282 116446 27644 5.27786 5.27786 -131.853 -5.27786 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0368693 0.0335432 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.35 vpr 62.76 MiB 0.04 6672 -1 -1 13 0.19 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.7 MiB 0.44 1206 9883 2182 6350 1351 62.8 MiB 0.12 0.00 7.53281 -161.158 -7.53281 7.53281 0.96 0.00135135 0.00125494 0.0691654 0.0641913 28 3798 47 6.55708e+06 325485 500653. 1732.36 2.36 0.300362 0.272185 21310 115450 -1 2944 25 1270 3615 293517 95594 6.50544 6.50544 -154.919 -6.50544 0 0 612192. 2118.31 0.20 0.17 0.16 -1 -1 0.20 0.0665117 0.060319 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.68 vpr 63.14 MiB 0.05 6920 -1 -1 14 0.43 -1 -1 32924 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1797 7524 1541 5344 639 63.1 MiB 0.13 0.00 8.65712 -179.7 -8.65712 8.65712 0.95 0.00201534 0.00187261 0.0711289 0.0660232 30 4366 36 6.55708e+06 433980 526063. 1820.29 2.43 0.324074 0.294705 21886 126133 -1 3740 18 1779 5490 277904 63610 7.52556 7.52556 -170.919 -7.52556 0 0 666494. 2306.21 0.21 0.17 0.18 -1 -1 0.21 0.076379 0.0699511 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.51 vpr 63.24 MiB 0.05 6964 -1 -1 13 0.32 -1 -1 32812 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 318 350 1 242 95 17 17 289 -1 unnamed_device 24.2 MiB 0.54 1473 7655 1759 5455 441 63.2 MiB 0.12 0.00 7.66968 -164.394 -7.66968 7.66968 0.94 0.00178929 0.00166268 0.0695253 0.0645572 28 4111 34 6.55708e+06 373705 500653. 1732.36 4.19 0.610276 0.552609 21310 115450 -1 3579 17 1652 4802 271564 62897 7.2429 7.2429 -166.589 -7.2429 0 0 612192. 2118.31 0.20 0.15 0.16 -1 -1 0.20 0.0653876 0.0597668 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.63 vpr 62.54 MiB 0.03 6772 -1 -1 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.7 MiB 0.19 946 11059 3375 5324 2360 62.5 MiB 0.13 0.00 6.71515 -135.35 -6.71515 6.71515 0.96 0.00121409 0.00111772 0.0752408 0.0696695 36 2340 18 6.55708e+06 277265 612192. 2118.31 2.86 0.310027 0.280799 22750 144809 -1 2002 16 838 2577 137491 32192 5.57938 5.57938 -124.238 -5.57938 0 0 782063. 2706.10 0.24 0.09 0.22 -1 -1 0.24 0.0415432 0.0378631 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 11.14 vpr 63.51 MiB 0.05 7004 -1 -1 15 0.49 -1 -1 32892 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.6 MiB 0.37 1686 6757 1379 4893 485 63.5 MiB 0.12 0.00 8.78929 -181.271 -8.78929 8.78929 0.95 0.00191657 0.0017822 0.0659229 0.0612567 36 4573 34 6.55708e+06 397815 612192. 2118.31 6.71 0.520969 0.473848 22750 144809 -1 3944 22 2118 6909 393443 86671 7.83529 7.83529 -174.408 -7.83529 0 0 782063. 2706.10 0.25 0.20 0.21 -1 -1 0.25 0.0852297 0.0777818 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.82 vpr 63.30 MiB 0.04 6940 -1 -1 13 0.31 -1 -1 33292 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.4 MiB 0.45 1481 8703 2085 5407 1211 63.3 MiB 0.13 0.00 7.77001 -158.574 -7.77001 7.77001 0.95 0.00167242 0.00155455 0.0736658 0.0684138 36 3749 27 6.55708e+06 349595 612192. 2118.31 2.59 0.382859 0.347408 22750 144809 -1 3294 17 1531 4414 238754 54720 6.7621 6.7621 -154.225 -6.7621 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0606827 0.0554267 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 7.33 vpr 62.61 MiB 0.04 6792 -1 -1 11 0.13 -1 -1 32664 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1208 6133 1399 4430 304 62.6 MiB 0.08 0.00 6.57317 -137.784 -6.57317 6.57317 0.95 0.00120736 0.00112012 0.0425261 0.0394483 28 3413 43 6.55708e+06 289320 500653. 1732.36 3.60 0.243957 0.22055 21310 115450 -1 2788 17 1118 3272 212238 47145 5.73878 5.73878 -135.519 -5.73878 0 0 612192. 2118.31 0.20 0.13 0.16 -1 -1 0.20 0.0459819 0.0419778 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.75 vpr 63.08 MiB 0.05 7004 -1 -1 12 0.32 -1 -1 32996 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1499 9599 2367 6512 720 63.1 MiB 0.14 0.00 7.23264 -149.423 -7.23264 7.23264 0.95 0.00169766 0.00157638 0.0806288 0.0748364 34 4017 46 6.55708e+06 373705 585099. 2024.56 5.50 0.523889 0.475104 22462 138074 -1 3307 21 1759 6103 368699 80488 6.51604 6.51604 -146.095 -6.51604 0 0 742403. 2568.87 0.23 0.18 0.20 -1 -1 0.23 0.0728382 0.0663412 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.61 vpr 62.81 MiB 0.03 6612 -1 -1 12 0.20 -1 -1 32420 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 253 285 1 191 90 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1248 7728 1690 5460 578 62.8 MiB 0.13 0.00 7.1989 -153.033 -7.1989 7.1989 0.96 0.00141359 0.00130413 0.0632737 0.0590144 30 3134 49 6.55708e+06 313430 526063. 1820.29 1.75 0.308132 0.279726 21886 126133 -1 2563 17 1081 3064 146985 34708 6.43104 6.43104 -147.474 -6.43104 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0498208 0.0454206 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.88 vpr 62.34 MiB 0.05 6608 -1 -1 12 0.18 -1 -1 32792 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 30 32 227 259 1 161 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 938 8723 2063 5985 675 62.3 MiB 0.11 0.00 7.11774 -140.467 -7.11774 7.11774 0.95 0.0013401 0.00122299 0.0659766 0.0613372 26 2517 46 6.55708e+06 253155 477104. 1650.88 3.28 0.442399 0.399561 21022 109990 -1 2200 18 1116 3199 195255 44665 6.94538 6.94538 -144.488 -6.94538 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0470829 0.0427641 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.02 vpr 62.98 MiB 0.05 6816 -1 -1 12 0.30 -1 -1 32840 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1365 11223 2755 7251 1217 63.0 MiB 0.15 0.00 7.16655 -136.833 -7.16655 7.16655 0.95 0.0011409 0.00105316 0.0903084 0.0838676 30 3500 43 6.55708e+06 385760 526063. 1820.29 2.85 0.375289 0.342026 21886 126133 -1 2824 31 1256 4080 399257 177058 6.15344 6.15344 -129.211 -6.15344 0 0 666494. 2306.21 0.22 0.24 0.18 -1 -1 0.22 0.0977665 0.0888834 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.56 vpr 63.24 MiB 0.05 6820 -1 -1 14 0.31 -1 -1 33004 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 316 348 1 256 97 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1609 7201 1540 4649 1012 63.2 MiB 0.12 0.00 8.6494 -177.704 -8.6494 8.6494 0.95 0.00176795 0.00164316 0.0625629 0.0581125 30 4364 32 6.55708e+06 397815 526063. 1820.29 2.30 0.320709 0.291233 21886 126133 -1 3490 17 1741 4865 241957 57163 7.53016 7.53016 -172.763 -7.53016 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0644069 0.0588701 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 8.10 vpr 63.05 MiB 0.04 6996 -1 -1 12 0.23 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1316 5191 916 3744 531 63.1 MiB 0.08 0.00 7.48095 -154.676 -7.48095 7.48095 0.98 0.00158783 0.0014767 0.045014 0.0418448 30 3407 21 6.55708e+06 325485 526063. 1820.29 4.15 0.516823 0.466894 21886 126133 -1 2785 18 1250 3607 178365 41568 6.49978 6.49978 -146.95 -6.49978 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0601863 0.0549273 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 8.30 vpr 62.40 MiB 0.03 6732 -1 -1 12 0.15 -1 -1 32704 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 221 253 1 166 84 17 17 289 -1 unnamed_device 23.6 MiB 0.41 1079 8319 2120 5072 1127 62.4 MiB 0.10 0.00 6.61712 -135.685 -6.61712 6.61712 0.95 0.00116171 0.00107723 0.0561271 0.0520835 34 2602 39 6.55708e+06 241100 585099. 2024.56 4.39 0.455131 0.410239 22462 138074 -1 2380 17 949 2824 171044 38689 5.70218 5.70218 -132.167 -5.70218 0 0 742403. 2568.87 0.23 0.10 0.20 -1 -1 0.23 0.0417667 0.038037 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 8.58 vpr 62.92 MiB 0.04 6700 -1 -1 12 0.21 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1062 10033 2618 5721 1694 62.9 MiB 0.13 0.00 7.10067 -138.704 -7.10067 7.10067 0.95 0.00140065 0.00130074 0.0760206 0.0706096 32 3434 37 6.55708e+06 301375 554710. 1919.41 4.71 0.573558 0.51708 22174 131602 -1 2817 22 1474 4273 308407 74038 6.22218 6.22218 -143.685 -6.22218 0 0 701300. 2426.64 0.23 0.16 0.19 -1 -1 0.23 0.0621459 0.0563433 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 10.00 vpr 62.98 MiB 0.02 6944 -1 -1 11 0.19 -1 -1 32736 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 277 309 1 209 90 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1179 9738 2219 6538 981 63.0 MiB 0.13 0.00 6.32486 -129.246 -6.32486 6.32486 0.96 0.00149604 0.0013896 0.0768774 0.0713672 34 3244 21 6.55708e+06 337540 585099. 2024.56 6.20 0.613244 0.55375 22462 138074 -1 2853 20 1447 5181 293944 65423 5.53252 5.53252 -126.098 -5.53252 0 0 742403. 2568.87 0.23 0.15 0.20 -1 -1 0.23 0.0617485 0.0561299 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.55 vpr 62.79 MiB 0.05 7032 -1 -1 11 0.20 -1 -1 32704 -1 -1 28 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1237 8473 1921 5502 1050 62.8 MiB 0.11 0.00 6.63254 -118.16 -6.63254 6.63254 0.96 0.00141919 0.00130751 0.0645718 0.0598803 36 3080 30 6.55708e+06 337540 612192. 2118.31 2.63 0.321097 0.291013 22750 144809 -1 2724 17 1076 3477 195685 43647 5.98178 5.98178 -116.257 -5.98178 0 0 782063. 2706.10 0.25 0.11 0.21 -1 -1 0.25 0.0513956 0.0468765 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.73 vpr 62.67 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1025 6039 1172 4360 507 62.7 MiB 0.08 0.00 7.83235 -153.18 -7.83235 7.83235 0.95 0.00120973 0.00112398 0.04171 0.0387129 28 2871 19 6.55708e+06 301375 500653. 1732.36 3.82 0.329341 0.297051 21310 115450 -1 2412 15 953 2504 143229 34232 6.90264 6.90264 -148.197 -6.90264 0 0 612192. 2118.31 0.20 0.09 0.16 -1 -1 0.20 0.0396585 0.0361802 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 12.37 vpr 62.84 MiB 0.03 6824 -1 -1 12 0.19 -1 -1 32536 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 269 301 1 210 89 17 17 289 -1 unnamed_device 23.8 MiB 0.30 1211 13553 3317 7968 2268 62.8 MiB 0.18 0.00 7.40035 -154.861 -7.40035 7.40035 0.95 0.00148285 0.00137396 0.10546 0.0978295 28 3579 37 6.55708e+06 301375 500653. 1732.36 8.49 0.532769 0.48252 21310 115450 -1 2855 18 1263 3435 198881 47653 6.46824 6.46824 -153.076 -6.46824 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0553553 0.0504066 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 16.24 vpr 63.03 MiB 0.04 6984 -1 -1 13 0.28 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1191 15633 5095 8093 2445 63.0 MiB 0.20 0.00 7.78778 -150.869 -7.78778 7.78778 0.95 0.00157591 0.00146487 0.121694 0.113074 30 3592 25 6.55708e+06 361650 526063. 1820.29 12.18 0.608497 0.551836 21886 126133 -1 2564 16 1316 3784 173970 42821 6.9215 6.9215 -144.12 -6.9215 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0540557 0.0493378 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 10.37 vpr 63.23 MiB 0.05 7096 -1 -1 14 0.28 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1522 7223 1481 5175 567 63.2 MiB 0.11 0.00 8.11686 -165.797 -8.11686 8.11686 0.95 0.00171698 0.00159553 0.0623058 0.0578408 28 3738 20 6.55708e+06 373705 500653. 1732.36 6.37 0.492726 0.446676 21310 115450 -1 3258 15 1379 4186 235584 54635 7.4003 7.4003 -162.249 -7.4003 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0568029 0.0519501 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 9.09 vpr 63.16 MiB 0.05 6768 -1 -1 14 0.26 -1 -1 32816 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1333 7027 1488 5239 300 63.2 MiB 0.11 0.00 7.98407 -153.871 -7.98407 7.98407 0.97 0.0015563 0.00144609 0.0589739 0.0547604 44 3058 20 6.55708e+06 325485 742403. 2568.87 4.87 0.519308 0.469808 24478 177802 -1 2551 15 1114 3688 178580 41846 7.0815 7.0815 -141.291 -7.0815 0 0 937218. 3242.97 0.29 0.11 0.27 -1 -1 0.29 0.0518907 0.0473799 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.42 vpr 62.89 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33284 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1405 6823 1465 4810 548 62.9 MiB 0.11 0.00 8.04044 -163.796 -8.04044 8.04044 0.95 0.00162326 0.00150878 0.0592226 0.0550351 36 3416 21 6.55708e+06 325485 612192. 2118.31 3.43 0.408217 0.369957 22750 144809 -1 2997 19 1361 4092 217666 50617 7.1991 7.1991 -157.892 -7.1991 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0629673 0.0574839 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 9.66 vpr 62.94 MiB 0.03 6584 -1 -1 13 0.20 -1 -1 32660 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1136 10859 2622 6566 1671 62.9 MiB 0.13 0.00 7.73016 -155.181 -7.73016 7.73016 0.96 0.00125528 0.00116571 0.0757679 0.0703303 28 2895 16 6.55708e+06 289320 500653. 1732.36 5.89 0.423413 0.382832 21310 115450 -1 2554 18 1134 2860 167778 39963 6.6399 6.6399 -148.575 -6.6399 0 0 612192. 2118.31 0.20 0.11 0.16 -1 -1 0.20 0.0472239 0.042953 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 11.07 vpr 63.24 MiB 0.04 6768 -1 -1 13 0.43 -1 -1 32760 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 294 326 1 231 93 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1345 14163 3644 7776 2743 63.2 MiB 0.20 0.00 8.02437 -159.192 -8.02437 8.02437 0.94 0.00167132 0.00155297 0.117879 0.109511 38 3589 27 6.55708e+06 373705 638502. 2209.35 6.74 0.77362 0.700874 23326 155178 -1 2798 25 1694 5348 319509 92203 7.21136 7.21136 -152.328 -7.21136 0 0 851065. 2944.86 0.26 0.19 0.23 -1 -1 0.26 0.0821109 0.0747118 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 11.16 vpr 62.94 MiB 0.05 6916 -1 -1 14 0.28 -1 -1 31560 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1329 7549 1640 5431 478 62.9 MiB 0.11 0.00 7.66053 -161.128 -7.66053 7.66053 0.95 0.00155229 0.00144245 0.0594499 0.0551287 36 3204 19 6.55708e+06 361650 612192. 2118.31 7.12 0.627832 0.567243 22750 144809 -1 2881 15 1290 4403 243877 54542 6.73358 6.73358 -152.324 -6.73358 0 0 782063. 2706.10 0.24 0.13 0.23 -1 -1 0.24 0.0511216 0.0466635 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.44 vpr 63.20 MiB 0.05 7068 -1 -1 12 0.24 -1 -1 32972 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 31 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1376 5632 1003 4241 388 63.2 MiB 0.09 0.00 8.15384 -157.78 -8.15384 8.15384 0.95 0.00160812 0.00149454 0.048832 0.0453654 36 3335 28 6.55708e+06 373705 612192. 2118.31 4.61 0.494656 0.447264 22750 144809 -1 2873 15 1273 3752 198861 46093 6.9979 6.9979 -145.643 -6.9979 0 0 782063. 2706.10 0.24 0.12 0.21 -1 -1 0.24 0.0524608 0.0479549 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 63.04 MiB 0.05 7044 -1 -1 13 0.24 -1 -1 32744 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1337 13557 3204 8755 1598 63.0 MiB 0.18 0.00 7.63303 -140.337 -7.63303 7.63303 0.95 0.00149507 0.00138919 0.10523 0.0976738 30 3338 27 6.55708e+06 337540 526063. 1820.29 1.94 0.312423 0.28445 21886 126133 -1 2844 17 1293 3697 192727 44933 6.47284 6.47284 -135.617 -6.47284 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0539154 0.0491184 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 9.56 vpr 63.50 MiB 0.04 6868 -1 -1 14 0.34 -1 -1 33056 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.5 MiB 0.61 1453 7104 1305 5544 255 63.5 MiB 0.11 0.00 8.90186 -170.541 -8.90186 8.90186 0.97 0.00172829 0.00160628 0.0610316 0.0567485 44 3396 16 6.55708e+06 385760 742403. 2568.87 4.99 0.572613 0.51885 24478 177802 -1 2895 16 1314 4025 186348 44498 7.69982 7.69982 -160.441 -7.69982 0 0 937218. 3242.97 0.29 0.12 0.27 -1 -1 0.29 0.0599834 0.0549012 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.72 vpr 62.84 MiB 0.05 6892 -1 -1 11 0.28 -1 -1 32856 -1 -1 29 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1157 6924 1532 4775 617 62.8 MiB 0.10 0.00 6.93657 -131.54 -6.93657 6.93657 0.95 0.001478 0.00136422 0.0547995 0.0508646 28 3052 23 6.55708e+06 349595 500653. 1732.36 1.84 0.250346 0.22729 21310 115450 -1 2806 18 1205 4003 236177 53217 6.11164 6.11164 -127.615 -6.11164 0 0 612192. 2118.31 0.21 0.09 0.16 -1 -1 0.21 0.0337826 0.0307752 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.16 vpr 62.58 MiB 0.02 6608 -1 -1 13 0.16 -1 -1 32640 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.7 MiB 0.31 1099 6807 1492 4622 693 62.6 MiB 0.09 0.00 7.61867 -163.8 -7.61867 7.61867 0.95 0.00122607 0.00113855 0.0468275 0.0434035 26 3107 21 6.55708e+06 277265 477104. 1650.88 2.42 0.206707 0.187446 21022 109990 -1 2633 33 1220 3078 264583 87643 6.46824 6.46824 -155.84 -6.46824 0 0 585099. 2024.56 0.19 0.17 0.16 -1 -1 0.19 0.0760758 0.0687813 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 6.97 vpr 63.06 MiB 0.04 6836 -1 -1 14 0.24 -1 -1 32788 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1349 5803 1181 3934 688 63.1 MiB 0.09 0.00 8.14347 -163.597 -8.14347 8.14347 0.95 0.0014906 0.00138465 0.0468478 0.0435536 28 3894 26 6.55708e+06 325485 500653. 1732.36 3.25 0.260526 0.236768 21310 115450 -1 3185 26 1363 3755 325317 104874 7.17216 7.17216 -157.98 -7.17216 0 0 612192. 2118.31 0.20 0.18 0.09 -1 -1 0.20 0.076684 0.0696407 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 11.31 vpr 63.17 MiB 0.05 6816 -1 -1 15 0.36 -1 -1 33392 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.1 MiB 0.63 1653 6666 1327 4767 572 63.2 MiB 0.11 0.00 9.56735 -197.421 -9.56735 9.56735 0.94 0.00177146 0.00164082 0.0589618 0.0547736 36 4018 18 6.55708e+06 385760 612192. 2118.31 6.84 0.710776 0.643904 22750 144809 -1 3351 15 1442 4222 215609 49978 8.17401 8.17401 -180.437 -8.17401 0 0 782063. 2706.10 0.25 0.13 0.21 -1 -1 0.25 0.0585154 0.0536068 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 8.77 vpr 62.40 MiB 0.04 6840 -1 -1 11 0.16 -1 -1 32448 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.54 1095 7835 2015 4854 966 62.4 MiB 0.09 0.00 6.79369 -139.331 -6.79369 6.79369 0.95 0.00114436 0.00106037 0.0508107 0.0470514 30 2671 23 6.55708e+06 265210 526063. 1820.29 4.76 0.399006 0.359439 21886 126133 -1 2260 13 822 2344 126396 29066 6.03324 6.03324 -135.276 -6.03324 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0339073 0.030951 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.45 vpr 62.78 MiB 0.04 6736 -1 -1 12 0.19 -1 -1 32496 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1142 12761 3209 8075 1477 62.8 MiB 0.16 0.00 7.38518 -156.247 -7.38518 7.38518 1.00 0.00134235 0.00124727 0.0904768 0.0839857 32 3099 50 6.55708e+06 313430 554710. 1919.41 3.32 0.512524 0.463299 22174 131602 -1 2861 28 1462 4594 422530 151011 7.07124 7.07124 -157.198 -7.07124 0 0 701300. 2426.64 0.22 0.21 0.19 -1 -1 0.22 0.07343 0.0665791 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 8.44 vpr 63.12 MiB 0.03 6924 -1 -1 12 0.30 -1 -1 33088 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 301 333 1 232 96 17 17 289 -1 unnamed_device 24.1 MiB 0.36 1401 10827 2800 6524 1503 63.1 MiB 0.17 0.00 7.63524 -167.112 -7.63524 7.63524 0.95 0.00169241 0.00156848 0.0953739 0.0882321 34 4044 25 6.55708e+06 385760 585099. 2024.56 4.30 0.609756 0.551963 22462 138074 -1 3392 17 1555 4551 261942 60338 6.9215 6.9215 -163.459 -6.9215 0 0 742403. 2568.87 0.24 0.14 0.20 -1 -1 0.24 0.0618818 0.0564935 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.65 vpr 62.95 MiB 0.05 7112 -1 -1 12 0.24 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1413 11063 2862 6898 1303 62.9 MiB 0.15 0.00 7.56535 -160.035 -7.56535 7.56535 0.94 0.00152999 0.00142017 0.085684 0.0795372 30 3743 28 6.55708e+06 337540 526063. 1820.29 2.53 0.301059 0.273779 21886 126133 -1 3028 17 1348 4224 217211 49859 6.47024 6.47024 -151.298 -6.47024 0 0 666494. 2306.21 0.22 0.13 0.18 -1 -1 0.22 0.0547878 0.0498694 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.15 vpr 63.43 MiB 0.04 6908 -1 -1 14 0.42 -1 -1 33312 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.6 MiB 0.24 1571 16287 4218 9846 2223 63.4 MiB 0.23 0.00 8.43809 -174.225 -8.43809 8.43809 0.97 0.00188721 0.00175269 0.139448 0.129395 36 4152 20 6.55708e+06 421925 612192. 2118.31 2.82 0.437374 0.399275 22750 144809 -1 3500 17 1775 5455 309193 70495 7.53276 7.53276 -167.242 -7.53276 0 0 782063. 2706.10 0.24 0.16 0.23 -1 -1 0.24 0.0683161 0.0624824 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 15.81 vpr 62.89 MiB 0.04 7032 -1 -1 11 0.23 -1 -1 32660 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1258 9791 2659 6167 965 62.9 MiB 0.13 0.00 6.70478 -131.306 -6.70478 6.70478 0.95 0.00147985 0.00136482 0.076637 0.0711679 28 3584 30 6.55708e+06 325485 500653. 1732.36 11.88 0.495453 0.44831 21310 115450 -1 3192 17 1485 4544 286397 62292 5.79224 5.79224 -133.519 -5.79224 0 0 612192. 2118.31 0.20 0.14 0.11 -1 -1 0.20 0.0531182 0.0483815 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 8.34 vpr 62.48 MiB 0.02 6844 -1 -1 11 0.17 -1 -1 32392 -1 -1 25 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.6 MiB 0.23 955 9966 2597 6231 1138 62.5 MiB 0.12 0.00 6.3206 -117.079 -6.3206 6.3206 0.94 0.00119644 0.00111189 0.0683971 0.0634649 26 2742 25 6.55708e+06 301375 477104. 1650.88 4.70 0.376013 0.339846 21022 109990 -1 2264 18 1075 3077 169285 39286 5.53252 5.53252 -115.94 -5.53252 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0450059 0.040896 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.68 vpr 63.64 MiB 0.05 6972 -1 -1 13 0.41 -1 -1 32840 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1955 9864 2276 6867 721 63.6 MiB 0.16 0.00 7.70458 -159.131 -7.70458 7.70458 0.95 0.00210525 0.00195082 0.0916449 0.085063 36 5073 36 6.55708e+06 482200 612192. 2118.31 6.35 0.601005 0.54647 22750 144809 -1 4189 18 1948 7062 397652 88021 6.98824 6.98824 -155.331 -6.98824 0 0 782063. 2706.10 0.24 0.20 0.21 -1 -1 0.24 0.0803951 0.0737071 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 8.00 vpr 63.15 MiB 0.04 6944 -1 -1 14 0.27 -1 -1 33404 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 269 301 1 200 89 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1245 11573 2731 6807 2035 63.1 MiB 0.15 0.00 8.47244 -166.107 -8.47244 8.47244 0.95 0.00148768 0.00138206 0.0901488 0.0837427 30 2953 18 6.55708e+06 313430 526063. 1820.29 4.01 0.523362 0.473441 21886 126133 -1 2497 15 1140 3175 144476 34920 7.40536 7.40536 -156.727 -7.40536 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0488209 0.0445758 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 10.55 vpr 62.75 MiB 0.02 6824 -1 -1 12 0.15 -1 -1 32372 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.8 MiB 0.36 1139 15187 4363 8443 2381 62.8 MiB 0.17 0.00 7.2366 -160.978 -7.2366 7.2366 0.95 0.00125114 0.00116088 0.0963889 0.0894112 34 3292 44 6.55708e+06 325485 585099. 2024.56 6.65 0.550147 0.497534 22462 138074 -1 2663 16 1081 3043 173469 39926 6.73618 6.73618 -157.668 -6.73618 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0428346 0.0390374 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.25 vpr 62.98 MiB 0.04 6820 -1 -1 13 0.30 -1 -1 32824 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1179 9593 2501 5729 1363 63.0 MiB 0.13 0.00 8.00084 -154.84 -8.00084 8.00084 0.95 0.00149316 0.0013886 0.0759849 0.0705748 30 3624 25 6.55708e+06 301375 526063. 1820.29 2.16 0.275237 0.25022 21886 126133 -1 2743 16 1272 3680 179696 42920 6.81356 6.81356 -148.908 -6.81356 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0515775 0.0470713 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 13.20 vpr 63.42 MiB 0.05 6944 -1 -1 13 0.31 -1 -1 33600 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 325 357 1 258 98 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1723 8423 1649 6094 680 63.4 MiB 0.13 0.00 7.58638 -160.922 -7.58638 7.58638 0.95 0.00180228 0.00166423 0.074104 0.0688129 28 4597 36 6.55708e+06 421925 500653. 1732.36 9.01 0.585975 0.531178 21310 115450 -1 4029 21 1959 5968 388832 86822 6.95104 6.95104 -160.966 -6.95104 0 0 612192. 2118.31 0.20 0.19 0.17 -1 -1 0.20 0.0766691 0.0699156 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 9.36 vpr 63.05 MiB 0.03 6976 -1 -1 11 0.23 -1 -1 32800 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 30 32 287 319 1 213 95 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1432 7007 1504 4847 656 63.1 MiB 0.10 0.00 7.1643 -145.437 -7.1643 7.1643 0.95 0.00158356 0.00147052 0.0555436 0.0516137 34 3873 32 6.55708e+06 397815 585099. 2024.56 5.37 0.506297 0.457511 22462 138074 -1 3265 17 1294 4435 268645 58996 6.39124 6.39124 -143.08 -6.39124 0 0 742403. 2568.87 0.24 0.14 0.20 -1 -1 0.24 0.0584035 0.0532564 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 9.70 vpr 63.16 MiB 0.02 6892 -1 -1 15 0.32 -1 -1 32884 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1519 8073 1948 5210 915 63.2 MiB 0.10 0.00 9.01015 -184 -9.01015 9.01015 0.95 0.00110725 0.00101688 0.0473089 0.0435924 36 4015 24 6.55708e+06 349595 612192. 2118.31 5.64 0.414977 0.375747 22750 144809 -1 3287 24 1483 4529 305525 85309 7.68815 7.68815 -170.097 -7.68815 0 0 782063. 2706.10 0.24 0.18 0.21 -1 -1 0.24 0.0781853 0.0711895 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 18.23 vpr 63.17 MiB 0.04 6860 -1 -1 13 0.36 -1 -1 33120 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1448 14331 3665 9149 1517 63.2 MiB 0.20 0.00 7.86097 -165.619 -7.86097 7.86097 0.95 0.00174852 0.00162459 0.119331 0.110762 28 4370 37 6.55708e+06 385760 500653. 1732.36 14.17 0.691359 0.627109 21310 115450 -1 3674 21 1917 5747 341864 76915 7.03204 7.03204 -165.002 -7.03204 0 0 612192. 2118.31 0.20 0.18 0.16 -1 -1 0.20 0.0726575 0.066011 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.99 vpr 62.66 MiB 0.04 6624 -1 -1 12 0.20 -1 -1 32268 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 236 268 1 193 88 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1047 10813 2718 6103 1992 62.7 MiB 0.13 0.00 6.80146 -143.314 -6.80146 6.80146 0.95 0.00128043 0.00117944 0.0740279 0.0683829 30 3274 41 6.55708e+06 325485 526063. 1820.29 2.10 0.276686 0.250855 21886 126133 -1 2397 18 1274 3345 158487 38872 6.20792 6.20792 -141.221 -6.20792 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0478014 0.0435136 157 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 13.27 vpr 62.45 MiB 0.05 6908 -1 -1 11 0.15 -1 -1 32384 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1093 5189 1003 3884 302 62.4 MiB 0.07 0.00 6.74698 -142.525 -6.74698 6.74698 0.96 0.00120774 0.00112039 0.0366912 0.0340283 28 3144 36 6.55708e+06 265210 500653. 1732.36 9.43 0.378043 0.340819 21310 115450 -1 2547 16 1180 3230 178454 42563 5.78058 5.78058 -139.904 -5.78058 0 0 612192. 2118.31 0.20 0.10 0.16 -1 -1 0.20 0.0419075 0.0381944 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 10.32 vpr 63.22 MiB 0.03 6980 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1501 5632 1004 4261 367 63.2 MiB 0.09 0.00 8.25511 -166.809 -8.25511 8.25511 0.95 0.00165826 0.00154097 0.0482152 0.0448025 36 3446 27 6.55708e+06 373705 612192. 2118.31 6.26 0.675971 0.611578 22750 144809 -1 3048 17 1347 4370 229793 53051 7.2781 7.2781 -155.783 -7.2781 0 0 782063. 2706.10 0.24 0.13 0.21 -1 -1 0.24 0.0600156 0.054808 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 8.10 vpr 62.51 MiB 0.02 6608 -1 -1 10 0.17 -1 -1 32780 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 29 32 221 253 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1064 7646 1912 5016 718 62.5 MiB 0.09 0.00 5.93963 -122.7 -5.93963 5.93963 0.95 0.0011926 0.00110277 0.0517793 0.0480434 28 2785 23 6.55708e+06 301375 500653. 1732.36 4.46 0.40583 0.365967 21310 115450 -1 2557 18 1147 3447 215774 47653 5.34558 5.34558 -123.527 -5.34558 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0448041 0.0407218 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 9.13 vpr 62.80 MiB 0.04 6636 -1 -1 14 0.19 -1 -1 32700 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.8 MiB 0.40 1142 10033 2412 5986 1635 62.8 MiB 0.12 0.00 7.66803 -156.849 -7.66803 7.66803 0.95 0.00128946 0.00119602 0.0696789 0.0646405 36 2731 29 6.55708e+06 289320 612192. 2118.31 5.12 0.565461 0.510622 22750 144809 -1 2333 17 1028 3056 165099 39037 6.6791 6.6791 -146.906 -6.6791 0 0 782063. 2706.10 0.27 0.12 0.21 -1 -1 0.27 0.0573819 0.0529762 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 7.37 vpr 63.06 MiB 0.03 6844 -1 -1 12 0.32 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1394 6095 1205 4292 598 63.1 MiB 0.10 0.00 7.67729 -159.665 -7.67729 7.67729 0.95 0.00163155 0.0015159 0.0527783 0.0490053 34 3698 50 6.55708e+06 349595 585099. 2024.56 3.30 0.428119 0.387651 22462 138074 -1 3092 18 1266 4129 229679 52857 6.5191 6.5191 -151.267 -6.5191 0 0 742403. 2568.87 0.24 0.13 0.20 -1 -1 0.24 0.0617563 0.0563429 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.07 vpr 62.51 MiB 0.04 6696 -1 -1 12 0.15 -1 -1 32368 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1194 5567 1099 4211 257 62.5 MiB 0.08 0.00 6.82849 -150.919 -6.82849 6.82849 0.86 0.00120511 0.0011187 0.0389337 0.0361198 32 3121 22 6.55708e+06 277265 554710. 1919.41 4.26 0.419385 0.378079 22174 131602 -1 2745 29 1051 2842 350390 131656 6.05818 6.05818 -145.531 -6.05818 0 0 701300. 2426.64 0.22 0.19 0.20 -1 -1 0.22 0.0668487 0.0605148 142 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.40 vpr 63.25 MiB 0.05 6940 -1 -1 12 0.19 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 282 314 1 206 90 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1308 5517 1109 4058 350 63.2 MiB 0.08 0.00 6.90658 -147.949 -6.90658 6.90658 0.96 0.00152044 0.00141224 0.0461218 0.0427851 28 3844 44 6.55708e+06 313430 500653. 1732.36 3.62 0.303418 0.274582 21310 115450 -1 3170 23 1630 5200 323155 75306 6.78398 6.78398 -146.832 -6.78398 0 0 612192. 2118.31 0.20 0.19 0.16 -1 -1 0.20 0.0743064 0.0672605 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 9.31 vpr 62.89 MiB 0.04 7044 -1 -1 13 0.29 -1 -1 32952 -1 -1 30 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 31 32 269 301 1 216 93 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1442 9753 2402 6155 1196 62.9 MiB 0.13 0.00 7.83564 -165.134 -7.83564 7.83564 0.95 0.00151497 0.0014062 0.0745861 0.0692325 36 3404 14 6.55708e+06 361650 612192. 2118.31 5.24 0.629684 0.569216 22750 144809 -1 2917 17 1137 3614 188614 43755 7.0005 7.0005 -157.503 -7.0005 0 0 782063. 2706.10 0.25 0.12 0.21 -1 -1 0.25 0.0551335 0.050273 180 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 9.98 vpr 62.83 MiB 0.02 6556 -1 -1 11 0.16 -1 -1 32364 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 237 269 1 183 90 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1181 5316 953 4041 322 62.8 MiB 0.07 0.00 6.7625 -141.932 -6.7625 6.7625 0.95 0.00126341 0.0011718 0.0382959 0.0354998 26 3531 32 6.55708e+06 313430 477104. 1650.88 6.03 0.401951 0.362343 21022 109990 -1 3041 45 2080 6791 809890 357099 5.78318 5.78318 -144.141 -5.78318 0 0 585099. 2024.56 0.23 0.38 0.16 -1 -1 0.23 0.0863166 0.077665 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.91 vpr 62.94 MiB 0.04 6816 -1 -1 13 0.19 -1 -1 32572 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.9 MiB 0.22 1261 6619 1462 4468 689 62.9 MiB 0.09 0.00 7.87238 -161.512 -7.87238 7.87238 0.95 0.00141729 0.00131713 0.0501963 0.0466555 28 3533 23 6.55708e+06 325485 500653. 1732.36 2.19 0.236555 0.21456 21310 115450 -1 2991 19 1431 3925 254944 58035 6.7993 6.7993 -155.897 -6.7993 0 0 612192. 2118.31 0.20 0.14 0.17 -1 -1 0.20 0.0559949 0.0508987 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 9.98 vpr 62.91 MiB 0.05 7032 -1 -1 13 0.26 -1 -1 32860 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 220 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1331 9963 2251 5897 1815 62.9 MiB 0.14 0.00 7.86397 -163.224 -7.86397 7.86397 0.94 0.00146987 0.00136087 0.0776632 0.0720796 36 3848 46 6.55708e+06 349595 612192. 2118.31 5.99 0.454773 0.412067 22750 144809 -1 2979 15 1430 4355 242484 55252 6.7601 6.7601 -151.042 -6.7601 0 0 782063. 2706.10 0.22 0.07 0.16 -1 -1 0.22 0.0258982 0.0236417 188 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.24 vpr 62.81 MiB 0.05 6960 -1 -1 11 0.22 -1 -1 32848 -1 -1 27 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 29 32 245 277 1 190 88 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1009 12373 3112 6826 2435 62.8 MiB 0.15 0.00 6.353 -119.656 -6.353 6.353 0.96 0.00134314 0.00124754 0.0887954 0.082352 34 3298 42 6.55708e+06 325485 585099. 2024.56 3.29 0.372273 0.337292 22462 138074 -1 2349 15 1066 3121 177342 43549 5.77292 5.77292 -119.425 -5.77292 0 0 742403. 2568.87 0.25 0.10 0.21 -1 -1 0.25 0.0441816 0.0402303 160 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 10.47 vpr 63.30 MiB 0.04 6988 -1 -1 14 0.31 -1 -1 33444 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1579 9732 2188 6618 926 63.3 MiB 0.15 0.00 8.66947 -182.489 -8.66947 8.66947 0.98 0.00178749 0.00166088 0.0845369 0.0784886 34 4585 42 6.55708e+06 385760 585099. 2024.56 6.19 0.699677 0.63325 22462 138074 -1 3866 19 1825 5368 344449 78081 7.55769 7.55769 -173.73 -7.55769 0 0 742403. 2568.87 0.24 0.16 0.21 -1 -1 0.24 0.0662992 0.0607688 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.46 vpr 62.68 MiB 0.02 6780 -1 -1 12 0.15 -1 -1 32468 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1132 10903 2780 6518 1605 62.7 MiB 0.12 0.00 6.86778 -146.474 -6.86778 6.86778 1.00 0.00124195 0.00115248 0.0696099 0.0645374 34 2856 19 6.55708e+06 337540 585099. 2024.56 2.53 0.275169 0.249673 22462 138074 -1 2490 16 1026 2784 171062 39331 5.75164 5.75164 -137.214 -5.75164 0 0 742403. 2568.87 0.24 0.10 0.20 -1 -1 0.24 0.0426436 0.0388821 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.20 vpr 62.88 MiB 0.05 7032 -1 -1 13 0.28 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1389 6211 1334 4310 567 62.9 MiB 0.10 0.00 7.65501 -153.87 -7.65501 7.65501 0.95 0.00154377 0.00143461 0.0525654 0.0488232 36 3187 18 6.55708e+06 325485 612192. 2118.31 5.17 0.608063 0.549096 22750 144809 -1 2963 17 1443 4534 250040 60091 6.94138 6.94138 -148.972 -6.94138 0 0 782063. 2706.10 0.24 0.14 0.21 -1 -1 0.24 0.0564181 0.0514268 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.14 vpr 62.61 MiB 0.04 6672 -1 -1 13 0.18 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 235 267 1 180 90 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1095 7326 1550 5416 360 62.6 MiB 0.09 0.00 7.45231 -160.211 -7.45231 7.45231 0.96 0.00127346 0.00118217 0.0496926 0.0460349 28 3229 48 6.55708e+06 313430 500653. 1732.36 2.22 0.2657 0.24031 21310 115450 -1 2529 18 1181 3304 233801 67472 6.90984 6.90984 -159.34 -6.90984 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0470042 0.0427641 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 11.82 vpr 62.89 MiB 0.05 6996 -1 -1 12 0.22 -1 -1 32700 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1228 7728 1665 5629 434 62.9 MiB 0.11 0.00 7.58733 -154.847 -7.58733 7.58733 0.95 0.00148918 0.00138318 0.0631501 0.0585887 28 3325 41 6.55708e+06 313430 500653. 1732.36 7.94 0.479193 0.433565 21310 115450 -1 2794 17 1142 3561 201327 46238 6.7641 6.7641 -149.049 -6.7641 0 0 612192. 2118.31 0.20 0.12 0.16 -1 -1 0.20 0.052482 0.0477038 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.13 vpr 63.50 MiB 0.05 6968 -1 -1 15 0.46 -1 -1 32852 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1717 9323 2212 6516 595 63.5 MiB 0.15 0.00 8.85561 -175.55 -8.85561 8.85561 0.98 0.00197287 0.00183275 0.0874709 0.0811119 36 4498 22 6.55708e+06 409870 612192. 2118.31 4.73 0.520949 0.473498 22750 144809 -1 3788 19 2011 6737 369089 82495 7.48896 7.48896 -166.143 -7.48896 0 0 782063. 2706.10 0.24 0.19 0.21 -1 -1 0.24 0.082217 0.0752892 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 9.27 vpr 61.81 MiB 0.04 6692 -1 -1 10 0.10 -1 -1 32108 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 173 205 1 128 78 17 17 289 -1 unnamed_device 23.2 MiB 0.30 663 7880 1846 5770 264 61.8 MiB 0.08 0.00 5.47134 -123.464 -5.47134 5.47134 0.95 0.000887084 0.000814561 0.0446201 0.0412632 26 2282 45 6.55708e+06 192880 477104. 1650.88 5.73 0.32444 0.290201 21022 109990 -1 1731 15 680 1574 122336 31518 4.92186 4.92186 -123.916 -4.92186 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0283207 0.0255761 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 9.00 vpr 62.93 MiB 0.02 6640 -1 -1 13 0.17 -1 -1 32568 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 30 32 229 261 1 173 91 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1085 9679 2271 6084 1324 62.9 MiB 0.11 0.00 7.6407 -150.826 -7.6407 7.6407 0.95 0.00125248 0.00115307 0.0628223 0.0582545 26 3068 25 6.55708e+06 349595 477104. 1650.88 5.45 0.387675 0.349972 21022 109990 -1 2660 16 1104 3075 191780 44166 6.5589 6.5589 -148.945 -6.5589 0 0 585099. 2024.56 0.19 0.11 0.15 -1 -1 0.19 0.0427345 0.0389213 149 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 8.47 vpr 62.91 MiB 0.04 6664 -1 -1 12 0.19 -1 -1 32484 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1229 11607 2776 7348 1483 62.9 MiB 0.16 0.00 6.61226 -148.616 -6.61226 6.61226 0.95 0.00144372 0.00133952 0.0914967 0.0848566 36 3015 18 6.55708e+06 277265 612192. 2118.31 4.52 0.491864 0.444607 22750 144809 -1 2612 16 1066 3031 166652 38729 5.90338 5.90338 -143.913 -5.90338 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.0476314 0.043334 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.98 vpr 61.97 MiB 0.03 6676 -1 -1 9 0.13 -1 -1 32612 -1 -1 23 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 25 32 184 216 1 142 80 17 17 289 -1 unnamed_device 23.2 MiB 0.27 731 11260 3536 5471 2253 62.0 MiB 0.11 0.00 5.58849 -100.305 -5.58849 5.58849 0.96 0.0009935 0.000922359 0.0680704 0.0631722 28 2136 29 6.55708e+06 277265 500653. 1732.36 3.38 0.339712 0.305986 21310 115450 -1 1746 20 847 2309 118804 29072 4.84486 4.84486 -99.4417 -4.84486 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0407419 0.0368711 113 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.07 vpr 63.12 MiB 0.05 7040 -1 -1 12 0.29 -1 -1 32644 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 302 334 1 241 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1511 13861 3457 8236 2168 63.1 MiB 0.17 0.00 7.51028 -165.632 -7.51028 7.51028 0.97 0.00165269 0.00153722 0.0908271 0.0841971 38 3862 21 6.55708e+06 397815 638502. 2209.35 5.00 0.553602 0.501262 23326 155178 -1 3142 18 1469 4657 236614 53535 6.6419 6.6419 -153.865 -6.6419 0 0 851065. 2944.86 0.26 0.14 0.23 -1 -1 0.26 0.0615828 0.0561839 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 10.32 vpr 63.21 MiB 0.05 7036 -1 -1 14 0.31 -1 -1 32992 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 295 327 1 222 91 17 17 289 -1 unnamed_device 24.3 MiB 0.46 1427 6415 1288 4361 766 63.2 MiB 0.10 0.00 8.59764 -174.646 -8.59764 8.59764 0.95 0.00167585 0.00155739 0.0575881 0.0534229 28 4265 50 6.55708e+06 337540 500653. 1732.36 6.12 0.607845 0.549218 21310 115450 -1 3432 25 1414 4173 343131 111357 7.82002 7.82002 -173.29 -7.82002 0 0 612192. 2118.31 0.20 0.20 0.16 -1 -1 0.20 0.0832959 0.0758123 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.09 vpr 63.50 MiB 0.04 7284 -1 -1 1 0.03 -1 -1 30868 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.6 MiB 0.14 929 17268 4565 10218 2485 63.5 MiB 0.22 0.00 4.24756 -141.398 -4.24756 4.24756 0.95 0.00131861 0.00122164 0.103331 0.0957284 32 2582 23 6.64007e+06 452088 554710. 1919.41 1.37 0.277224 0.252208 22834 132086 -1 2128 22 1824 3085 215108 49318 3.85983 3.85983 -141.351 -3.85983 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.057874 0.0523706 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.89 vpr 63.41 MiB 0.03 7304 -1 -1 1 0.03 -1 -1 30652 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.6 MiB 0.22 873 12919 4129 6395 2395 63.4 MiB 0.18 0.00 4.45516 -130.844 -4.45516 4.45516 0.95 0.0012462 0.00115678 0.0900047 0.0835989 32 2371 23 6.64007e+06 288834 554710. 1919.41 1.21 0.250852 0.228291 22834 132086 -1 1972 20 1719 2894 194521 44806 3.77263 3.77263 -134.041 -3.77263 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0502126 0.0455149 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.67 vpr 63.45 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30588 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1003 9675 2005 7104 566 63.4 MiB 0.13 0.00 3.83457 -129.818 -3.83457 3.83457 0.96 0.00122746 0.00114001 0.05539 0.0514084 30 2327 20 6.64007e+06 439530 526063. 1820.29 1.10 0.209096 0.1898 22546 126617 -1 2038 20 1231 2024 112746 25536 3.42623 3.42623 -130.48 -3.42623 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0484752 0.0439312 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.70 vpr 63.15 MiB 0.04 7220 -1 -1 1 0.03 -1 -1 30632 -1 -1 24 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.1 MiB 0.12 990 11245 3461 6773 1011 63.2 MiB 0.17 0.00 4.46418 -132.416 -4.46418 4.46418 0.98 0.00111542 0.00103664 0.0709767 0.0660279 26 2541 22 6.64007e+06 301392 477104. 1650.88 1.19 0.213938 0.194547 21682 110474 -1 2196 21 1695 2906 201027 44603 4.05023 4.05023 -139.484 -4.05023 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0469608 0.042569 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.94 vpr 63.21 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30488 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.15 849 15017 4515 8552 1950 63.2 MiB 0.22 0.00 4.14936 -139.21 -4.14936 4.14936 0.99 0.00122455 0.00113969 0.0990694 0.09217 32 2459 26 6.64007e+06 276276 554710. 1919.41 1.23 0.262226 0.239237 22834 132086 -1 1918 22 1772 3110 188012 46814 3.62743 3.62743 -135.62 -3.62743 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0533412 0.0484029 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.92 vpr 63.45 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30588 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1024 19142 5775 10357 3010 63.4 MiB 0.21 0.00 3.5603 -122.248 -3.5603 3.5603 0.96 0.00047549 0.000437587 0.0980727 0.0910261 32 2370 19 6.64007e+06 489762 554710. 1919.41 1.18 0.253253 0.230751 22834 132086 -1 1980 18 1303 2072 133528 32337 3.04517 3.04517 -120.141 -3.04517 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0470195 0.0426869 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.72 vpr 62.56 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30680 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.5 MiB 0.11 536 12754 3285 8720 749 62.6 MiB 0.14 0.00 3.7877 -97.0533 -3.7877 3.7877 0.95 0.000901661 0.000837991 0.0703107 0.0653453 32 1410 24 6.64007e+06 251160 554710. 1919.41 1.25 0.191535 0.173708 22834 132086 -1 1193 18 930 1583 104791 26692 2.95897 2.95897 -95.2487 -2.95897 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0331552 0.0299041 97 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.69 vpr 63.00 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30252 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.11 948 16081 4441 8879 2761 63.0 MiB 0.19 0.00 3.49449 -109.504 -3.49449 3.49449 0.95 0.00108194 0.00100652 0.081278 0.0755797 28 2354 23 6.64007e+06 426972 500653. 1732.36 1.16 0.222513 0.202698 21970 115934 -1 1989 19 1188 2041 139376 31263 2.73997 2.73997 -104.448 -2.73997 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0415952 0.0376904 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.43 vpr 63.11 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30200 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 24.3 MiB 0.19 706 7820 1805 5417 598 63.1 MiB 0.10 0.00 3.31336 -101.862 -3.31336 3.31336 0.91 0.00105138 0.000975554 0.0506407 0.0470173 28 1802 17 6.64007e+06 213486 500653. 1732.36 1.02 0.175371 0.158675 21970 115934 -1 1658 17 747 1272 84161 19545 2.86817 2.86817 -102.645 -2.86817 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0367629 0.0332825 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.69 vpr 62.91 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30424 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.1 MiB 0.18 890 10756 2975 5928 1853 62.9 MiB 0.14 0.00 3.5061 -124.869 -3.5061 3.5061 0.95 0.00103098 0.000957243 0.0661962 0.0614904 32 2098 19 6.64007e+06 213486 554710. 1919.41 1.12 0.192927 0.175244 22834 132086 -1 1853 19 1370 2100 146399 33560 3.09517 3.09517 -127.81 -3.09517 0 0 701300. 2426.64 0.22 0.10 0.20 -1 -1 0.22 0.0400033 0.0361868 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.67 vpr 63.02 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.17 822 14012 5060 7295 1657 63.0 MiB 0.17 0.00 3.4841 -115.834 -3.4841 3.4841 0.96 0.00103711 0.000963646 0.0876093 0.0814298 28 1765 21 6.64007e+06 226044 500653. 1732.36 1.03 0.213971 0.194511 21970 115934 -1 1613 17 950 1352 87230 19841 2.92617 2.92617 -111.175 -2.92617 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0364626 0.0329888 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.46 vpr 62.89 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.13 840 9753 2297 6936 520 62.9 MiB 0.12 0.00 3.52209 -114.564 -3.52209 3.52209 0.95 0.00104829 0.000972956 0.0512837 0.0475642 30 1983 23 6.64007e+06 364182 526063. 1820.29 1.10 0.178393 0.161316 22546 126617 -1 1684 20 963 1598 88084 20474 2.86577 2.86577 -112.046 -2.86577 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0416048 0.0375675 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.93 vpr 63.61 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 30272 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.8 MiB 0.21 893 19448 6133 10048 3267 63.6 MiB 0.24 0.00 3.56129 -122.026 -3.56129 3.56129 0.95 0.00123436 0.00114657 0.109276 0.101509 32 2328 23 6.64007e+06 426972 554710. 1919.41 1.20 0.266917 0.243475 22834 132086 -1 1920 21 1696 2872 185494 42352 2.99617 2.99617 -114.917 -2.99617 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0513885 0.046557 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 8.23 vpr 63.38 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.5 MiB 0.19 891 11700 2919 7112 1669 63.4 MiB 0.14 0.00 4.29776 -143.645 -4.29776 4.29776 0.95 0.00128653 0.00119593 0.0686426 0.0638229 30 2503 26 6.64007e+06 452088 526063. 1820.29 4.57 0.492298 0.444385 22546 126617 -1 1950 21 1586 2514 140522 33275 3.65443 3.65443 -141.805 -3.65443 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0530965 0.0482524 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.62 vpr 62.79 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30680 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.7 MiB 0.15 800 8852 2481 5509 862 62.8 MiB 0.11 0.00 3.4261 -103.793 -3.4261 3.4261 0.88 0.000923831 0.000859485 0.0497199 0.0462591 32 1629 19 6.64007e+06 238602 554710. 1919.41 1.05 0.161022 0.145817 22834 132086 -1 1529 19 1008 1717 104415 24999 2.63957 2.63957 -99.7065 -2.63957 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0354794 0.0320364 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.98 vpr 63.26 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1073 13316 3773 7644 1899 63.3 MiB 0.20 0.00 3.5141 -124.76 -3.5141 3.5141 0.95 0.00127642 0.00118642 0.0933524 0.0867545 32 2373 21 6.64007e+06 276276 554710. 1919.41 1.19 0.252755 0.230387 22834 132086 -1 2046 20 1555 2691 176916 38971 2.93417 2.93417 -120.618 -2.93417 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0509281 0.0461871 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 8.49 vpr 63.30 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30388 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.21 964 16340 5208 8057 3075 63.3 MiB 0.18 0.00 3.6263 -123.14 -3.6263 3.6263 0.96 0.00122731 0.00114004 0.0895449 0.0831726 36 2220 38 6.64007e+06 452088 612192. 2118.31 4.81 0.491366 0.443774 23410 145293 -1 1812 17 1226 1882 127574 30308 2.90477 2.90477 -116.354 -2.90477 0 0 782063. 2706.10 0.25 0.09 0.21 -1 -1 0.25 0.0430412 0.0390881 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.75 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.16 919 13487 3473 7992 2022 63.0 MiB 0.15 0.00 2.83964 -105.375 -2.83964 2.83964 0.91 0.00108122 0.00100421 0.0703432 0.0652991 26 2148 18 6.64007e+06 389298 477104. 1650.88 1.10 0.199876 0.181399 21682 110474 -1 1894 18 1084 1729 118381 26386 2.31791 2.31791 -101.895 -2.31791 0 0 585099. 2024.56 0.20 0.09 0.15 -1 -1 0.20 0.0392418 0.0355399 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.30 vpr 62.57 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30196 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.8 MiB 0.08 670 10835 3352 6011 1472 62.6 MiB 0.11 0.00 2.72344 -89.4054 -2.72344 2.72344 0.95 0.000785842 0.000728689 0.0527456 0.0488964 32 1414 19 6.64007e+06 188370 554710. 1919.41 1.00 0.144943 0.130744 22834 132086 -1 1284 18 556 845 61323 13722 1.87911 1.87911 -80.4728 -1.87911 0 0 701300. 2426.64 0.23 0.06 0.19 -1 -1 0.23 0.0280278 0.0251578 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.70 vpr 62.93 MiB 0.05 7128 -1 -1 1 0.04 -1 -1 30376 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 335 280 1 154 81 17 17 289 -1 unnamed_device 24.1 MiB 0.15 858 12506 4894 6227 1385 62.9 MiB 0.16 0.00 4.22795 -126.106 -4.22795 4.22795 0.97 0.00107079 0.000990208 0.0794497 0.0738399 32 2005 15 6.64007e+06 226044 554710. 1919.41 1.06 0.202089 0.18388 22834 132086 -1 1690 17 786 1183 76194 18292 3.39142 3.39142 -123.542 -3.39142 0 0 701300. 2426.64 0.23 0.07 0.19 -1 -1 0.23 0.0374604 0.0338974 114 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.80 vpr 63.31 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.2 MiB 0.12 885 17732 4998 9545 3189 63.3 MiB 0.21 0.00 4.22193 -138.344 -4.22193 4.22193 0.87 0.00119705 0.00111398 0.0952641 0.0885659 32 2499 24 6.64007e+06 452088 554710. 1919.41 1.26 0.252174 0.2299 22834 132086 -1 2101 21 1749 2584 200638 46522 3.99323 3.99323 -139.849 -3.99323 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0502486 0.0455363 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.91 vpr 63.52 MiB 0.05 7352 -1 -1 1 0.03 -1 -1 30628 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.23 960 11288 2842 7087 1359 63.5 MiB 0.16 0.00 3.74425 -123.858 -3.74425 3.74425 0.95 0.00140654 0.00130857 0.0701053 0.0651751 30 2600 21 6.64007e+06 477204 526063. 1820.29 1.21 0.243762 0.221201 22546 126617 -1 2046 23 1395 2198 125630 29103 3.47943 3.47943 -125.707 -3.47943 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0626749 0.056724 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.25 vpr 62.04 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30568 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.3 MiB 0.12 395 10503 3120 6151 1232 62.0 MiB 0.09 0.00 2.74064 -71.156 -2.74064 2.74064 0.95 0.000586563 0.000536215 0.0458534 0.0424967 28 1132 21 6.64007e+06 213486 500653. 1732.36 0.98 0.129472 0.116801 21970 115934 -1 969 16 568 838 50567 13363 1.94911 1.94911 -69.9683 -1.94911 0 0 612192. 2118.31 0.24 0.05 0.17 -1 -1 0.24 0.0224648 0.0201795 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.87 vpr 63.11 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30148 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.1 MiB 0.13 992 12749 4476 6094 2179 63.1 MiB 0.17 0.00 4.46433 -140.075 -4.46433 4.46433 1.02 0.00113349 0.00105449 0.0795321 0.0740294 32 2463 23 6.64007e+06 276276 554710. 1919.41 1.23 0.227614 0.207457 22834 132086 -1 2140 19 1678 2905 193127 44835 3.77702 3.77702 -140.014 -3.77702 0 0 701300. 2426.64 0.22 0.11 0.23 -1 -1 0.22 0.0442442 0.0401885 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.52 vpr 62.01 MiB 0.04 6800 -1 -1 1 0.02 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.07 603 10020 2349 7350 321 62.0 MiB 0.10 0.00 2.3583 -84.1764 -2.3583 2.3583 0.96 0.000709237 0.000656868 0.0457705 0.0424351 28 1582 18 6.64007e+06 163254 500653. 1732.36 1.15 0.130754 0.118214 21970 115934 -1 1337 15 601 779 71736 16843 2.02131 2.02131 -84.9436 -2.02131 0 0 612192. 2118.31 0.29 0.05 0.15 -1 -1 0.29 0.0179196 0.0162153 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.85 vpr 63.23 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30632 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.0 MiB 0.10 956 14691 4376 8904 1411 63.2 MiB 0.19 0.00 4.18856 -140.856 -4.18856 4.18856 0.96 0.00123452 0.00114921 0.0829327 0.0770272 32 2613 24 6.64007e+06 439530 554710. 1919.41 1.22 0.224793 0.204591 22834 132086 -1 2136 20 1821 2871 190414 45196 3.68983 3.68983 -141.585 -3.68983 0 0 701300. 2426.64 0.31 0.10 0.17 -1 -1 0.31 0.0364728 0.0330379 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 6.14 vpr 63.34 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1019 8796 1857 6524 415 63.3 MiB 0.12 0.00 3.60659 -123.354 -3.60659 3.60659 0.95 0.00114129 0.00106239 0.0459611 0.0427556 26 3320 31 6.64007e+06 464646 477104. 1650.88 2.66 0.205922 0.186658 21682 110474 -1 2490 28 1964 3353 297636 74197 3.12817 3.12817 -127.245 -3.12817 0 0 585099. 2024.56 0.19 0.16 0.16 -1 -1 0.19 0.0611777 0.0553733 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.99 vpr 63.48 MiB 0.04 7232 -1 -1 1 0.04 -1 -1 30516 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1069 18901 5689 10576 2636 63.5 MiB 0.24 0.00 4.16036 -141.868 -4.16036 4.16036 0.95 0.00128125 0.00119013 0.10693 0.0993087 32 2750 23 6.64007e+06 464646 554710. 1919.41 1.28 0.272963 0.248671 22834 132086 -1 2267 22 1879 3002 190676 44944 3.74943 3.74943 -141.358 -3.74943 0 0 701300. 2426.64 0.27 0.13 0.19 -1 -1 0.27 0.0578455 0.0525226 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.39 vpr 62.87 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 24.0 MiB 0.11 857 10572 2555 6423 1594 62.9 MiB 0.13 0.00 3.07196 -107.422 -3.07196 3.07196 0.95 0.000974767 0.000905145 0.0625927 0.0581404 32 1903 18 6.64007e+06 200928 554710. 1919.41 1.07 0.180213 0.163494 22834 132086 -1 1715 17 893 1476 101216 23699 2.79977 2.79977 -110.621 -2.79977 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0345633 0.0312712 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.57 vpr 62.96 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 24.1 MiB 0.12 824 11806 3275 6761 1770 63.0 MiB 0.14 0.00 3.4951 -114.009 -3.4951 3.4951 0.94 0.000991228 0.00092211 0.0692252 0.0643832 32 1787 20 6.64007e+06 238602 554710. 1919.41 1.10 0.191241 0.173663 22834 132086 -1 1618 18 1138 1683 116961 26817 2.99497 2.99497 -111.529 -2.99497 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0366148 0.0330744 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.52 vpr 62.95 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.10 658 7132 1686 4570 876 62.9 MiB 0.10 0.00 3.4309 -100.483 -3.4309 3.4309 0.95 0.000938849 0.000869392 0.0413495 0.0384788 32 1835 21 6.64007e+06 251160 554710. 1919.41 1.09 0.157499 0.142453 22834 132086 -1 1597 19 1111 1876 111279 27499 2.85097 2.85097 -103.462 -2.85097 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0357191 0.0322237 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.68 vpr 62.91 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.11 802 15390 5648 7380 2362 62.9 MiB 0.18 0.00 3.5251 -121.985 -3.5251 3.5251 0.97 0.000982152 0.000913161 0.0875548 0.081438 32 2017 23 6.64007e+06 226044 554710. 1919.41 1.13 0.213434 0.194352 22834 132086 -1 1792 21 1581 2549 178377 40946 2.94697 2.94697 -120.267 -2.94697 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0410868 0.0371109 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.58 vpr 62.98 MiB 0.08 7024 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 24.1 MiB 0.10 772 9679 2262 6618 799 63.0 MiB 0.12 0.00 3.47387 -114.287 -3.47387 3.47387 0.96 0.000999375 0.000927766 0.0474954 0.0440558 28 2082 20 6.64007e+06 389298 500653. 1732.36 1.10 0.170346 0.154075 21970 115934 -1 1858 20 1288 2146 134035 31511 2.71377 2.71377 -110.497 -2.71377 0 0 612192. 2118.31 0.21 0.09 0.17 -1 -1 0.21 0.0397444 0.0358442 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.64 vpr 63.23 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30076 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 24.3 MiB 0.16 877 15824 4460 9332 2032 63.2 MiB 0.17 0.00 2.80466 -91.9047 -2.80466 2.80466 0.97 0.000796961 0.00073546 0.0708461 0.0656364 26 1994 20 6.64007e+06 389298 477104. 1650.88 1.15 0.19457 0.176342 21682 110474 -1 1850 21 1261 2063 144309 32254 2.28271 2.28271 -92.0582 -2.28271 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0415698 0.037517 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.21 vpr 63.66 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30564 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 25.1 MiB 0.21 1234 17889 5288 10109 2492 63.7 MiB 0.27 0.00 4.16036 -142.499 -4.16036 4.16036 0.97 0.00139893 0.00130313 0.107278 0.0997537 28 3545 25 6.64007e+06 514878 500653. 1732.36 2.35 0.29575 0.269966 21970 115934 -1 2771 23 2018 3505 277286 57834 3.59443 3.59443 -140.539 -3.59443 0 0 612192. 2118.31 0.22 0.15 0.17 -1 -1 0.22 0.0627629 0.0569747 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 7.14 vpr 63.38 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1001 12556 2992 8501 1063 63.4 MiB 0.17 0.00 3.5823 -124.897 -3.5823 3.5823 0.95 0.00128262 0.00119039 0.0727695 0.0674339 26 2647 27 6.64007e+06 464646 477104. 1650.88 3.59 0.454363 0.410281 21682 110474 -1 2131 19 1671 2462 155864 36324 3.06617 3.06617 -126.861 -3.06617 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0490066 0.044526 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 7.16 vpr 62.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30656 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 849 6716 1490 4831 395 62.9 MiB 0.09 0.00 3.4309 -114.527 -3.4309 3.4309 1.04 0.00108174 0.00100329 0.0383568 0.0355768 26 2093 24 6.64007e+06 364182 477104. 1650.88 3.63 0.350663 0.314689 21682 110474 -1 1884 21 1217 2072 138023 31593 2.79677 2.79677 -112.621 -2.79677 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0442234 0.0398671 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 6.76 vpr 63.21 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 30564 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1058 10839 2803 6606 1430 63.2 MiB 0.16 0.00 3.4841 -118.469 -3.4841 3.4841 0.96 0.00124853 0.0011604 0.0730161 0.0678312 28 2604 24 6.64007e+06 301392 500653. 1732.36 3.13 0.436219 0.393907 21970 115934 -1 2242 21 1694 2807 185283 43066 3.02797 3.02797 -118.736 -3.02797 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.051426 0.0466055 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.99 vpr 63.44 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30500 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.6 MiB 0.33 953 7835 1760 5704 371 63.4 MiB 0.13 0.00 5.23812 -147.937 -5.23812 5.23812 0.95 0.00138189 0.00128455 0.0608408 0.056564 32 2489 22 6.64007e+06 288834 554710. 1919.41 1.20 0.234689 0.212809 22834 132086 -1 2099 22 1328 2260 170864 38627 4.06588 4.06588 -142.772 -4.06588 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0589001 0.0532331 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.70 vpr 63.32 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30432 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.2 MiB 0.26 955 10859 3044 7047 768 63.3 MiB 0.16 0.00 5.02279 -136.574 -5.02279 5.02279 0.94 0.00128994 0.00119952 0.0778166 0.0723867 30 2194 18 6.64007e+06 288834 526063. 1820.29 1.07 0.214092 0.194725 22546 126617 -1 1811 17 953 1502 84216 19390 3.80628 3.80628 -130.763 -3.80628 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0450446 0.0409589 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.20 vpr 63.47 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30448 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1024 15398 4164 9880 1354 63.5 MiB 0.20 0.00 3.5401 -119.706 -3.5401 3.5401 0.95 0.00124883 0.00115072 0.0883208 0.0818606 26 2863 23 6.64007e+06 439530 477104. 1650.88 1.56 0.251498 0.228786 21682 110474 -1 2185 21 1584 2783 182949 41113 3.04137 3.04137 -118.897 -3.04137 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0512198 0.0464587 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.87 vpr 63.73 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30720 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.9 MiB 0.16 865 10206 2264 6941 1001 63.7 MiB 0.14 0.00 4.23656 -140.329 -4.23656 4.23656 0.95 0.00126173 0.00117225 0.0592174 0.0549554 32 2778 25 6.64007e+06 464646 554710. 1919.41 1.29 0.226139 0.2052 22834 132086 -1 2089 20 1834 2849 178412 43461 3.63963 3.63963 -136.194 -3.63963 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0504513 0.0457703 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.05 vpr 63.53 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 30652 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.20 1205 17356 4219 10649 2488 63.5 MiB 0.24 0.00 4.21478 -145.938 -4.21478 4.21478 1.00 0.00154509 0.00143188 0.111106 0.10332 32 2800 20 6.64007e+06 527436 554710. 1919.41 1.26 0.303234 0.27672 22834 132086 -1 2489 18 1805 2833 192180 41804 3.65443 3.65443 -142.902 -3.65443 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0569476 0.0517284 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.62 vpr 63.10 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 24.2 MiB 0.16 655 13731 5030 6417 2284 63.1 MiB 0.16 0.00 3.7665 -117.146 -3.7665 3.7665 0.96 0.00100778 0.000936586 0.0813734 0.0756253 32 1845 24 6.64007e+06 226044 554710. 1919.41 1.11 0.213403 0.194085 22834 132086 -1 1531 18 1200 1878 126764 31492 2.88417 2.88417 -110.663 -2.88417 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0394959 0.0356604 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.85 vpr 63.44 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30548 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.6 MiB 0.16 910 7386 1527 5477 382 63.4 MiB 0.11 0.00 4.20356 -136.322 -4.20356 4.20356 0.95 0.00126292 0.00117515 0.0427251 0.0396678 32 2730 23 6.64007e+06 477204 554710. 1919.41 1.24 0.202965 0.184031 22834 132086 -1 2085 21 1746 2759 176961 42586 3.86663 3.86663 -141.998 -3.86663 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0520252 0.0471792 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.80 vpr 63.20 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30612 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.16 994 14048 3500 8468 2080 63.2 MiB 0.19 0.00 3.7163 -119.726 -3.7163 3.7163 0.95 0.00125032 0.00116153 0.0816021 0.0758234 32 2470 21 6.64007e+06 426972 554710. 1919.41 1.19 0.238755 0.217363 22834 132086 -1 2007 22 1670 2926 184055 42950 2.91517 2.91517 -111.183 -2.91517 0 0 701300. 2426.64 0.22 0.12 0.16 -1 -1 0.22 0.0540264 0.0489722 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.89 vpr 63.42 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1080 15017 4624 8554 1839 63.4 MiB 0.21 0.00 4.14936 -144.892 -4.14936 4.14936 0.95 0.00116895 0.00108719 0.0958405 0.0891669 32 2642 22 6.64007e+06 276276 554710. 1919.41 1.21 0.245068 0.223644 22834 132086 -1 2344 18 1728 3059 207410 45325 3.63843 3.63843 -143.826 -3.63843 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0435542 0.0396022 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.88 vpr 63.45 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1044 15603 4218 9336 2049 63.4 MiB 0.20 0.00 3.55822 -125.535 -3.55822 3.55822 0.95 0.00128685 0.00119457 0.0917366 0.0851464 32 2404 21 6.64007e+06 439530 554710. 1919.41 1.14 0.253666 0.230906 22834 132086 -1 2140 23 1494 2286 156511 35184 2.75357 2.75357 -117.658 -2.75357 0 0 701300. 2426.64 0.22 0.12 0.20 -1 -1 0.22 0.0576037 0.0521228 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.03 vpr 63.24 MiB 0.11 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1017 12791 3286 8285 1220 63.2 MiB 0.17 0.00 3.47912 -120.914 -3.47912 3.47912 0.95 0.00125526 0.00116658 0.0716289 0.0664208 26 2727 36 6.64007e+06 464646 477104. 1650.88 2.44 0.258545 0.234351 21682 110474 -1 2057 17 1061 1896 120949 29081 3.26357 3.26357 -123.648 -3.26357 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0468426 0.0427093 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.82 vpr 63.45 MiB 0.02 7244 -1 -1 1 0.04 -1 -1 30512 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 0.17 1102 19142 5372 11310 2460 63.4 MiB 0.23 0.00 3.5243 -123.608 -3.5243 3.5243 0.95 0.00127557 0.00118569 0.105295 0.0977737 32 2456 22 6.64007e+06 489762 554710. 1919.41 1.18 0.270563 0.246819 22834 132086 -1 2022 22 1778 2816 177947 39171 2.75177 2.75177 -114.877 -2.75177 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0554633 0.0502999 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.66 vpr 63.68 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30548 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 0.11 1032 14906 4320 9186 1400 63.7 MiB 0.20 0.00 4.18856 -144.112 -4.18856 4.18856 0.95 0.00123109 0.00114574 0.0815206 0.0757776 30 2350 21 6.64007e+06 464646 526063. 1820.29 1.16 0.22517 0.20507 22546 126617 -1 1948 23 1626 2580 137099 31450 3.46723 3.46723 -136.683 -3.46723 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0547818 0.0496988 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.51 vpr 63.34 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30708 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1016 12153 3010 8355 788 63.3 MiB 0.16 0.00 4.23153 -146.068 -4.23153 4.23153 0.95 0.00128896 0.00119875 0.0685286 0.063655 26 3093 37 6.64007e+06 489762 477104. 1650.88 1.95 0.265685 0.240945 21682 110474 -1 2387 22 2013 3233 250133 55046 4.22543 4.22543 -157.694 -4.22543 0 0 585099. 2024.56 0.19 0.14 0.16 -1 -1 0.19 0.0550271 0.0497469 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.37 vpr 63.55 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30572 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.6 MiB 0.23 1147 12639 3382 8238 1019 63.6 MiB 0.18 0.00 4.39296 -135.032 -4.39296 4.39296 0.95 0.00135937 0.00126153 0.0784471 0.0728653 28 2942 24 6.64007e+06 452088 500653. 1732.36 1.65 0.266958 0.242317 21970 115934 -1 2526 22 1546 2792 197546 44807 3.93003 3.93003 -135.196 -3.93003 0 0 612192. 2118.31 0.21 0.13 0.17 -1 -1 0.21 0.0582562 0.0527252 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.00 vpr 63.36 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30524 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1069 15584 4992 8664 1928 63.4 MiB 0.23 0.00 4.34993 -137.194 -4.34993 4.34993 0.96 0.00132294 0.00122917 0.113045 0.10504 32 2682 22 6.64007e+06 276276 554710. 1919.41 1.22 0.282477 0.257605 22834 132086 -1 2344 20 1715 3137 203196 46058 3.66863 3.66863 -139.699 -3.66863 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532876 0.0483233 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.53 vpr 63.03 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30616 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.2 MiB 0.11 928 8735 1852 5986 897 63.0 MiB 0.11 0.00 3.50687 -122.364 -3.50687 3.50687 0.95 0.0010111 0.000938088 0.0440406 0.0409112 28 2194 20 6.64007e+06 389298 500653. 1732.36 1.09 0.170342 0.154174 21970 115934 -1 1978 19 1179 1910 123808 28910 3.00117 3.00117 -122.224 -3.00117 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0390889 0.0353255 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.65 vpr 63.07 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.2 MiB 0.20 885 10406 2864 6861 681 63.1 MiB 0.15 0.00 3.5031 -121.505 -3.5031 3.5031 0.99 0.00113954 0.00105791 0.0700182 0.0650313 26 2216 20 6.64007e+06 226044 477104. 1650.88 1.09 0.211196 0.191726 21682 110474 -1 1923 21 1319 2114 157118 34146 2.99217 2.99217 -120.399 -2.99217 0 0 585099. 2024.56 0.21 0.12 0.14 -1 -1 0.21 0.0568033 0.0515681 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.07 vpr 63.67 MiB 0.03 7328 -1 -1 1 0.03 -1 -1 30784 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 0.12 1352 17606 4821 10688 2097 63.7 MiB 0.26 0.01 4.98622 -168.741 -4.98622 4.98622 0.95 0.00148734 0.00138316 0.108369 0.100785 32 3475 26 6.64007e+06 527436 554710. 1919.41 1.40 0.306069 0.279173 22834 132086 -1 2824 23 2578 4316 291727 66454 5.23049 5.23049 -176.821 -5.23049 0 0 701300. 2426.64 0.23 0.17 0.19 -1 -1 0.23 0.0670393 0.0608676 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.66 vpr 63.25 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1055 17857 5354 10411 2092 63.2 MiB 0.23 0.00 3.51607 -123.396 -3.51607 3.51607 0.95 0.00120792 0.00112235 0.100328 0.0930252 30 2214 17 6.64007e+06 414414 526063. 1820.29 1.06 0.244052 0.222724 22546 126617 -1 1952 19 1238 1872 93959 22767 2.93717 2.93717 -120.668 -2.93717 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0465255 0.0422588 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.59 vpr 63.09 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 24.2 MiB 0.11 854 17523 5448 9891 2184 63.1 MiB 0.19 0.00 3.4529 -114.919 -3.4529 3.4529 0.95 0.000982283 0.000912357 0.0851734 0.0790847 30 1877 21 6.64007e+06 389298 526063. 1820.29 1.05 0.209171 0.190231 22546 126617 -1 1638 19 882 1371 83618 18199 2.61677 2.61677 -105.127 -2.61677 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.037794 0.0341673 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.20 vpr 63.55 MiB 0.05 7536 -1 -1 1 0.04 -1 -1 30916 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 25.0 MiB 0.38 1192 13629 3357 8864 1408 63.6 MiB 0.20 0.00 4.97469 -167.233 -4.97469 4.97469 0.95 0.00159005 0.00147882 0.0878394 0.0815774 32 2903 21 6.64007e+06 565110 554710. 1919.41 1.26 0.288018 0.262119 22834 132086 -1 2418 20 2252 3402 219342 48676 4.52829 4.52829 -165.734 -4.52829 0 0 701300. 2426.64 0.24 0.14 0.19 -1 -1 0.24 0.0641886 0.0582815 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.92 vpr 63.30 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30636 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1027 16762 4357 10483 1922 63.3 MiB 0.20 0.00 4.27488 -146.847 -4.27488 4.27488 0.95 0.00122718 0.00114079 0.0895284 0.0831085 28 2555 19 6.64007e+06 477204 500653. 1732.36 1.30 0.239495 0.218182 21970 115934 -1 2308 20 1779 2632 170801 40372 3.76183 3.76183 -147.826 -3.76183 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0494621 0.044884 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.41 vpr 62.99 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 24.1 MiB 0.08 882 11046 2802 6952 1292 63.0 MiB 0.13 0.00 3.5621 -124.172 -3.5621 3.5621 0.86 0.000986704 0.000917513 0.0531458 0.0493247 30 1789 19 6.64007e+06 401856 526063. 1820.29 1.06 0.173121 0.15701 22546 126617 -1 1527 18 784 1304 70997 17006 2.46797 2.46797 -107.154 -2.46797 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0361507 0.0327594 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.28 vpr 63.38 MiB 0.05 7260 -1 -1 1 0.08 -1 -1 30816 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.8 MiB 0.15 1334 20347 5362 13158 1827 63.4 MiB 0.27 0.00 4.95502 -168.119 -4.95502 4.95502 1.02 0.00142769 0.00132929 0.115229 0.107234 30 3282 23 6.64007e+06 539994 526063. 1820.29 1.45 0.301668 0.27554 22546 126617 -1 2570 22 2061 3452 211185 45460 4.62329 4.62329 -171.941 -4.62329 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0619404 0.0562199 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.27 vpr 62.86 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.07 623 13731 4925 6406 2400 62.9 MiB 0.16 0.00 3.5061 -118.666 -3.5061 3.5061 0.95 0.000979778 0.000910056 0.079622 0.0740555 32 2319 30 6.64007e+06 213486 554710. 1919.41 1.13 0.208561 0.189287 22834 132086 -1 1561 21 1442 2278 155291 39307 3.29657 3.29657 -120.613 -3.29657 0 0 701300. 2426.64 0.22 0.10 0.20 -1 -1 0.22 0.0406854 0.0367124 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.48 vpr 63.06 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30204 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 24.1 MiB 0.14 846 13087 3844 8172 1071 63.1 MiB 0.15 0.00 3.50322 -113.721 -3.50322 3.50322 0.95 0.000986471 0.00091685 0.0633112 0.0587501 28 1867 21 6.64007e+06 401856 500653. 1732.36 1.05 0.186544 0.169116 21970 115934 -1 1602 18 1023 1691 95128 22649 2.64977 2.64977 -104.893 -2.64977 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0299389 0.026985 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.74 vpr 63.19 MiB 0.03 7456 -1 -1 1 0.03 -1 -1 30396 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1003 12839 3224 8329 1286 63.2 MiB 0.17 0.00 3.6803 -109.03 -3.6803 3.6803 0.95 0.00121572 0.00113001 0.0753906 0.0700562 26 2451 24 6.64007e+06 426972 477104. 1650.88 1.17 0.231359 0.210219 21682 110474 -1 2126 19 1356 2370 153384 35770 3.11756 3.11756 -113.201 -3.11756 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0465188 0.0421109 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.81 vpr 63.34 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30748 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.3 MiB 0.16 937 11048 2797 7564 687 63.3 MiB 0.16 0.00 4.21976 -143.232 -4.21976 4.21976 0.95 0.00127675 0.00118661 0.0782193 0.0727372 32 2271 23 6.64007e+06 276276 554710. 1919.41 1.24 0.242328 0.220674 22834 132086 -1 1946 21 1977 2972 204053 46827 3.81683 3.81683 -147.104 -3.81683 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532359 0.0482916 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.11 vpr 63.39 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 30760 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1070 15876 4480 9346 2050 63.4 MiB 0.22 0.00 4.25856 -146.098 -4.25856 4.25856 0.95 0.00128376 0.00119269 0.0912503 0.0847435 32 2696 29 6.64007e+06 452088 554710. 1919.41 1.36 0.272221 0.247651 22834 132086 -1 2464 22 1898 3089 213624 47396 3.73543 3.73543 -146.789 -3.73543 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0551112 0.0499448 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.79 vpr 63.07 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30560 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 863 8856 1892 6516 448 63.1 MiB 0.12 0.00 3.4749 -121.747 -3.4749 3.4749 0.95 0.00109153 0.00101327 0.0474735 0.0440319 32 2079 22 6.64007e+06 401856 554710. 1919.41 1.15 0.1853 0.167624 22834 132086 -1 1814 21 1332 2091 149944 33656 2.80957 2.80957 -116.543 -2.80957 0 0 701300. 2426.64 0.30 0.10 0.19 -1 -1 0.30 0.0451747 0.0408035 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.80 vpr 62.94 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 821 8336 2395 4162 1779 62.9 MiB 0.11 0.00 3.72326 -116.749 -3.72326 3.72326 0.95 0.00108546 0.00100774 0.0555844 0.0516273 32 1910 21 6.64007e+06 213486 554710. 1919.41 1.13 0.190674 0.172686 22834 132086 -1 1689 17 929 1729 94151 23145 2.89177 2.89177 -110.219 -2.89177 0 0 701300. 2426.64 0.27 0.08 0.19 -1 -1 0.27 0.0381296 0.0344701 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.66 vpr 63.30 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30416 -1 -1 35 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.2 MiB 0.19 919 13195 3488 8459 1248 63.3 MiB 0.17 0.00 3.5511 -113.034 -3.5511 3.5511 0.95 0.00119014 0.00110622 0.0731785 0.0679676 26 2372 24 6.64007e+06 439530 477104. 1650.88 1.19 0.226169 0.2054 21682 110474 -1 1897 18 972 1718 98070 24209 2.91877 2.91877 -111.933 -2.91877 0 0 585099. 2024.56 0.20 0.09 0.16 -1 -1 0.20 0.0445005 0.0403775 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.88 vpr 63.24 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 30384 -1 -1 32 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.2 MiB 0.12 939 14996 4215 8524 2257 63.2 MiB 0.18 0.00 4.39198 -124.88 -4.39198 4.39198 0.95 0.00108305 0.0010082 0.0813356 0.0756071 26 2459 20 6.64007e+06 401856 477104. 1650.88 1.44 0.215195 0.195907 21682 110474 -1 2143 22 1576 2525 191177 41342 3.71862 3.71862 -128.803 -3.71862 0 0 585099. 2024.56 0.23 0.10 0.15 -1 -1 0.23 0.0355524 0.0319696 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.62 vpr 63.18 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.3 MiB 0.18 812 12506 4081 6359 2066 63.2 MiB 0.16 0.00 3.5343 -115.469 -3.5343 3.5343 0.95 0.00103955 0.000969621 0.0765487 0.0710716 32 1970 21 6.64007e+06 238602 554710. 1919.41 1.12 0.205308 0.18639 22834 132086 -1 1722 19 1222 2008 145659 30923 2.69057 2.69057 -109.105 -2.69057 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0321006 0.0288347 115 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.72 vpr 63.15 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30320 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.3 MiB 0.22 892 11281 2807 6986 1488 63.1 MiB 0.15 0.00 3.6865 -117.315 -3.6865 3.6865 0.97 0.00112062 0.00104012 0.0756766 0.0702726 30 1814 21 6.64007e+06 213486 526063. 1820.29 1.07 0.216034 0.196111 22546 126617 -1 1687 17 815 1359 86402 19223 2.67457 2.67457 -106.696 -2.67457 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0390476 0.035389 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.77 vpr 63.27 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1121 19124 6194 10224 2706 63.3 MiB 0.23 0.00 4.18856 -139.706 -4.18856 4.18856 0.95 0.00114029 0.00105659 0.0968643 0.0900323 32 2632 21 6.64007e+06 464646 554710. 1919.41 1.18 0.24002 0.219046 22834 132086 -1 2206 20 1690 2797 185921 40582 3.70983 3.70983 -138.492 -3.70983 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0459905 0.0417413 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.13 vpr 63.40 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30680 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1037 18660 5257 10625 2778 63.4 MiB 0.24 0.00 4.17032 -143.358 -4.17032 4.17032 1.06 0.00127928 0.00118913 0.106421 0.0987899 32 2714 19 6.64007e+06 452088 554710. 1919.41 1.24 0.263562 0.240484 22834 132086 -1 2168 21 1856 3139 205603 45688 3.58523 3.58523 -137.998 -3.58523 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0535114 0.0485162 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.87 vpr 63.34 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30356 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1085 15876 4268 10377 1231 63.3 MiB 0.20 0.00 4.15553 -144.194 -4.15553 4.15553 0.97 0.00128852 0.00119801 0.0924009 0.08577 32 2694 21 6.64007e+06 452088 554710. 1919.41 1.23 0.254786 0.232099 22834 132086 -1 2306 20 1740 2835 186964 42392 3.63423 3.63423 -144.496 -3.63423 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0517734 0.0469792 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 12.06 vpr 63.39 MiB 0.04 7232 -1 -1 1 0.04 -1 -1 30476 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 958 7956 1551 5183 1222 63.4 MiB 0.11 0.00 4.17056 -134.333 -4.17056 4.17056 0.95 0.00127982 0.00119002 0.0465585 0.0433107 28 3481 33 6.64007e+06 477204 500653. 1732.36 8.49 0.402419 0.362675 21970 115934 -1 2359 18 1490 2576 174926 43768 3.89103 3.89103 -138.495 -3.89103 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0466285 0.042349 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.68 vpr 62.96 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 24.1 MiB 0.15 840 12856 4254 6466 2136 63.0 MiB 0.15 0.00 3.4921 -115.538 -3.4921 3.4921 0.96 0.000979212 0.000909362 0.0746744 0.0693727 32 2098 17 6.64007e+06 238602 554710. 1919.41 1.12 0.191236 0.173762 22834 132086 -1 1854 23 1282 2024 145802 32486 2.85177 2.85177 -114.379 -2.85177 0 0 701300. 2426.64 0.28 0.12 0.19 -1 -1 0.28 0.0491657 0.0446036 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.19 vpr 63.21 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30324 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.2 MiB 0.23 996 13127 3599 7422 2106 63.2 MiB 0.18 0.00 4.20393 -135.69 -4.20393 4.20393 0.95 0.00123131 0.00114472 0.0883443 0.0821796 26 2570 22 6.64007e+06 301392 477104. 1650.88 1.55 0.245904 0.22397 21682 110474 -1 2255 23 1911 2793 202480 46338 4.20463 4.20463 -142.015 -4.20463 0 0 585099. 2024.56 0.20 0.13 0.16 -1 -1 0.20 0.0551065 0.04998 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 6.33 vpr 63.78 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 30920 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1061 10232 2187 7405 640 63.8 MiB 0.15 0.00 4.16036 -143.59 -4.16036 4.16036 0.96 0.00139881 0.00129933 0.0621425 0.0577114 26 3091 27 6.64007e+06 514878 477104. 1650.88 2.67 0.256626 0.232203 21682 110474 -1 2470 24 2129 3662 254812 56783 3.87763 3.87763 -150.717 -3.87763 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0644066 0.0581209 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.07 vpr 63.37 MiB 0.02 7192 -1 -1 1 0.05 -1 -1 30416 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.15 924 14769 3776 9247 1746 63.4 MiB 0.20 0.00 4.18868 -135.93 -4.18868 4.18868 0.95 0.00130306 0.0012106 0.0901867 0.0837043 32 2520 23 6.64007e+06 414414 554710. 1919.41 1.27 0.260146 0.237006 22834 132086 -1 1968 21 1559 2523 151398 36244 3.68663 3.68663 -135.139 -3.68663 0 0 701300. 2426.64 0.28 0.10 0.20 -1 -1 0.28 0.0498321 0.0451013 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.83 vpr 63.20 MiB 0.03 7376 -1 -1 1 0.03 -1 -1 30424 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.2 MiB 0.18 981 15217 4561 7983 2673 63.2 MiB 0.20 0.00 3.6613 -113.514 -3.6613 3.6613 0.95 0.00125855 0.00116911 0.0932742 0.0866676 32 2166 20 6.64007e+06 401856 554710. 1919.41 1.16 0.24673 0.224721 22834 132086 -1 1897 21 1380 2255 138409 32039 2.99017 2.99017 -111.94 -2.99017 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0515106 0.0466341 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.12 vpr 63.21 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30540 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.33 1125 9725 2385 6614 726 63.2 MiB 0.16 0.00 4.21673 -144.443 -4.21673 4.21673 0.95 0.00127935 0.00118921 0.0695185 0.0646773 30 2755 23 6.64007e+06 276276 526063. 1820.29 1.28 0.235422 0.214407 22546 126617 -1 2426 18 1756 2988 165500 39165 3.63843 3.63843 -145.722 -3.63843 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0479473 0.0436147 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.78 vpr 63.12 MiB 0.03 7244 -1 -1 1 0.05 -1 -1 30364 -1 -1 36 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.0 MiB 0.19 964 18079 5198 10699 2182 63.1 MiB 0.21 0.00 3.5353 -109.347 -3.5353 3.5353 0.95 0.00119797 0.00111365 0.101108 0.0937499 32 2205 23 6.64007e+06 452088 554710. 1919.41 1.16 0.255041 0.232161 22834 132086 -1 1917 20 1480 2395 153837 35367 2.98837 2.98837 -106.254 -2.98837 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0482532 0.0436964 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.68 vpr 62.91 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 24.0 MiB 0.10 799 9356 2113 6168 1075 62.9 MiB 0.12 0.00 3.4921 -122.483 -3.4921 3.4921 0.95 0.00098074 0.00091186 0.0547617 0.0509542 32 1933 21 6.64007e+06 213486 554710. 1919.41 1.13 0.17684 0.160484 22834 132086 -1 1746 20 1309 2038 140179 31697 2.90477 2.90477 -119.498 -2.90477 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0406135 0.0367914 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.39 vpr 63.25 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30480 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.31 992 16743 5741 8435 2567 63.2 MiB 0.22 0.00 4.25856 -144.485 -4.25856 4.25856 0.95 0.00128906 0.00119729 0.0979691 0.091041 28 2940 26 6.64007e+06 439530 500653. 1732.36 1.52 0.269838 0.245832 21970 115934 -1 2391 21 1824 3028 214853 48314 3.86363 3.86363 -149.866 -3.86363 0 0 612192. 2118.31 0.23 0.13 0.16 -1 -1 0.23 0.0536773 0.0486817 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.13 vpr 63.39 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1054 17367 5167 10302 1898 63.4 MiB 0.25 0.00 4.21976 -145.962 -4.21976 4.21976 0.96 0.00130357 0.0012129 0.121467 0.113035 32 2490 25 6.64007e+06 288834 554710. 1919.41 1.21 0.291741 0.266446 22834 132086 -1 2166 22 1926 3151 220327 52100 3.68863 3.68863 -143.279 -3.68863 0 0 701300. 2426.64 0.23 0.14 0.19 -1 -1 0.23 0.057732 0.0523469 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.42 vpr 63.07 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30392 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.2 MiB 0.19 691 7975 1531 6145 299 63.1 MiB 0.10 0.00 3.6913 -111.241 -3.6913 3.6913 0.95 0.00101095 0.000938354 0.0403363 0.0373671 26 2290 37 6.64007e+06 376740 477104. 1650.88 1.91 0.193501 0.174376 21682 110474 -1 1809 20 1168 1833 136009 32871 2.94497 2.94497 -110.67 -2.94497 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0482483 0.0434224 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.63 vpr 62.72 MiB 0.06 7048 -1 -1 1 0.03 -1 -1 30440 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 653 13381 4684 6039 2658 62.7 MiB 0.16 0.00 3.5533 -116.629 -3.5533 3.5533 0.94 0.000950105 0.000883035 0.0753172 0.0700623 32 1995 26 6.64007e+06 226044 554710. 1919.41 1.13 0.202867 0.184375 22834 132086 -1 1554 16 1211 1853 127409 31046 3.14237 3.14237 -114.992 -3.14237 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0322871 0.0292517 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.91 vpr 63.16 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30392 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.1 MiB 0.19 927 16303 4785 8793 2725 63.2 MiB 0.20 0.00 4.16476 -135.871 -4.16476 4.16476 0.95 0.00120844 0.00112208 0.0920885 0.0854766 32 2295 21 6.64007e+06 414414 554710. 1919.41 1.15 0.244609 0.22273 22834 132086 -1 1967 22 1517 2274 163104 37126 3.63083 3.63083 -129.372 -3.63083 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0526544 0.0476652 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.97 vpr 63.20 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1051 17397 5163 9750 2484 63.2 MiB 0.22 0.00 4.41596 -136.112 -4.41596 4.41596 0.95 0.00126024 0.00116984 0.10279 0.0954035 26 2990 28 6.64007e+06 401856 477104. 1650.88 2.30 0.279915 0.254762 21682 110474 -1 2375 22 1703 2688 210983 46235 3.95102 3.95102 -136.496 -3.95102 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0542813 0.0491481 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.81 vpr 63.29 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30548 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1159 10441 2545 7247 649 63.3 MiB 0.16 0.00 4.95022 -163.094 -4.95022 4.95022 0.95 0.00134568 0.00125312 0.0630511 0.0587242 32 3412 24 6.64007e+06 464646 554710. 1919.41 1.34 0.23639 0.215655 22834 132086 -1 2768 22 2343 3752 277181 63284 4.51929 4.51929 -166.594 -4.51929 0 0 701300. 2426.64 0.22 0.08 0.17 -1 -1 0.22 0.0254204 0.0229997 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 7.36 vpr 63.20 MiB 0.05 7388 -1 -1 1 0.03 -1 -1 30712 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.1 MiB 0.15 809 10170 2335 6303 1532 63.2 MiB 0.13 0.00 3.8005 -110.812 -3.8005 3.8005 0.96 0.00117637 0.00109234 0.06161 0.0574691 32 2220 40 6.64007e+06 426972 554710. 1919.41 3.82 0.437001 0.393437 22834 132086 -1 1707 19 1380 2183 134550 33468 2.96316 2.96316 -111.935 -2.96316 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0451481 0.0408789 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.66 vpr 62.82 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.10 529 12292 5081 5761 1450 62.8 MiB 0.12 0.00 3.54427 -98.353 -3.54427 3.54427 0.94 0.00089905 0.00083483 0.0666504 0.0619547 32 1648 39 6.64007e+06 263718 554710. 1919.41 1.25 0.206911 0.187252 22834 132086 -1 1283 21 1156 1617 125703 30421 3.04217 3.04217 -100.453 -3.04217 0 0 701300. 2426.64 0.23 0.09 0.21 -1 -1 0.23 0.0381643 0.0344341 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.17 vpr 63.55 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30696 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1462 20856 5895 12562 2399 63.5 MiB 0.30 0.00 4.52196 -148.077 -4.52196 4.52196 0.95 0.00152309 0.00141555 0.130893 0.121655 30 3434 23 6.64007e+06 527436 526063. 1820.29 1.37 0.326253 0.297678 22546 126617 -1 2882 20 1953 3609 227728 48875 3.83863 3.83863 -145.246 -3.83863 0 0 666494. 2306.21 0.22 0.14 0.19 -1 -1 0.22 0.0614245 0.0557984 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.92 vpr 63.34 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30700 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.28 983 10501 2625 7195 681 63.3 MiB 0.16 0.00 4.43796 -139.728 -4.43796 4.43796 0.95 0.00136533 0.00126669 0.0804074 0.0747198 32 2486 22 6.64007e+06 276276 554710. 1919.41 1.22 0.252435 0.229219 22834 132086 -1 2111 21 1551 2546 178225 40250 3.74282 3.74282 -142.726 -3.74282 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0565837 0.0512156 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.61 vpr 62.99 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.24 851 9540 2516 6274 750 63.0 MiB 0.13 0.00 3.72946 -115.235 -3.72946 3.72946 0.95 0.00110259 0.00102344 0.0640072 0.0594416 32 1916 20 6.64007e+06 200928 554710. 1919.41 1.07 0.199387 0.180812 22834 132086 -1 1727 15 705 1094 73805 17005 2.63957 2.63957 -108.939 -2.63957 0 0 701300. 2426.64 0.25 0.07 0.19 -1 -1 0.25 0.0349768 0.031695 109 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.64 vpr 63.37 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1023 18745 6322 9498 2925 63.4 MiB 0.23 0.00 4.46396 -139.111 -4.46396 4.46396 0.95 0.00119299 0.00110894 0.103942 0.0966266 28 3088 39 6.64007e+06 414414 500653. 1732.36 2.06 0.29093 0.264924 21970 115934 -1 2233 23 1523 2357 182616 40728 3.94083 3.94083 -141.043 -3.94083 0 0 612192. 2118.31 0.21 0.12 0.17 -1 -1 0.21 0.0537971 0.0487372 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.98 vpr 63.35 MiB 0.03 7324 -1 -1 1 0.03 -1 -1 30832 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.6 MiB 0.20 1135 20076 5790 11566 2720 63.3 MiB 0.27 0.00 4.51716 -144.659 -4.51716 4.51716 0.95 0.00140209 0.00130485 0.124192 0.115577 32 2700 20 6.64007e+06 477204 554710. 1919.41 1.21 0.299643 0.273678 22834 132086 -1 2362 20 1904 2937 196238 45700 3.94423 3.94423 -144.809 -3.94423 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0556779 0.050511 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.82 vpr 63.29 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30424 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.2 MiB 0.18 923 11484 2608 8162 714 63.3 MiB 0.16 0.00 3.73061 -110.59 -3.73061 3.73061 0.95 0.0011868 0.001103 0.0653068 0.0606284 26 2927 27 6.64007e+06 426972 477104. 1650.88 2.18 0.228402 0.207202 21682 110474 -1 2233 20 1649 2813 191993 51133 3.45377 3.45377 -122.214 -3.45377 0 0 585099. 2024.56 0.22 0.12 0.16 -1 -1 0.22 0.048577 0.044105 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.02 vpr 63.43 MiB 0.04 7224 -1 -1 1 0.04 -1 -1 30512 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1008 13516 3637 9135 744 63.4 MiB 0.18 0.00 4.19956 -142.899 -4.19956 4.19956 0.97 0.00128755 0.00119672 0.0719489 0.066802 28 2973 25 6.64007e+06 539994 500653. 1732.36 1.40 0.242135 0.220102 21970 115934 -1 2181 18 1687 2814 170761 41453 3.85983 3.85983 -147.768 -3.85983 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0476405 0.0432575 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.68 vpr 63.36 MiB 0.04 7252 -1 -1 1 0.05 -1 -1 30480 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.4 MiB 0.17 988 17184 5218 8807 3159 63.4 MiB 0.21 0.00 3.62559 -123.648 -3.62559 3.62559 0.95 0.00128137 0.00119039 0.0937282 0.0870957 28 3023 44 6.64007e+06 502320 500653. 1732.36 2.00 0.307347 0.279371 21970 115934 -1 2285 21 1520 2399 196474 44970 2.87197 2.87197 -119.095 -2.87197 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.053402 0.0484432 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 6.74 vpr 62.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.8 MiB 0.09 627 13430 5541 5355 2534 62.6 MiB 0.15 0.00 3.6785 -106.673 -3.6785 3.6785 0.97 0.000963455 0.000895813 0.0792127 0.0736687 32 1473 19 6.64007e+06 226044 554710. 1919.41 3.11 0.36874 0.332228 22834 132086 -1 1343 21 1082 1537 110955 26479 2.78797 2.78797 -105.529 -2.78797 0 0 701300. 2426.64 0.24 0.08 0.20 -1 -1 0.24 0.0399282 0.0360007 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.78 vpr 63.12 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 24.3 MiB 0.18 811 6206 1352 4542 312 63.1 MiB 0.09 0.00 4.00083 -111.764 -4.00083 4.00083 0.94 0.00104291 0.000967082 0.0396909 0.0368368 32 1917 22 6.64007e+06 213486 554710. 1919.41 3.21 0.293163 0.263255 22834 132086 -1 1739 21 1155 1706 141936 31393 3.08537 3.08537 -109.931 -3.08537 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0413898 0.0373052 110 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.90 vpr 63.23 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30448 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1140 17961 4896 10693 2372 63.2 MiB 0.21 0.00 4.56916 -143.41 -4.56916 4.56916 0.95 0.00119353 0.00110953 0.0944691 0.0878436 30 2480 22 6.64007e+06 477204 526063. 1820.29 3.40 0.420066 0.380578 22546 126617 -1 2142 19 1456 2447 150989 33118 3.78563 3.78563 -139.153 -3.78563 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0466995 0.0424424 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.13 vpr 62.71 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30440 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.20 620 10442 2502 7352 588 62.7 MiB 0.12 0.00 3.6803 -100.526 -3.6803 3.6803 0.95 0.000962711 0.000890304 0.0508735 0.0472212 26 2111 25 6.64007e+06 389298 477104. 1650.88 1.69 0.177414 0.160198 21682 110474 -1 1643 18 977 1607 104797 26031 2.85177 2.85177 -102.811 -2.85177 0 0 585099. 2024.56 0.19 0.07 0.16 -1 -1 0.19 0.0300213 0.0272299 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.77 vpr 62.78 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 691 13906 4599 7385 1922 62.8 MiB 0.18 0.00 3.53127 -120.288 -3.53127 3.53127 0.95 0.00103664 0.000963554 0.0846517 0.0786805 32 2087 26 6.64007e+06 213486 554710. 1919.41 1.14 0.221981 0.201849 22834 132086 -1 1716 21 1501 2395 163983 38176 2.90197 2.90197 -119.072 -2.90197 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0437463 0.0394885 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.67 vpr 63.17 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30488 -1 -1 38 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.1 MiB 0.17 999 13261 3446 8635 1180 63.2 MiB 0.17 0.00 3.5665 -119.865 -3.5665 3.5665 0.95 0.00122822 0.00114196 0.0725999 0.0673532 30 2083 21 6.64007e+06 477204 526063. 1820.29 1.13 0.226733 0.206174 22546 126617 -1 1827 22 1534 2359 132012 30369 2.96017 2.96017 -115.637 -2.96017 0 0 666494. 2306.21 0.23 0.11 0.18 -1 -1 0.23 0.0537886 0.0487706 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.64 vpr 62.80 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 869 9368 2508 6076 784 62.8 MiB 0.12 0.00 3.34153 -105.882 -3.34153 3.34153 0.95 0.00100268 0.000931648 0.0572706 0.0532057 32 2012 22 6.64007e+06 213486 554710. 1919.41 1.11 0.1833 0.165942 22834 132086 -1 1735 17 947 1567 114144 24834 2.92897 2.92897 -112.484 -2.92897 0 0 701300. 2426.64 0.23 0.08 0.20 -1 -1 0.23 0.0349579 0.0316024 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.22 vpr 63.16 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30620 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 879 9865 2512 6573 780 63.2 MiB 0.13 0.00 3.57229 -117.612 -3.57229 3.57229 0.95 0.00120916 0.0011236 0.0571525 0.0530558 28 2775 25 6.64007e+06 414414 500653. 1732.36 1.74 0.215827 0.195735 21970 115934 -1 2007 20 1256 2228 154021 36271 2.88697 2.88697 -113.214 -2.88697 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0484279 0.0438609 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 8.99 vpr 63.43 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30356 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.27 885 10772 2451 7753 568 63.4 MiB 0.15 0.00 3.7525 -117.99 -3.7525 3.7525 0.98 0.001305 0.00121251 0.0633396 0.0588224 26 2790 38 6.64007e+06 464646 477104. 1650.88 5.31 0.457427 0.412645 21682 110474 -1 2103 25 1903 2787 223481 60381 3.18737 3.18737 -127.42 -3.18737 0 0 585099. 2024.56 0.20 0.14 0.16 -1 -1 0.20 0.0625559 0.0566164 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.59 vpr 63.07 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.2 MiB 0.19 816 8626 2345 5890 391 63.1 MiB 0.12 0.00 3.06096 -106.925 -3.06096 3.06096 0.95 0.00106244 0.00098655 0.0543089 0.0504369 32 2030 19 6.64007e+06 226044 554710. 1919.41 1.09 0.183907 0.16667 22834 132086 -1 1785 21 1232 1968 139236 31313 2.72677 2.72677 -107.834 -2.72677 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0444559 0.0401618 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.65 vpr 62.86 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.22 920 11296 3024 7326 946 62.9 MiB 0.15 0.00 3.5031 -121.121 -3.5031 3.5031 0.95 0.00107827 0.00100105 0.0716846 0.0665825 30 2213 19 6.64007e+06 226044 526063. 1820.29 1.10 0.204569 0.185802 22546 126617 -1 1909 18 1150 1903 117299 26636 2.93097 2.93097 -116.249 -2.93097 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.039649 0.0358835 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.98 vpr 63.43 MiB 0.05 7252 -1 -1 1 0.04 -1 -1 30704 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.6 MiB 0.15 1027 12240 2965 8371 904 63.4 MiB 0.16 0.00 4.25676 -144.495 -4.25676 4.25676 0.95 0.00127332 0.00118184 0.068764 0.0638159 32 2506 30 6.64007e+06 477204 554710. 1919.41 1.33 0.246852 0.224136 22834 132086 -1 2201 24 1972 2976 212021 49064 3.97103 3.97103 -145.544 -3.97103 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0679254 0.0611404 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.73 vpr 63.46 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30464 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1020 16079 4107 10319 1653 63.5 MiB 0.20 0.00 3.72052 -109.725 -3.72052 3.72052 0.95 0.00117242 0.00108033 0.0901244 0.083555 32 2233 21 6.64007e+06 426972 554710. 1919.41 1.10 0.236344 0.215093 22834 132086 -1 1995 20 1159 1872 114735 28009 2.89377 2.89377 -109.298 -2.89377 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0466119 0.0422216 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.02 vpr 63.68 MiB 0.04 7316 -1 -1 1 0.03 -1 -1 30780 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.7 MiB 0.26 937 9020 1835 6701 484 63.7 MiB 0.13 0.00 4.29776 -145.038 -4.29776 4.29776 0.96 0.00143806 0.00133707 0.0571534 0.0531261 32 2656 21 6.64007e+06 489762 554710. 1919.41 1.26 0.235032 0.213121 22834 132086 -1 2222 20 1820 2780 182410 44504 3.77583 3.77583 -145.92 -3.77583 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0557807 0.0503953 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.45 vpr 62.80 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.8 MiB 0.10 804 11948 3967 6404 1577 62.8 MiB 0.13 0.00 3.08296 -103.529 -3.08296 3.08296 0.92 0.000903922 0.000840721 0.0653975 0.0607871 32 1842 19 6.64007e+06 213486 554710. 1919.41 1.05 0.176363 0.16018 22834 132086 -1 1616 16 845 1363 101286 23075 2.80117 2.80117 -105.322 -2.80117 0 0 701300. 2426.64 0.22 0.07 0.19 -1 -1 0.22 0.0302675 0.0273737 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.49 vpr 63.46 MiB 0.04 7424 -1 -1 1 0.03 -1 -1 30376 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.6 MiB 0.16 998 18111 4956 10747 2408 63.5 MiB 0.22 0.00 4.26296 -139.632 -4.26296 4.26296 0.95 0.00128129 0.00118906 0.104898 0.0972885 26 2775 40 6.64007e+06 439530 477104. 1650.88 1.76 0.307392 0.279225 21682 110474 -1 2281 21 1689 2417 200330 43693 3.84003 3.84003 -141.489 -3.84003 0 0 585099. 2024.56 0.25 0.12 0.16 -1 -1 0.25 0.053871 0.0487929 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.81 vpr 63.21 MiB 0.06 7256 -1 -1 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.2 MiB 0.17 0.00 3.54047 -121.881 -3.54047 3.54047 0.98 0.00115563 0.00107295 0.0917602 0.0852077 28 1976 21 6.64007e+06 213486 500653. 1732.36 1.11 0.23655 0.215157 21970 115934 -1 1687 19 1255 1828 131259 30469 2.96597 2.96597 -120.713 -2.96597 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0439322 0.0397131 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 8.01 vpr 63.73 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.9 MiB 0.17 1060 9736 1961 7168 607 63.7 MiB 0.13 0.00 3.51212 -122.885 -3.51212 3.51212 0.97 0.00133757 0.00124762 0.0579944 0.0540418 26 2898 22 6.64007e+06 464646 477104. 1650.88 4.39 0.435024 0.393747 21682 110474 -1 2295 22 1432 2025 146212 32597 3.11157 3.11157 -122.927 -3.11157 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0551065 0.0499639 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.85 vpr 63.82 MiB 0.05 7340 -1 -1 1 0.03 -1 -1 30952 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 25.1 MiB 0.24 1244 16489 4012 10933 1544 63.8 MiB 0.23 0.00 4.96651 -168.366 -4.96651 4.96651 0.99 0.0015365 0.00142947 0.100456 0.0932931 26 3688 31 6.64007e+06 565110 477104. 1650.88 2.98 0.323498 0.294328 21682 110474 -1 2834 22 2604 4209 286529 63741 4.75769 4.75769 -176.659 -4.75769 0 0 585099. 2024.56 0.19 0.16 0.16 -1 -1 0.19 0.0666607 0.0605046 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.34 vpr 62.61 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.8 MiB 0.12 483 10509 2545 7262 702 62.6 MiB 0.10 0.00 2.73878 -81.5531 -2.73878 2.73878 0.95 0.000807729 0.000748647 0.0541413 0.0502189 28 1389 26 6.64007e+06 188370 500653. 1732.36 1.03 0.160102 0.144357 21970 115934 -1 1124 16 547 701 53976 13610 2.08151 2.08151 -78.095 -2.08151 0 0 612192. 2118.31 0.21 0.06 0.18 -1 -1 0.21 0.0267025 0.0239535 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.48 vpr 62.95 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30360 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 24.1 MiB 0.09 791 10388 3354 5416 1618 62.9 MiB 0.12 0.00 3.6895 -113.454 -3.6895 3.6895 0.95 0.000981579 0.000911753 0.0630907 0.0586494 32 1673 19 6.64007e+06 213486 554710. 1919.41 1.07 0.182877 0.165988 22834 132086 -1 1521 18 940 1423 114250 24927 2.89197 2.89197 -108.545 -2.89197 0 0 701300. 2426.64 0.23 0.08 0.20 -1 -1 0.23 0.0363758 0.0328872 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.99 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.1 MiB 0.13 798 13966 5020 6560 2386 63.0 MiB 0.18 0.00 3.4859 -119.604 -3.4859 3.4859 0.95 0.00103495 0.000960638 0.0839948 0.0780443 32 2349 21 6.64007e+06 226044 554710. 1919.41 1.19 0.213524 0.194244 22834 132086 -1 1898 22 1478 2643 190894 43446 3.14817 3.14817 -121.261 -3.14817 0 0 701300. 2426.64 0.22 0.13 0.20 -1 -1 0.22 0.0504454 0.0455731 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.43 vpr 62.73 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30512 -1 -1 34 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.06 678 12127 3168 7672 1287 62.7 MiB 0.12 0.00 3.4089 -91.215 -3.4089 3.4089 0.95 0.00083753 0.000778776 0.0519378 0.0482735 26 1705 23 6.64007e+06 426972 477104. 1650.88 1.21 0.158706 0.143364 21682 110474 -1 1513 20 1059 1640 113036 25947 2.84177 2.84177 -93.3739 -2.84177 0 0 585099. 2024.56 0.19 0.08 0.16 -1 -1 0.19 0.0322727 0.0290189 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.87 vpr 63.62 MiB 0.03 7200 -1 -1 1 0.03 -1 -1 30532 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1064 14828 5337 7470 2021 63.6 MiB 0.22 0.00 4.34676 -140.278 -4.34676 4.34676 0.95 0.00134785 0.00125354 0.10926 0.101628 32 2469 22 6.64007e+06 276276 554710. 1919.41 1.19 0.283381 0.258891 22834 132086 -1 2117 22 1582 2852 176721 39684 3.63843 3.63843 -134.688 -3.63843 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0572721 0.0519132 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 6.58 vpr 63.51 MiB 0.03 7364 -1 -1 1 0.03 -1 -1 30376 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.6 MiB 0.18 994 11288 2808 7770 710 63.5 MiB 0.16 0.00 3.54427 -117.284 -3.54427 3.54427 0.95 0.00129868 0.00120693 0.066305 0.061551 26 2715 23 6.64007e+06 489762 477104. 1650.88 3.06 0.391138 0.353251 21682 110474 -1 2275 23 1961 3011 199968 47387 3.04837 3.04837 -122.417 -3.04837 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0582118 0.0527203 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.00 vpr 63.34 MiB 0.04 7252 -1 -1 1 0.03 -1 -1 30908 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.4 MiB 0.14 984 7523 1506 5708 309 63.3 MiB 0.12 0.00 3.92206 -133.487 -3.92206 3.92206 0.95 0.00133623 0.00124103 0.0485169 0.0450148 32 3191 25 6.65987e+06 431052 554710. 1919.41 1.40 0.226567 0.205235 22834 132086 -1 2415 24 2140 3445 278484 65165 3.64431 3.64431 -141.044 -3.64431 0 0 701300. 2426.64 0.22 0.15 0.19 -1 -1 0.22 0.0626202 0.0567167 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.92 vpr 63.24 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30668 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1021 12323 3933 6472 1918 63.2 MiB 0.18 0.00 4.34307 -130.434 -4.34307 4.34307 0.95 0.00125218 0.00116364 0.0892138 0.0828975 32 2554 23 6.65987e+06 266238 554710. 1919.41 1.21 0.249368 0.226998 22834 132086 -1 2215 22 1826 3029 246688 54655 3.64371 3.64371 -131.32 -3.64371 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0547122 0.0495909 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.24 vpr 63.20 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30420 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1046 17198 4925 10203 2070 63.2 MiB 0.20 0.00 3.50085 -120.205 -3.50085 3.50085 0.95 0.00121684 0.00113033 0.095949 0.0890938 28 2593 48 6.65987e+06 431052 500653. 1732.36 1.62 0.301996 0.274334 21970 115934 -1 2248 24 1601 2653 202682 45446 3.15565 3.15565 -120.273 -3.15565 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0568227 0.0514309 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 7.02 vpr 63.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30416 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.3 MiB 0.14 792 11963 2924 7039 2000 63.0 MiB 0.14 0.00 4.3057 -123.39 -4.3057 4.3057 0.95 0.00112318 0.00104428 0.0768166 0.0715544 32 2771 44 6.65987e+06 278916 554710. 1919.41 2.53 0.334166 0.302536 22834 132086 -1 1992 120 7130 13721 2198801 1156837 3.86511 3.86511 -131.346 -3.86511 0 0 701300. 2426.64 0.22 1.02 0.19 -1 -1 0.22 0.219636 0.19713 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 5.03 vpr 63.07 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1026 15456 4961 8586 1909 63.1 MiB 0.22 0.00 4.14936 -143.085 -4.14936 4.14936 0.96 0.00122829 0.00114276 0.107431 0.0999609 32 2859 24 6.65987e+06 253560 554710. 1919.41 1.30 0.268377 0.245118 22834 132086 -1 2385 25 2273 4133 304272 70766 3.95683 3.95683 -148.431 -3.95683 0 0 701300. 2426.64 0.22 0.16 0.19 -1 -1 0.22 0.0599114 0.0544174 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.91 vpr 63.40 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30460 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1029 9501 1978 7135 388 63.4 MiB 0.13 0.00 3.43623 -117.882 -3.43623 3.43623 1.01 0.00128686 0.00119799 0.0542443 0.0503115 32 2536 20 6.65987e+06 469086 554710. 1919.41 1.20 0.21414 0.194479 22834 132086 -1 2170 19 1427 2284 165217 39054 2.81471 2.81471 -115.499 -2.81471 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0493786 0.044861 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.60 vpr 62.54 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30732 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.7 MiB 0.13 580 13026 4344 6329 2353 62.5 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.01 0.000897465 0.000833751 0.0791141 0.0734675 30 1411 19 6.65987e+06 240882 526063. 1820.29 1.04 0.190004 0.172699 22546 126617 -1 1171 19 804 1373 82491 19526 2.70051 2.70051 -92.1985 -2.70051 0 0 666494. 2306.21 0.22 0.07 0.18 -1 -1 0.22 0.0352135 0.0317928 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 7.23 vpr 63.07 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1016 11265 2888 7039 1338 63.1 MiB 0.14 0.00 3.36201 -108.145 -3.36201 3.36201 0.96 0.00109422 0.00101925 0.05967 0.0555334 26 2634 28 6.65987e+06 418374 477104. 1650.88 3.42 0.341904 0.308931 21682 110474 -1 2328 50 2093 3828 686103 352049 3.00031 3.00031 -110.877 -3.00031 0 0 585099. 2024.56 0.19 0.35 0.16 -1 -1 0.19 0.0978431 0.0882617 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 6.61 vpr 62.78 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30188 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 338 292 1 147 79 17 17 289 -1 unnamed_device 23.9 MiB 0.24 818 11571 4275 5789 1507 62.8 MiB 0.15 0.00 3.08801 -101.656 -3.08801 3.08801 0.95 0.00105136 0.000975214 0.0749494 0.0695549 28 1929 21 6.65987e+06 202848 500653. 1732.36 3.02 0.367399 0.330697 21970 115934 -1 1779 17 917 1490 111111 25142 2.62745 2.62745 -104.072 -2.62745 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0372328 0.0336899 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 6.74 vpr 62.86 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 642 11432 4032 4649 2751 62.9 MiB 0.13 0.00 3.56921 -118.924 -3.56921 3.56921 0.95 0.00103465 0.00096024 0.071748 0.0666414 36 2046 43 6.65987e+06 202848 612192. 2118.31 3.14 0.328761 0.2967 23410 145293 -1 1422 21 1272 2006 138197 42465 2.85597 2.85597 -110.179 -2.85597 0 0 782063. 2706.10 0.24 0.10 0.21 -1 -1 0.24 0.043662 0.0394965 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.58 vpr 62.70 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30252 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.8 MiB 0.20 688 7684 1925 5205 554 62.7 MiB 0.11 0.00 3.53806 -112.993 -3.53806 3.53806 0.95 0.00103407 0.000960799 0.0498217 0.0463109 32 1644 20 6.65987e+06 215526 554710. 1919.41 1.06 0.17743 0.160839 22834 132086 -1 1456 19 1087 1483 99523 23708 2.89677 2.89677 -110.282 -2.89677 0 0 701300. 2426.64 0.22 0.08 0.20 -1 -1 0.22 0.0400936 0.0362391 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.85 vpr 62.94 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30496 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.27 841 11223 2602 8034 587 62.9 MiB 0.13 0.00 3.27957 -108.894 -3.27957 3.27957 0.95 0.00105754 0.000980938 0.0593229 0.0550601 30 2020 22 6.65987e+06 367662 526063. 1820.29 1.21 0.200583 0.182082 22546 126617 -1 1668 22 1025 1665 104569 24167 2.50305 2.50305 -103.61 -2.50305 0 0 666494. 2306.21 0.24 0.09 0.18 -1 -1 0.24 0.0453713 0.0409494 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.07 vpr 63.10 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30248 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.2 MiB 0.34 1002 18711 5900 10256 2555 63.1 MiB 0.24 0.00 3.50686 -122.446 -3.50686 3.50686 0.95 0.00123194 0.00114388 0.108961 0.101125 32 2401 19 6.65987e+06 405696 554710. 1919.41 1.22 0.265028 0.242267 22834 132086 -1 2038 22 1742 2945 205847 47930 2.96397 2.96397 -116.671 -2.96397 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0532521 0.0481536 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.96 vpr 63.38 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.4 MiB 0.20 896 8423 1626 6163 634 63.4 MiB 0.12 0.00 4.07724 -137.456 -4.07724 4.07724 0.95 0.00128464 0.00119396 0.051057 0.0474499 32 2832 22 6.65987e+06 431052 554710. 1919.41 1.30 0.209013 0.189806 22834 132086 -1 2195 22 2106 3327 247497 60499 3.82351 3.82351 -144.786 -3.82351 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0487774 0.044186 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.46 vpr 62.68 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.23 686 7177 1709 4538 930 62.7 MiB 0.09 0.00 3.15358 -93.6229 -3.15358 3.15358 0.95 0.000924397 0.000859438 0.0414969 0.0386223 28 1745 20 6.65987e+06 228204 500653. 1732.36 1.02 0.153701 0.138977 21970 115934 -1 1554 20 1081 1777 122299 29001 2.55425 2.55425 -95.2583 -2.55425 0 0 612192. 2118.31 0.20 0.08 0.17 -1 -1 0.20 0.0368942 0.0332786 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.99 vpr 63.20 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1074 13992 4161 7846 1985 63.2 MiB 0.20 0.00 3.5141 -125.301 -3.5141 3.5141 0.95 0.00127196 0.00118295 0.100561 0.0934808 32 2555 18 6.65987e+06 253560 554710. 1919.41 1.20 0.254961 0.232684 22834 132086 -1 2386 22 1791 3119 270322 59828 3.12937 3.12937 -126.952 -3.12937 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0556985 0.0505399 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.52 vpr 63.04 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.33 934 18323 6450 8556 3317 63.0 MiB 0.20 0.00 3.6343 -123.732 -3.6343 3.6343 0.96 0.00122583 0.00113904 0.102409 0.0950916 30 2378 28 6.65987e+06 431052 526063. 1820.29 1.79 0.271367 0.247181 22546 126617 -1 1916 19 1275 1888 125113 28979 2.76277 2.76277 -114.988 -2.76277 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0473705 0.0430179 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.77 vpr 62.93 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.25 832 15430 4777 8379 2274 62.9 MiB 0.18 0.00 2.83964 -101.659 -2.83964 2.83964 0.96 0.00107861 0.00100121 0.0804237 0.0746791 30 1996 22 6.65987e+06 380340 526063. 1820.29 1.10 0.217976 0.198088 22546 126617 -1 1635 14 802 1184 72625 16499 2.18971 2.18971 -96.9741 -2.18971 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0344348 0.0313925 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.31 vpr 62.08 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30160 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.5 MiB 0.10 661 10835 3152 6204 1479 62.1 MiB 0.11 0.00 2.60038 -85.2282 -2.60038 2.60038 0.95 0.000767518 0.000711995 0.0530038 0.0491709 28 1493 20 6.65987e+06 190170 500653. 1732.36 0.98 0.147312 0.132965 21970 115934 -1 1296 18 585 876 63146 14271 1.59965 1.59965 -75.2323 -1.59965 0 0 612192. 2118.31 0.20 0.07 0.17 -1 -1 0.20 0.0297629 0.0268003 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.69 vpr 62.64 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30372 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.7 MiB 0.13 862 13768 4646 7227 1895 62.6 MiB 0.20 0.00 3.94338 -122.441 -3.94338 3.94338 0.98 0.00107494 0.000999538 0.101917 0.0946929 32 2009 20 6.65987e+06 202848 554710. 1919.41 1.11 0.235093 0.214286 22834 132086 -1 1704 18 946 1411 113736 25061 2.91545 2.91545 -114.323 -2.91545 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.0389795 0.0352853 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 7.03 vpr 63.13 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30208 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1067 12248 3339 7850 1059 63.1 MiB 0.16 0.00 4.06436 -136.288 -4.06436 4.06436 0.95 0.00119937 0.00111496 0.0686107 0.0637961 30 2353 19 6.65987e+06 431052 526063. 1820.29 3.42 0.446706 0.403629 22546 126617 -1 2038 20 1356 2011 119922 27360 3.22177 3.22177 -126.056 -3.22177 0 0 666494. 2306.21 0.22 0.10 0.18 -1 -1 0.22 0.0486037 0.0441515 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.01 vpr 63.20 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30652 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1107 12164 3260 7320 1584 63.2 MiB 0.17 0.00 3.45103 -121.866 -3.45103 3.45103 0.95 0.00139536 0.00128644 0.076453 0.0707803 32 2878 20 6.65987e+06 456408 554710. 1919.41 1.24 0.248395 0.22515 22834 132086 -1 2381 21 1553 2320 174783 40214 3.24785 3.24785 -121.916 -3.24785 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0575041 0.0520059 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.31 vpr 62.09 MiB 0.02 6948 -1 -1 1 0.02 -1 -1 30592 -1 -1 17 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.3 MiB 0.17 410 10345 3142 6004 1199 62.1 MiB 0.08 0.00 2.61938 -68.655 -2.61938 2.61938 0.96 0.000668998 0.000619413 0.0447796 0.0415019 30 1071 20 6.65987e+06 215526 526063. 1820.29 0.95 0.12721 0.114873 22546 126617 -1 892 17 477 715 39145 10340 1.85405 1.85405 -64.8879 -1.85405 0 0 666494. 2306.21 0.23 0.04 0.14 -1 -1 0.23 0.0192737 0.0173047 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 7.01 vpr 63.07 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30080 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1115 13443 3576 8165 1702 63.1 MiB 0.18 0.00 4.2335 -135.193 -4.2335 4.2335 0.95 0.00112953 0.00105072 0.0861234 0.0801954 26 2832 39 6.65987e+06 253560 477104. 1650.88 3.40 0.403494 0.365288 21682 110474 -1 2458 22 1694 2858 259865 57234 4.07217 4.07217 -146.075 -4.07217 0 0 585099. 2024.56 0.19 0.13 0.17 -1 -1 0.19 0.0500664 0.045417 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 6.30 vpr 62.05 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30508 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.5 MiB 0.10 594 7901 1809 5857 235 62.1 MiB 0.08 0.00 2.22607 -81.2607 -2.22607 2.22607 0.95 0.000707707 0.000655615 0.0358856 0.0332398 32 1464 18 6.65987e+06 164814 554710. 1919.41 2.96 0.241233 0.21569 22834 132086 -1 1276 19 646 866 66033 15918 1.93025 1.93025 -79.3609 -1.93025 0 0 701300. 2426.64 0.22 0.06 0.19 -1 -1 0.22 0.0273511 0.0246455 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.90 vpr 63.02 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30556 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 376 288 1 195 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1065 18079 5979 9630 2470 63.0 MiB 0.23 0.00 4.06247 -139.199 -4.06247 4.06247 0.95 0.000842528 0.000778748 0.101093 0.0939629 32 2590 19 6.65987e+06 418374 554710. 1919.41 1.21 0.251848 0.230076 22834 132086 -1 2217 22 1903 2899 225050 50155 3.64237 3.64237 -136.764 -3.64237 0 0 701300. 2426.64 0.25 0.15 0.20 -1 -1 0.25 0.0567482 0.0516135 152 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.67 vpr 63.11 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30200 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1134 16059 4004 10217 1838 63.1 MiB 0.21 0.00 3.38184 -119.391 -3.38184 3.38184 0.95 0.0011436 0.00106334 0.0840983 0.0781929 30 2478 22 6.65987e+06 443730 526063. 1820.29 1.11 0.231009 0.21052 22546 126617 -1 2138 23 1418 2253 152856 33329 2.67931 2.67931 -115.639 -2.67931 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0521574 0.0472581 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.81 vpr 63.43 MiB 0.04 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1118 17199 4898 10401 1900 63.4 MiB 0.22 0.00 3.91784 -137.067 -3.91784 3.91784 0.95 0.00127602 0.00118634 0.100075 0.0929436 28 2921 24 6.65987e+06 443730 500653. 1732.36 2.25 0.271173 0.247147 21970 115934 -1 2460 23 1850 3234 263638 58013 3.79765 3.79765 -141.968 -3.79765 0 0 612192. 2118.31 0.21 0.14 0.17 -1 -1 0.21 0.0577852 0.0524161 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.51 vpr 62.82 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.9 MiB 0.16 736 8191 2107 5347 737 62.8 MiB 0.11 0.00 2.8895 -100.047 -2.8895 2.8895 0.94 0.000981018 0.000911098 0.0503143 0.0467581 28 1969 21 6.65987e+06 190170 500653. 1732.36 1.11 0.173069 0.156621 21970 115934 -1 1804 19 1076 1727 139465 31479 2.73291 2.73291 -103.62 -2.73291 0 0 612192. 2118.31 0.20 0.09 0.17 -1 -1 0.20 0.0376908 0.0339963 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.58 vpr 62.87 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.13 832 12156 3666 7026 1464 62.9 MiB 0.14 0.00 3.4951 -115.55 -3.4951 3.4951 1.00 0.000981374 0.000912309 0.0710199 0.0659909 32 1942 22 6.65987e+06 240882 554710. 1919.41 1.10 0.19611 0.178129 22834 132086 -1 1715 20 1239 1808 138514 31534 2.95717 2.95717 -113.278 -2.95717 0 0 701300. 2426.64 0.25 0.05 0.19 -1 -1 0.25 0.0178324 0.0160692 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 6.59 vpr 62.73 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 0.13 593 11776 2929 8189 658 62.7 MiB 0.14 0.00 3.4309 -100.687 -3.4309 3.4309 0.97 0.000928045 0.000862886 0.0665923 0.0619322 30 1720 21 6.65987e+06 253560 526063. 1820.29 3.44 0.316316 0.284735 22546 126617 -1 1406 23 1009 1775 109227 27586 2.83191 2.83191 -101.024 -2.83191 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0437855 0.0395139 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.87 vpr 62.69 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.18 686 12008 2561 8162 1285 62.7 MiB 0.16 0.00 3.4859 -118.026 -3.4859 3.4859 0.95 0.000978969 0.000910219 0.0852187 0.079236 32 2327 29 6.65987e+06 228204 554710. 1919.41 1.25 0.222149 0.202022 22834 132086 -1 1731 24 1546 2385 171285 41928 2.97077 2.97077 -121.674 -2.97077 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0462301 0.0417735 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 6.50 vpr 62.97 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 24.0 MiB 0.16 735 8614 2125 5723 766 63.0 MiB 0.11 0.00 3.29178 -108.454 -3.29178 3.29178 0.95 0.000998778 0.000927907 0.0431064 0.0400193 28 2056 21 6.65987e+06 393018 500653. 1732.36 3.06 0.304253 0.273524 21970 115934 -1 1880 21 1280 2159 156359 36635 2.68845 2.68845 -107.684 -2.68845 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0418939 0.0378073 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.66 vpr 62.71 MiB 0.04 7160 -1 -1 1 0.04 -1 -1 30248 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.24 717 8047 1725 5786 536 62.7 MiB 0.10 0.00 2.76744 -86.2128 -2.76744 2.76744 0.95 0.00100286 0.00093103 0.0418262 0.0387378 32 1874 20 6.65987e+06 380340 554710. 1919.41 1.10 0.165404 0.149368 22834 132086 -1 1622 21 1088 1804 135921 31988 2.34691 2.34691 -88.1946 -2.34691 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0419085 0.0378079 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 8.42 vpr 63.09 MiB 0.04 7332 -1 -1 1 0.04 -1 -1 30424 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1246 13117 3185 8526 1406 63.1 MiB 0.20 0.00 4.16036 -141.523 -4.16036 4.16036 0.95 0.00140348 0.00130821 0.0802594 0.0747763 26 4383 38 6.65987e+06 494442 477104. 1650.88 4.57 0.298361 0.271455 21682 110474 -1 3091 21 2109 3703 385240 81757 4.05202 4.05202 -155.828 -4.05202 0 0 585099. 2024.56 0.19 0.17 0.16 -1 -1 0.19 0.0590195 0.0536061 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.85 vpr 63.27 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30484 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1041 9447 2232 6542 673 63.3 MiB 0.14 0.00 3.5061 -122.514 -3.5061 3.5061 0.95 0.00129624 0.00120444 0.0567228 0.0526073 32 2414 21 6.65987e+06 443730 554710. 1919.41 1.18 0.208899 0.189645 22834 132086 -1 2112 19 1744 2627 173897 40828 3.01337 3.01337 -119.464 -3.01337 0 0 701300. 2426.64 0.23 0.11 0.20 -1 -1 0.23 0.0499507 0.0454567 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.63 vpr 62.90 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 24.0 MiB 0.29 709 5599 957 4403 239 62.9 MiB 0.08 0.00 3.18838 -103.883 -3.18838 3.18838 0.95 0.00109039 0.00101262 0.0327229 0.0303681 26 2293 44 6.65987e+06 354984 477104. 1650.88 2.10 0.210791 0.189662 21682 110474 -1 1925 20 1209 1926 139385 34041 3.12605 3.12605 -117.418 -3.12605 0 0 585099. 2024.56 0.19 0.10 0.16 -1 -1 0.19 0.0432505 0.0390143 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.00 vpr 63.14 MiB 0.04 7408 -1 -1 1 0.03 -1 -1 30388 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.25 950 14541 4604 7502 2435 63.1 MiB 0.21 0.00 3.4921 -115.341 -3.4921 3.4921 0.95 0.0012105 0.0011204 0.101397 0.0942564 32 2537 24 6.65987e+06 266238 554710. 1919.41 1.21 0.263036 0.239889 22834 132086 -1 2068 22 1694 2865 202556 47137 2.91877 2.91877 -112.32 -2.91877 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0556525 0.050523 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.86 vpr 63.22 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 30480 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1075 7953 1851 5455 647 63.2 MiB 0.13 0.00 4.84238 -140.996 -4.84238 4.84238 0.95 0.0013868 0.00129046 0.063257 0.0587881 30 2514 21 6.65987e+06 266238 526063. 1820.29 1.19 0.234812 0.212945 22546 126617 -1 2032 18 1004 1712 93766 22265 3.60671 3.60671 -132.535 -3.60671 0 0 666494. 2306.21 0.22 0.09 0.18 -1 -1 0.22 0.0504846 0.0457539 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 7.07 vpr 63.29 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.4 MiB 0.20 947 10332 2670 7099 563 63.3 MiB 0.16 0.00 4.78027 -132.754 -4.78027 4.78027 0.95 0.0012783 0.00118758 0.0757301 0.0704493 32 2473 22 6.65987e+06 266238 554710. 1919.41 3.39 0.417727 0.377617 22834 132086 -1 2124 22 1526 2505 187171 43178 3.87937 3.87937 -133.212 -3.87937 0 0 701300. 2426.64 0.22 0.12 0.19 -1 -1 0.22 0.0553295 0.0501556 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.27 vpr 63.16 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30348 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 995 11265 2756 7734 775 63.2 MiB 0.16 0.00 3.36361 -112.108 -3.36361 3.36361 0.96 0.00123686 0.00114894 0.0671594 0.062404 32 2554 24 6.65987e+06 418374 554710. 1919.41 3.73 0.464332 0.418887 22834 132086 -1 2262 20 1701 2860 202013 47915 3.15451 3.15451 -111.006 -3.15451 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0505758 0.0459703 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.91 vpr 63.22 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30928 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1091 9903 2241 6952 710 63.2 MiB 0.14 0.00 3.91784 -134.792 -3.91784 3.91784 0.95 0.00127545 0.00118706 0.0589543 0.0548208 30 2537 27 6.65987e+06 443730 526063. 1820.29 1.27 0.228951 0.207921 22546 126617 -1 2201 22 1649 2612 165739 37609 3.29771 3.29771 -131.299 -3.29771 0 0 666494. 2306.21 0.22 0.12 0.18 -1 -1 0.22 0.0546815 0.0496347 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 7.99 vpr 63.52 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.26 1184 18648 4691 11584 2373 63.5 MiB 0.29 0.00 4.06547 -137.623 -4.06547 4.06547 0.95 0.0015312 0.00142401 0.121393 0.112889 36 2748 21 6.65987e+06 507120 612192. 2118.31 3.99 0.617725 0.558798 23410 145293 -1 2346 20 1800 2897 191516 43970 3.60757 3.60757 -134.176 -3.60757 0 0 782063. 2706.10 0.24 0.13 0.21 -1 -1 0.24 0.0620665 0.0564377 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.77 vpr 62.80 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30636 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.21 685 11806 2914 7153 1739 62.8 MiB 0.15 0.00 3.55518 -111.493 -3.55518 3.55518 0.98 0.00101409 0.000943164 0.0709779 0.0660446 32 2044 23 6.65987e+06 228204 554710. 1919.41 1.14 0.200319 0.18201 22834 132086 -1 1754 19 1367 2159 159394 38155 2.95191 2.95191 -111.826 -2.95191 0 0 701300. 2426.64 0.23 0.10 0.18 -1 -1 0.23 0.0390285 0.0353315 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 11.34 vpr 63.21 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30492 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.3 MiB 0.17 975 9675 2183 7040 452 63.2 MiB 0.14 0.00 4.0281 -131.106 -4.0281 4.0281 0.93 0.00125016 0.00116152 0.0567008 0.0526807 26 3282 39 6.65987e+06 456408 477104. 1650.88 7.77 0.425716 0.384176 21682 110474 -1 2585 23 2029 3273 279490 64487 4.03197 4.03197 -143.979 -4.03197 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0571672 0.0515788 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.02 vpr 62.75 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30580 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1040 11641 3109 7665 867 62.8 MiB 0.16 0.00 3.62624 -117.445 -3.62624 3.62624 0.96 0.00125651 0.00116882 0.0695733 0.0646154 28 2853 21 6.65987e+06 418374 500653. 1732.36 1.35 0.227562 0.206887 21970 115934 -1 2461 21 1631 2882 213506 48851 2.69931 2.69931 -113.273 -2.69931 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0526883 0.0477948 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 8.12 vpr 63.17 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30472 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.19 853 8685 1897 5601 1187 63.2 MiB 0.13 0.00 4.14936 -138.467 -4.14936 4.14936 0.96 0.00116451 0.0010834 0.0634965 0.0591248 34 3057 37 6.65987e+06 253560 585099. 2024.56 4.39 0.434174 0.392333 23122 138558 -1 2163 24 1866 3348 230951 57960 4.18623 4.18623 -151.672 -4.18623 0 0 742403. 2568.87 0.23 0.16 0.20 -1 -1 0.23 0.0621329 0.0561043 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.10 vpr 63.09 MiB 0.03 7324 -1 -1 1 0.03 -1 -1 30468 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1097 11798 3144 7589 1065 63.1 MiB 0.17 0.00 3.29555 -116.715 -3.29555 3.29555 1.01 0.000979997 0.000906636 0.070345 0.0653022 32 2624 24 6.65987e+06 431052 554710. 1919.41 1.26 0.246903 0.224597 22834 132086 -1 2234 22 1558 2197 160072 38251 2.92765 2.92765 -117.766 -2.92765 0 0 701300. 2426.64 0.23 0.11 0.19 -1 -1 0.23 0.0559119 0.0506685 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.99 vpr 63.43 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1042 7623 1446 5778 399 63.4 MiB 0.12 0.00 3.5841 -121.365 -3.5841 3.5841 0.95 0.00127097 0.00118186 0.0460351 0.0428305 32 2763 22 6.65987e+06 443730 554710. 1919.41 1.23 0.20528 0.186325 22834 132086 -1 2355 25 1672 2661 181958 43693 3.18117 3.18117 -123.448 -3.18117 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0608202 0.05513 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.93 vpr 63.36 MiB 0.02 7328 -1 -1 1 0.05 -1 -1 30504 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.25 1118 19136 5296 11671 2169 63.4 MiB 0.25 0.00 3.42984 -118.83 -3.42984 3.42984 0.95 0.00128397 0.00119353 0.107521 0.0997725 32 2576 21 6.65987e+06 469086 554710. 1919.41 1.19 0.269791 0.245963 22834 132086 -1 2260 24 1778 2855 196032 46978 2.78351 2.78351 -113.395 -2.78351 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0601423 0.0545003 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.88 vpr 62.86 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 30552 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1050 17883 5724 9105 3054 62.9 MiB 0.22 0.00 4.02327 -139.218 -4.02327 4.02327 0.95 0.00121667 0.00113146 0.0984354 0.0913808 32 2649 24 6.65987e+06 443730 554710. 1919.41 1.22 0.257609 0.234803 22834 132086 -1 2244 23 2082 3456 262013 58525 3.52217 3.52217 -136.099 -3.52217 0 0 701300. 2426.64 0.23 0.14 0.19 -1 -1 0.23 0.0553601 0.0502072 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.72 vpr 63.39 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30664 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1025 18901 5265 11118 2518 63.4 MiB 0.23 0.00 3.95704 -138.682 -3.95704 3.95704 0.96 0.00128048 0.00119025 0.106144 0.0985508 32 2602 24 6.65987e+06 469086 554710. 1919.41 1.23 0.27223 0.248221 22834 132086 -1 2225 20 1855 2813 208628 47207 3.53811 3.53811 -140.043 -3.53811 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0518141 0.0471018 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.08 vpr 63.36 MiB 0.05 7432 -1 -1 1 0.04 -1 -1 30428 -1 -1 34 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1075 12529 3319 7633 1577 63.4 MiB 0.17 0.00 3.98298 -125.763 -3.98298 3.98298 0.95 0.00136097 0.00126374 0.0803788 0.0746806 28 2969 24 6.65987e+06 431052 500653. 1732.36 1.25 0.258506 0.234857 21970 115934 -1 2508 23 1678 2821 210617 47704 3.27465 3.27465 -125.599 -3.27465 0 0 612192. 2118.31 0.21 0.13 0.17 -1 -1 0.21 0.0603696 0.0545597 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.91 vpr 63.27 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1088 15822 4733 9518 1571 63.3 MiB 0.19 0.00 4.01118 -127.976 -4.01118 4.01118 0.91 0.000491382 0.000451957 0.0938502 0.0871245 32 2569 23 6.65987e+06 253560 554710. 1919.41 1.16 0.265308 0.241429 22834 132086 -1 2334 23 1947 3557 280084 61869 3.35685 3.35685 -128.969 -3.35685 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0608011 0.0551163 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 8.15 vpr 62.73 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30664 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.8 MiB 0.16 771 8827 2156 6189 482 62.7 MiB 0.12 0.00 3.35364 -111.63 -3.35364 3.35364 0.97 0.00103653 0.000953258 0.0455311 0.0422363 28 2137 22 6.65987e+06 380340 500653. 1732.36 4.56 0.302204 0.271598 21970 115934 -1 1997 22 1424 2203 166100 38997 2.90265 2.90265 -116.7 -2.90265 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0442693 0.0399768 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.76 vpr 62.80 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30548 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.8 MiB 0.25 775 7914 1954 5542 418 62.8 MiB 0.12 0.00 3.38184 -115.147 -3.38184 3.38184 0.95 0.00114524 0.00105879 0.0538628 0.0500012 32 2138 20 6.65987e+06 228204 554710. 1919.41 1.13 0.194582 0.17617 22834 132086 -1 1854 18 1278 2018 153184 33985 2.95691 2.95691 -116.144 -2.95691 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0419794 0.0379959 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.18 vpr 63.29 MiB 0.03 7376 -1 -1 1 0.03 -1 -1 30920 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1358 14500 3674 9480 1346 63.3 MiB 0.21 0.00 4.6627 -160.408 -4.6627 4.6627 0.95 0.00148948 0.00138746 0.0924313 0.0859809 32 3498 25 6.65987e+06 507120 554710. 1919.41 1.40 0.290007 0.264119 22834 132086 -1 2900 23 2635 4208 298113 69822 4.50217 4.50217 -165.284 -4.50217 0 0 701300. 2426.64 0.23 0.17 0.19 -1 -1 0.23 0.0674296 0.0612662 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.03 vpr 63.16 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30480 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.3 MiB 0.27 954 14567 4735 7432 2400 63.2 MiB 0.19 0.00 3.51422 -121.562 -3.51422 3.51422 0.95 0.0012093 0.00112439 0.0844072 0.0784709 32 2527 26 6.65987e+06 393018 554710. 1919.41 1.20 0.245906 0.223921 22834 132086 -1 2120 22 1589 2413 181576 41910 3.12437 3.12437 -122.201 -3.12437 0 0 701300. 2426.64 0.26 0.12 0.19 -1 -1 0.26 0.0555503 0.050601 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.83 vpr 62.79 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30316 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.8 MiB 0.17 839 17066 5534 9253 2279 62.8 MiB 0.19 0.00 3.49012 -114.14 -3.49012 3.49012 0.98 0.000971242 0.000902354 0.0844115 0.0783972 32 1799 33 6.65987e+06 380340 554710. 1919.41 1.19 0.237962 0.216305 22834 132086 -1 1710 18 1180 1737 123370 28223 2.79197 2.79197 -109.426 -2.79197 0 0 701300. 2426.64 0.22 0.08 0.19 -1 -1 0.22 0.036591 0.0331011 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.52 vpr 63.35 MiB 0.05 7476 -1 -1 1 0.03 -1 -1 30964 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1333 18829 5161 11634 2034 63.4 MiB 0.27 0.00 4.64147 -157.361 -4.64147 4.64147 0.95 0.00159454 0.00148091 0.122626 0.113724 30 2844 21 6.65987e+06 545154 526063. 1820.29 1.37 0.323105 0.294498 22546 126617 -1 2398 23 2018 3072 157660 37757 4.17037 4.17037 -158 -4.17037 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0733471 0.0667367 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.95 vpr 62.76 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30468 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1044 16340 4500 10034 1806 62.8 MiB 0.20 0.00 4.15932 -143.209 -4.15932 4.15932 0.95 0.00122364 0.00113681 0.0912522 0.0848306 28 2400 22 6.65987e+06 456408 500653. 1732.36 1.32 0.248667 0.226802 21970 115934 -1 2199 23 1728 2622 176548 40048 3.54023 3.54023 -139.736 -3.54023 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0558443 0.050651 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.75 vpr 62.84 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30416 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.8 MiB 0.17 722 13055 3473 8103 1479 62.8 MiB 0.15 0.00 3.50687 -117.927 -3.50687 3.50687 0.95 0.000981611 0.000912412 0.0621533 0.0577022 28 2297 22 6.65987e+06 393018 500653. 1732.36 1.23 0.188056 0.170593 21970 115934 -1 1934 21 1371 2262 173203 41631 2.93097 2.93097 -118.23 -2.93097 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.041132 0.0371648 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.08 vpr 63.30 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30816 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1337 12702 3419 8223 1060 63.3 MiB 0.19 0.00 4.90437 -166.477 -4.90437 4.90437 0.90 0.0014274 0.00133028 0.0775014 0.0721647 30 3005 22 6.65987e+06 519798 526063. 1820.29 1.38 0.260926 0.237695 22546 126617 -1 2536 23 1897 3418 212452 47742 4.54303 4.54303 -164.492 -4.54303 0 0 666494. 2306.21 0.22 0.14 0.18 -1 -1 0.22 0.0648914 0.0589313 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.70 vpr 62.71 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.14 852 11260 3935 5447 1878 62.7 MiB 0.14 0.00 3.4749 -119.679 -3.4749 3.4749 0.95 0.000996949 0.000927259 0.0674665 0.0627726 32 2154 20 6.65987e+06 202848 554710. 1919.41 1.13 0.190577 0.173311 22834 132086 -1 1840 20 1518 2424 193396 44903 2.86277 2.86277 -117.186 -2.86277 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0396575 0.0358903 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.53 vpr 63.12 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30160 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 24.2 MiB 0.19 707 8073 1842 5622 609 63.1 MiB 0.10 0.00 3.47387 -110.471 -3.47387 3.47387 0.95 0.000991573 0.000921957 0.0392467 0.0364246 28 1978 23 6.65987e+06 393018 500653. 1732.36 1.08 0.164279 0.148312 21970 115934 -1 1775 19 1139 1798 113620 27836 3.13057 3.13057 -113.96 -3.13057 0 0 612192. 2118.31 0.21 0.09 0.17 -1 -1 0.21 0.0381045 0.0344833 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.77 vpr 63.27 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30488 -1 -1 33 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.34 964 15856 4549 8713 2594 63.3 MiB 0.20 0.00 3.50895 -109.722 -3.50895 3.50895 0.95 0.00121724 0.00113108 0.0941121 0.0873837 30 1987 21 6.65987e+06 418374 526063. 1820.29 1.12 0.246818 0.224813 22546 126617 -1 1675 18 1050 1751 89648 21297 2.54417 2.54417 -99.3535 -2.54417 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0447225 0.040574 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.86 vpr 63.19 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30612 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.20 969 7587 1560 5690 337 63.2 MiB 0.13 0.00 4.0593 -135.974 -4.0593 4.0593 0.95 0.00127467 0.00118469 0.0564471 0.0525004 32 2443 25 6.65987e+06 253560 554710. 1919.41 1.26 0.225132 0.204578 22834 132086 -1 2088 25 2314 3477 244935 57584 3.68457 3.68457 -142.02 -3.68457 0 0 701300. 2426.64 0.22 0.15 0.19 -1 -1 0.22 0.0623811 0.0566403 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 63.07 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30684 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1039 19223 6359 10018 2846 63.1 MiB 0.25 0.00 4.06007 -140.169 -4.06007 4.06007 0.96 0.00129044 0.00119999 0.113322 0.105256 28 2622 21 6.65987e+06 431052 500653. 1732.36 1.37 0.275609 0.251505 21970 115934 -1 2332 23 1955 3393 244955 54328 3.58117 3.58117 -141.311 -3.58117 0 0 612192. 2118.31 0.20 0.14 0.19 -1 -1 0.20 0.0580463 0.0526454 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.73 vpr 62.95 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30644 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 24.0 MiB 0.19 697 8614 1900 5780 934 62.9 MiB 0.11 0.00 3.41884 -113.998 -3.41884 3.41884 0.94 0.00109755 0.00101817 0.0471631 0.0437565 32 2032 20 6.65987e+06 380340 554710. 1919.41 1.19 0.181575 0.164369 22834 132086 -1 1625 21 1310 2082 150460 35851 2.85371 2.85371 -112.44 -2.85371 0 0 701300. 2426.64 0.22 0.10 0.19 -1 -1 0.22 0.0455135 0.0411291 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.92 vpr 62.93 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.29 800 12464 4445 5613 2406 62.9 MiB 0.17 0.00 3.46898 -107.215 -3.46898 3.46898 0.97 0.00108452 0.00100607 0.0820083 0.0761229 32 2030 22 6.65987e+06 215526 554710. 1919.41 1.15 0.219552 0.199323 22834 132086 -1 1743 19 1077 1906 135704 32062 2.78045 2.78045 -105.171 -2.78045 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0420224 0.0379371 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.35 vpr 63.22 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30364 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.4 MiB 0.26 998 10463 2754 7099 610 63.2 MiB 0.14 0.00 3.41496 -111.837 -3.41496 3.41496 0.95 0.00118943 0.00110713 0.0612134 0.0568647 26 2623 34 6.65987e+06 418374 477104. 1650.88 1.72 0.237651 0.215626 21682 110474 -1 2174 18 1304 2116 159402 37127 3.20751 3.20751 -117.507 -3.20751 0 0 585099. 2024.56 0.20 0.10 0.16 -1 -1 0.20 0.0442996 0.0402518 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.76 vpr 63.05 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 31 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 995 16207 5283 8775 2149 63.1 MiB 0.20 0.00 4.24344 -123.397 -4.24344 4.24344 0.96 0.00108059 0.00100504 0.0882965 0.0820928 28 2437 23 6.65987e+06 393018 500653. 1732.36 1.19 0.227876 0.207587 21970 115934 -1 2185 19 1477 2458 188770 42711 3.80971 3.80971 -127.471 -3.80971 0 0 612192. 2118.31 0.20 0.11 0.17 -1 -1 0.20 0.0425831 0.0386631 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.85 vpr 62.82 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.8 MiB 0.19 833 13152 4911 6590 1651 62.8 MiB 0.17 0.00 3.5343 -116.066 -3.5343 3.5343 0.96 0.00104015 0.000965656 0.0821041 0.0762817 32 1931 26 6.65987e+06 228204 554710. 1919.41 3.31 0.362406 0.326796 22834 132086 -1 1735 22 1408 2254 166635 38790 2.92677 2.92677 -114.444 -2.92677 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0448213 0.0404409 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.70 vpr 62.96 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 24.1 MiB 0.28 910 8164 2057 5403 704 63.0 MiB 0.12 0.00 3.44398 -109.924 -3.44398 3.44398 0.98 0.00111922 0.00103907 0.0560323 0.0520076 30 1877 20 6.65987e+06 202848 526063. 1820.29 1.07 0.194819 0.176576 22546 126617 -1 1665 19 860 1405 84533 19191 2.47605 2.47605 -102.562 -2.47605 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0429343 0.0388597 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 7.47 vpr 63.13 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30516 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.18 1111 13823 3486 9077 1260 63.1 MiB 0.18 0.00 4.13353 -137.36 -4.13353 4.13353 0.96 0.00115322 0.00106377 0.0718751 0.0668465 32 2797 36 6.65987e+06 443730 554710. 1919.41 3.87 0.467966 0.423151 22834 132086 -1 2514 20 1824 2994 234014 54422 4.01723 4.01723 -145.916 -4.01723 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0467379 0.0424887 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 9.14 vpr 62.95 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30764 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1037 13598 4125 8601 872 63.0 MiB 0.19 0.00 4.1263 -141.609 -4.1263 4.1263 0.96 0.0012809 0.00118998 0.081079 0.0752945 26 3131 43 6.65987e+06 431052 477104. 1650.88 5.51 0.46169 0.417097 21682 110474 -1 2513 19 1747 2947 214233 50063 3.83557 3.83557 -144.059 -3.83557 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0496462 0.0451212 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.73 vpr 63.28 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1033 10448 2380 7653 415 63.3 MiB 0.15 0.00 4.16458 -142.258 -4.16458 4.16458 0.95 0.00130054 0.00121003 0.0642568 0.0596337 28 3069 27 6.65987e+06 431052 500653. 1732.36 2.06 0.23622 0.214561 21970 115934 -1 2480 20 1679 2836 243334 54734 3.82263 3.82263 -147.428 -3.82263 0 0 612192. 2118.31 0.20 0.13 0.17 -1 -1 0.20 0.0520024 0.0472508 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.88 vpr 63.00 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.29 982 9031 1878 6401 752 63.0 MiB 0.13 0.00 3.86706 -126.941 -3.86706 3.86706 0.95 0.00126471 0.00117504 0.0520859 0.0483661 30 2516 24 6.65987e+06 469086 526063. 1820.29 1.25 0.218402 0.197971 22546 126617 -1 2125 20 1264 2174 119793 28949 3.29571 3.29571 -124.191 -3.29571 0 0 666494. 2306.21 0.25 0.05 0.17 -1 -1 0.25 0.0224625 0.0203544 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.73 vpr 63.10 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 24.2 MiB 0.21 698 7992 1870 5622 500 63.1 MiB 0.11 0.00 3.50927 -110.859 -3.50927 3.50927 0.95 0.000942568 0.000872357 0.0482859 0.0449161 32 1997 19 6.65987e+06 228204 554710. 1919.41 3.26 0.3444 0.309496 22834 132086 -1 1670 20 1191 1898 143164 35971 3.01117 3.01117 -112.49 -3.01117 0 0 701300. 2426.64 0.22 0.09 0.16 -1 -1 0.22 0.0397536 0.0359272 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.88 vpr 63.30 MiB 0.04 7240 -1 -1 1 0.04 -1 -1 30380 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.5 MiB 0.25 985 11796 3468 7405 923 63.3 MiB 0.18 0.00 4.19776 -134.529 -4.19776 4.19776 0.95 0.00121411 0.00112837 0.0817823 0.0760392 32 2293 22 6.65987e+06 278916 554710. 1919.41 1.17 0.237271 0.216123 22834 132086 -1 1909 21 1833 2802 179869 43256 3.55543 3.55543 -130.82 -3.55543 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.050868 0.0461212 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.08 vpr 63.23 MiB 0.05 7496 -1 -1 1 0.04 -1 -1 31044 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.7 MiB 0.22 1052 13117 2855 8842 1420 63.2 MiB 0.17 0.00 3.91498 -132.986 -3.91498 3.91498 0.95 0.00141447 0.00131491 0.0803616 0.074673 32 2978 27 6.65987e+06 494442 554710. 1919.41 1.34 0.270608 0.245628 22834 132086 -1 2307 23 2119 3423 259437 61816 3.65425 3.65425 -136.642 -3.65425 0 0 701300. 2426.64 0.23 0.15 0.19 -1 -1 0.23 0.0630205 0.0569605 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 8.52 vpr 63.18 MiB 0.03 7312 -1 -1 1 0.03 -1 -1 30672 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1050 9679 2438 6769 472 63.2 MiB 0.15 0.00 3.91106 -131.382 -3.91106 3.91106 0.96 0.00129658 0.0012046 0.0625374 0.0580733 26 3054 32 6.65987e+06 393018 477104. 1650.88 4.96 0.422079 0.381466 21682 110474 -1 2358 21 1754 2871 218422 49743 3.67651 3.67651 -137.032 -3.67651 0 0 585099. 2024.56 0.19 0.13 0.16 -1 -1 0.19 0.0544295 0.0493603 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 6.73 vpr 63.18 MiB 0.04 7360 -1 -1 1 0.04 -1 -1 30652 -1 -1 30 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.3 MiB 0.25 992 11063 2679 7283 1101 63.2 MiB 0.16 0.00 3.74723 -113.498 -3.74723 3.74723 0.95 0.00124215 0.0011535 0.0698387 0.0648899 28 2306 25 6.65987e+06 380340 500653. 1732.36 3.12 0.376524 0.340152 21970 115934 -1 2083 20 1067 1931 124993 29803 2.99711 2.99711 -113.207 -2.99711 0 0 612192. 2118.31 0.20 0.10 0.17 -1 -1 0.20 0.0501396 0.0454664 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.04 vpr 63.15 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1074 13477 4127 7567 1783 63.2 MiB 0.20 0.00 4.06547 -141.302 -4.06547 4.06547 0.95 0.001282 0.00119081 0.0960835 0.0892745 32 2848 23 6.65987e+06 266238 554710. 1919.41 1.26 0.262487 0.239427 22834 132086 -1 2602 21 2083 3632 279096 63259 3.71237 3.71237 -144.392 -3.71237 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0537155 0.0488387 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.83 vpr 63.12 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.3 MiB 0.24 874 10895 2930 7022 943 63.1 MiB 0.15 0.00 3.36406 -101.988 -3.36406 3.36406 0.95 0.00120503 0.00111961 0.0636926 0.0591621 32 2122 24 6.65987e+06 431052 554710. 1919.41 1.15 0.219658 0.199344 22834 132086 -1 1864 21 1429 2297 156376 37592 2.76891 2.76891 -100.466 -2.76891 0 0 701300. 2426.64 0.23 0.10 0.19 -1 -1 0.23 0.0483679 0.043703 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 283 225 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.16 799 10056 2635 6899 522 62.6 MiB 0.13 0.00 3.5031 -122.874 -3.5031 3.5031 0.98 0.000983901 0.000915127 0.0602371 0.0560669 32 2149 20 6.65987e+06 202848 554710. 1919.41 1.14 0.181935 0.165379 22834 132086 -1 1893 23 1457 2232 191798 44166 2.94997 2.94997 -121.754 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.19 -1 -1 0.25 0.0452063 0.0409205 117 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.17 vpr 63.01 MiB 0.06 7072 -1 -1 1 0.03 -1 -1 30432 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1015 16525 5345 8784 2396 63.0 MiB 0.22 0.00 4.18856 -142.192 -4.18856 4.18856 0.96 0.00128514 0.0011947 0.0996367 0.0925564 32 2828 26 6.65987e+06 418374 554710. 1919.41 1.31 0.272564 0.248477 22834 132086 -1 2148 20 1723 2575 198999 44834 3.92903 3.92903 -142.048 -3.92903 0 0 701300. 2426.64 0.23 0.12 0.19 -1 -1 0.23 0.0514837 0.0467403 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.99 vpr 63.39 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30628 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1026 16081 4881 8736 2464 63.4 MiB 0.23 0.00 4.23393 -146.239 -4.23393 4.23393 0.93 0.00129103 0.00120031 0.1147 0.106617 32 2587 21 6.65987e+06 266238 554710. 1919.41 1.20 0.276972 0.252983 22834 132086 -1 2281 21 2112 3230 249406 57054 3.85563 3.85563 -148.603 -3.85563 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0545408 0.0495367 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 7.25 vpr 62.96 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30504 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.1 MiB 0.22 688 16683 5557 7719 3407 63.0 MiB 0.17 0.00 3.44878 -105.048 -3.44878 3.44878 0.95 0.00101464 0.000939127 0.0834786 0.0772596 32 2318 45 6.65987e+06 367662 554710. 1919.41 3.63 0.393981 0.354342 22834 132086 -1 1774 23 1316 1986 170360 42279 2.89585 2.89585 -106.778 -2.89585 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0456296 0.0411311 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.59 vpr 62.80 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30536 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 720 9356 2387 5915 1054 62.8 MiB 0.12 0.00 3.4529 -113.153 -3.4529 3.4529 0.95 0.000952803 0.000885991 0.0536606 0.0499048 30 1921 19 6.65987e+06 228204 526063. 1820.29 1.11 0.172164 0.156129 22546 126617 -1 1653 19 1135 1847 109681 25398 2.89017 2.89017 -110.427 -2.89017 0 0 666494. 2306.21 0.22 0.08 0.18 -1 -1 0.22 0.0373176 0.0337545 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.37 vpr 62.96 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30304 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.31 913 5790 1032 4561 197 63.0 MiB 0.09 0.00 3.91316 -128.563 -3.91316 3.91316 0.97 0.00122186 0.00113589 0.0348853 0.0324609 28 2492 21 6.65987e+06 405696 500653. 1732.36 3.69 0.392805 0.353788 21970 115934 -1 2127 22 1708 2618 169708 40876 3.51131 3.51131 -129.06 -3.51131 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.0532529 0.0483154 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.78 vpr 63.12 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.13 879 9892 2434 7009 449 63.1 MiB 0.14 0.00 4.11224 -123.302 -4.11224 4.11224 0.95 0.00125262 0.00116326 0.0616485 0.0572247 28 2748 30 6.65987e+06 380340 500653. 1732.36 2.21 0.242627 0.219972 21970 115934 -1 2268 21 1525 2482 189194 45302 3.75965 3.75965 -132.217 -3.75965 0 0 612192. 2118.31 0.20 0.12 0.17 -1 -1 0.20 0.052148 0.0472065 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.59 vpr 63.25 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30528 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.8 MiB 0.18 1247 19251 5678 10972 2601 63.2 MiB 0.27 0.00 4.78976 -159.687 -4.78976 4.78976 0.95 0.00132979 0.00123783 0.116392 0.108337 32 3193 25 6.65987e+06 443730 554710. 1919.41 1.85 0.346108 0.315693 22834 132086 -1 2747 21 2279 3705 310725 67301 4.59123 4.59123 -160.978 -4.59123 0 0 701300. 2426.64 0.22 0.15 0.21 -1 -1 0.22 0.0568211 0.0517884 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.72 vpr 63.07 MiB 0.03 7180 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1003 9892 2469 6555 868 63.1 MiB 0.14 0.00 3.59821 -110.073 -3.59821 3.59821 0.95 0.00117651 0.00109391 0.057868 0.0537332 32 2467 27 6.65987e+06 405696 554710. 1919.41 1.11 0.185837 0.168503 22834 132086 -1 2090 17 1389 2141 143743 34003 3.09831 3.09831 -115.322 -3.09831 0 0 701300. 2426.64 0.23 0.10 0.20 -1 -1 0.23 0.0422105 0.0383377 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.56 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30664 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.9 MiB 0.13 768 12754 4322 6521 1911 62.7 MiB 0.14 0.00 3.3979 -99.6122 -3.3979 3.3979 0.95 0.000899956 0.000836254 0.0709546 0.0659647 32 1622 20 6.65987e+06 253560 554710. 1919.41 1.07 0.182761 0.166008 22834 132086 -1 1433 19 1101 1607 114150 26684 2.65457 2.65457 -96.0417 -2.65457 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0349219 0.0314854 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.27 vpr 63.29 MiB 0.05 7460 -1 -1 1 0.05 -1 -1 30608 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 24.5 MiB 0.25 1366 15232 4128 9656 1448 63.3 MiB 0.22 0.00 4.15924 -136.806 -4.15924 4.15924 0.95 0.00154613 0.001439 0.0997176 0.0927061 32 3532 23 6.65987e+06 507120 554710. 1919.41 1.35 0.29955 0.273152 22834 132086 -1 3116 25 2452 4454 369344 81847 3.70451 3.70451 -139.486 -3.70451 0 0 701300. 2426.64 0.23 0.19 0.19 -1 -1 0.23 0.0731615 0.0662648 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.95 vpr 63.37 MiB 0.03 7456 -1 -1 1 0.03 -1 -1 30560 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.5 MiB 0.23 989 7038 1632 4931 475 63.4 MiB 0.12 0.00 4.3087 -132.62 -4.3087 4.3087 0.95 0.00136711 0.00127135 0.0557207 0.0518004 32 2571 26 6.65987e+06 266238 554710. 1919.41 1.24 0.237627 0.215236 22834 132086 -1 2282 21 1694 2657 218061 49810 4.03291 4.03291 -147.001 -4.03291 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.0568859 0.0515205 145 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 6.77 vpr 62.77 MiB 0.07 7044 -1 -1 1 0.04 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.21 741 9196 2428 5976 792 62.8 MiB 0.13 0.00 3.81463 -109.262 -3.81463 3.81463 0.95 0.00109801 0.00101824 0.0614955 0.0570376 32 1970 20 6.65987e+06 202848 554710. 1919.41 3.14 0.364942 0.328129 22834 132086 -1 1716 16 778 1248 99102 23351 2.76971 2.76971 -108.047 -2.76971 0 0 701300. 2426.64 0.23 0.08 0.19 -1 -1 0.23 0.0370658 0.033611 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 6.84 vpr 63.17 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30436 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1123 15645 4083 9696 1866 63.2 MiB 0.20 0.00 4.2837 -136.384 -4.2837 4.2837 0.98 0.00119314 0.00110809 0.0876397 0.0814315 26 2928 26 6.65987e+06 405696 477104. 1650.88 3.26 0.391585 0.354579 21682 110474 -1 2479 21 1641 2482 206525 46385 4.06417 4.06417 -142.835 -4.06417 0 0 585099. 2024.56 0.19 0.12 0.16 -1 -1 0.19 0.0516405 0.0467703 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.10 vpr 63.11 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30712 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1167 13551 3218 9177 1156 63.1 MiB 0.21 0.00 4.22766 -133.836 -4.22766 4.22766 0.98 0.00139399 0.00129597 0.0874291 0.0815112 32 2736 25 6.65987e+06 456408 554710. 1919.41 1.21 0.272666 0.24807 22834 132086 -1 2359 22 1949 3007 210190 49032 3.53431 3.53431 -136.186 -3.53431 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0612542 0.0555583 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.64 vpr 63.17 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1070 11111 2802 7426 883 63.2 MiB 0.15 0.00 3.62941 -110.797 -3.62941 3.62941 1.01 0.0011806 0.00109647 0.0636942 0.0591634 26 2822 41 6.65987e+06 418374 477104. 1650.88 1.92 0.248411 0.225025 21682 110474 -1 2338 22 1446 2525 192118 43505 2.92491 2.92491 -112.813 -2.92491 0 0 585099. 2024.56 0.19 0.12 0.17 -1 -1 0.19 0.0512901 0.046459 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.95 vpr 63.04 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30484 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1074 12606 3053 8336 1217 63.0 MiB 0.19 0.00 4.0783 -140.694 -4.0783 4.0783 0.95 0.0012865 0.00119547 0.0782326 0.0727231 30 2478 23 6.65987e+06 532476 526063. 1820.29 1.24 0.245644 0.223743 22546 126617 -1 2051 21 1402 2299 137271 31767 3.45817 3.45817 -133.145 -3.45817 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0538002 0.0488539 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 7.67 vpr 63.39 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.4 MiB 0.28 984 6766 1232 5172 362 63.4 MiB 0.11 0.00 3.41884 -115.761 -3.41884 3.41884 0.95 0.00130323 0.00121272 0.0419013 0.0389466 26 2850 33 6.65987e+06 481764 477104. 1650.88 3.99 0.397193 0.358114 21682 110474 -1 2423 27 1696 2761 248201 56812 3.08311 3.08311 -119.664 -3.08311 0 0 585099. 2024.56 0.19 0.15 0.16 -1 -1 0.19 0.0663665 0.0600844 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.51 vpr 63.05 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30516 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 29 32 287 238 1 135 77 17 17 289 -1 unnamed_device 24.2 MiB 0.08 508 12791 3386 7672 1733 63.1 MiB 0.13 0.00 3.7595 -104.085 -3.7595 3.7595 0.95 0.0009539 0.000886381 0.0777033 0.0722644 32 1575 24 6.65987e+06 202848 554710. 1919.41 1.10 0.209069 0.189937 22834 132086 -1 1424 18 959 1325 113804 28264 2.77157 2.77157 -102.97 -2.77157 0 0 701300. 2426.64 0.23 0.08 0.18 -1 -1 0.23 0.0355952 0.0321729 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.43 vpr 62.73 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 872 14431 4553 8297 1581 62.7 MiB 0.17 0.00 3.69338 -109.525 -3.69338 3.69338 0.95 0.00104112 0.000965108 0.0889883 0.0825528 32 1993 22 6.65987e+06 215526 554710. 1919.41 0.89 0.168745 0.153492 22834 132086 -1 1836 20 1048 1483 131354 29319 2.84891 2.84891 -106.583 -2.84891 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0421948 0.0381306 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 11.59 vpr 63.12 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30444 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 964 13556 3768 8523 1265 63.1 MiB 0.19 0.00 4.3897 -133.197 -4.3897 4.3897 0.95 0.00119481 0.00111046 0.0730673 0.0679267 28 3178 29 6.65987e+06 469086 500653. 1732.36 7.85 0.495992 0.448177 21970 115934 -1 2327 35 2674 4462 506472 162293 3.75231 3.75231 -143.177 -3.75231 0 0 612192. 2118.31 0.20 0.24 0.17 -1 -1 0.20 0.0784837 0.0711003 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.16 vpr 62.69 MiB 0.04 7248 -1 -1 1 0.03 -1 -1 30588 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.23 621 11063 2736 7707 620 62.7 MiB 0.13 0.00 3.58224 -95.8028 -3.58224 3.58224 0.95 0.000958803 0.000889756 0.0539217 0.0500131 26 2040 31 6.65987e+06 393018 477104. 1650.88 1.67 0.195235 0.175922 21682 110474 -1 1694 19 1081 1737 132637 32602 2.84271 2.84271 -100.138 -2.84271 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.036823 0.0332144 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.41 vpr 62.90 MiB 0.07 7016 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 0.19 823 7992 1920 5681 391 62.9 MiB 0.12 0.00 3.5141 -118.56 -3.5141 3.5141 0.95 0.00105879 0.000985645 0.0518533 0.0482103 32 2205 47 6.65987e+06 202848 554710. 1919.41 1.84 0.240771 0.217225 22834 132086 -1 1819 21 1485 2437 179693 42818 2.85871 2.85871 -118.643 -2.85871 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0450662 0.0408699 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.81 vpr 63.09 MiB 0.05 7296 -1 -1 1 0.04 -1 -1 30404 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.2 MiB 0.24 997 12411 3191 8197 1023 63.1 MiB 0.16 0.00 3.50507 -117.588 -3.50507 3.50507 0.99 0.00123245 0.00114488 0.0707327 0.0655971 26 2369 23 6.65987e+06 456408 477104. 1650.88 1.12 0.229361 0.208545 21682 110474 -1 2041 23 1569 2245 149784 34631 2.75897 2.75897 -113.813 -2.75897 0 0 585099. 2024.56 0.19 0.11 0.16 -1 -1 0.19 0.0556726 0.0504542 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.78 vpr 62.93 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 308 262 1 147 79 17 17 289 -1 unnamed_device 24.0 MiB 0.27 889 12754 3806 7303 1645 62.9 MiB 0.15 0.00 3.11304 -101.246 -3.11304 3.11304 0.95 0.000998542 0.00092662 0.0776268 0.0720638 32 1949 21 6.65987e+06 202848 554710. 1919.41 1.08 0.201779 0.183171 22834 132086 -1 1778 21 983 1720 127315 29941 2.70845 2.70845 -103.537 -2.70845 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0418341 0.0377005 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 6.76 vpr 63.39 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30460 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.6 MiB 0.29 929 17616 5738 7949 3929 63.4 MiB 0.19 0.00 3.3979 -111.1 -3.3979 3.3979 0.95 0.00120515 0.00111911 0.100629 0.0934646 34 2379 29 6.65987e+06 405696 585099. 2024.56 2.99 0.369772 0.33479 23122 138558 -1 1964 21 1334 2362 191621 46307 2.77677 2.77677 -110.937 -2.77677 0 0 742403. 2568.87 0.24 0.12 0.20 -1 -1 0.24 0.0510307 0.0462564 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.17 vpr 63.38 MiB 0.07 7504 -1 -1 1 0.03 -1 -1 30416 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.63 966 17427 4771 10069 2587 63.4 MiB 0.22 0.00 3.7525 -119.295 -3.7525 3.7525 0.95 0.00130513 0.00121269 0.103256 0.0958756 28 2392 21 6.65987e+06 456408 500653. 1732.36 1.15 0.268982 0.245266 21970 115934 -1 2023 18 1369 2091 134725 32086 3.00737 3.00737 -116.081 -3.00737 0 0 612192. 2118.31 0.20 0.10 0.09 -1 -1 0.20 0.0482834 0.0438547 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.88 vpr 62.87 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.24 861 11652 3522 6006 2124 62.9 MiB 0.15 0.00 2.81844 -100.349 -2.81844 2.81844 0.95 0.00107252 0.000996598 0.074208 0.0689139 32 2012 26 6.65987e+06 228204 554710. 1919.41 1.22 0.216282 0.196266 22834 132086 -1 1748 18 1202 1879 134366 30914 2.75265 2.75265 -104.499 -2.75265 0 0 701300. 2426.64 0.23 0.09 0.19 -1 -1 0.23 0.0392083 0.0354843 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.03 vpr 62.86 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.29 667 7380 1595 4913 872 62.9 MiB 0.10 0.00 3.38184 -112.707 -3.38184 3.38184 0.95 0.00108445 0.00100668 0.0477304 0.0443396 32 2254 30 6.65987e+06 228204 554710. 1919.41 1.39 0.199135 0.180101 22834 132086 -1 1764 23 1426 2249 178263 43985 3.04711 3.04711 -116.657 -3.04711 0 0 701300. 2426.64 0.22 0.11 0.19 -1 -1 0.22 0.0470947 0.0425317 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.89 vpr 62.87 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30872 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1042 12164 2979 8000 1185 62.9 MiB 0.16 0.00 4.02524 -139.262 -4.02524 4.02524 0.95 0.00129079 0.00120104 0.0706451 0.0655896 28 2654 24 6.65987e+06 456408 500653. 1732.36 1.22 0.236677 0.215138 21970 115934 -1 2331 24 2050 3166 219876 50788 3.57211 3.57211 -136.993 -3.57211 0 0 612192. 2118.31 0.20 0.14 0.17 -1 -1 0.20 0.0594675 0.0539132 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.78 vpr 63.06 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30624 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.0 MiB 0.24 974 17313 5216 9261 2836 63.1 MiB 0.21 0.00 3.57304 -105.909 -3.57304 3.57304 0.94 0.00116955 0.0010868 0.0988546 0.0917273 32 2200 18 6.65987e+06 405696 554710. 1919.41 1.10 0.239972 0.218787 22834 132086 -1 1975 20 1120 1672 108204 26909 3.09631 3.09631 -107.166 -3.09631 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0471736 0.0427536 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.14 vpr 63.16 MiB 0.05 7392 -1 -1 1 0.03 -1 -1 30688 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.7 MiB 0.30 1004 11616 2968 7911 737 63.2 MiB 0.18 0.00 3.97241 -135.454 -3.97241 3.97241 0.94 0.00140613 0.00130537 0.0759891 0.0706926 32 2771 26 6.65987e+06 469086 554710. 1919.41 1.25 0.265295 0.240712 22834 132086 -1 2330 20 1871 2901 224939 53177 3.64131 3.64131 -139.907 -3.64131 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0571011 0.0517556 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 6.93 vpr 62.71 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.9 MiB 0.15 635 8698 2288 5521 889 62.7 MiB 0.11 0.00 2.9397 -95.8867 -2.9397 2.9397 0.95 0.000904413 0.000840711 0.0490678 0.0456393 36 1613 26 6.65987e+06 202848 612192. 2118.31 3.47 0.329485 0.295772 23410 145293 -1 1387 17 872 1355 79389 20803 2.76785 2.76785 -97.5417 -2.76785 0 0 782063. 2706.10 0.25 0.07 0.21 -1 -1 0.25 0.0326515 0.0295637 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.95 vpr 63.27 MiB 0.03 7316 -1 -1 1 0.03 -1 -1 30476 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.3 MiB 0.24 948 20077 6167 11074 2836 63.3 MiB 0.25 0.00 4.10497 -133.778 -4.10497 4.10497 0.95 0.00128879 0.00119755 0.120771 0.112102 32 2362 23 6.65987e+06 418374 554710. 1919.41 1.20 0.28552 0.2605 22834 132086 -1 2006 24 1776 2562 193123 43922 3.62937 3.62937 -129.345 -3.62937 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0601181 0.0544966 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.32 vpr 62.91 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.9 MiB 0.24 805 9196 3450 4876 870 62.9 MiB 0.12 0.00 3.54047 -120.422 -3.54047 3.54047 0.95 0.00117195 0.00108726 0.0651845 0.0605578 30 2166 35 6.65987e+06 202848 526063. 1820.29 1.78 0.236144 0.213839 22546 126617 -1 1721 17 1153 1677 119370 27737 2.75177 2.75177 -114.486 -2.75177 0 0 666494. 2306.21 0.22 0.11 0.18 -1 -1 0.22 0.0474787 0.0432253 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.98 vpr 63.14 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30436 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1002 18111 5520 9663 2928 63.1 MiB 0.22 0.00 3.45184 -118.995 -3.45184 3.45184 0.97 0.00127575 0.00118395 0.102242 0.0949185 32 2475 22 6.65987e+06 443730 554710. 1919.41 1.17 0.264638 0.24122 22834 132086 -1 2110 24 1603 2310 191686 43849 2.92871 2.92871 -116.803 -2.92871 0 0 701300. 2426.64 0.22 0.13 0.19 -1 -1 0.22 0.059411 0.053855 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.86 vpr 63.42 MiB 0.05 7436 -1 -1 1 0.03 -1 -1 30764 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.6 MiB 0.25 1201 15034 3694 9653 1687 63.4 MiB 0.21 0.00 4.6905 -158.567 -4.6905 4.6905 0.95 0.00126044 0.00117581 0.0951348 0.0884878 26 3629 44 6.65987e+06 545154 477104. 1650.88 3.98 0.356868 0.324346 21682 110474 -1 2941 25 2630 4312 357206 77040 4.51197 4.51197 -165.002 -4.51197 0 0 585099. 2024.56 0.20 0.19 0.16 -1 -1 0.20 0.0752754 0.0683484 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.71 vpr 62.29 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30244 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.16 532 10509 2640 7460 409 62.3 MiB 0.11 0.00 2.61752 -80.0454 -2.61752 2.61752 0.95 0.000811716 0.000753365 0.0545533 0.0506115 26 1474 18 6.65987e+06 190170 477104. 1650.88 1.30 0.151043 0.136308 21682 110474 -1 1177 17 710 991 71978 18027 2.06225 2.06225 -79.2493 -2.06225 0 0 585099. 2024.56 0.19 0.06 0.16 -1 -1 0.19 0.0281495 0.0252757 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.69 vpr 62.95 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 24.1 MiB 0.13 762 10536 3371 5501 1664 62.9 MiB 0.12 0.00 3.53704 -109.534 -3.53704 3.53704 0.97 0.00067651 0.000623377 0.0553483 0.0513396 32 1694 20 6.65987e+06 202848 554710. 1919.41 1.18 0.183871 0.166685 22834 132086 -1 1514 20 984 1440 123528 26252 2.74851 2.74851 -105.013 -2.74851 0 0 701300. 2426.64 0.22 0.09 0.19 -1 -1 0.22 0.0397651 0.0359295 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.70 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.17 856 9872 2316 7018 538 62.7 MiB 0.14 0.00 3.4859 -122.574 -3.4859 3.4859 0.95 0.00124268 0.00115354 0.0595301 0.0553235 32 2399 22 6.65987e+06 228204 554710. 1919.41 1.17 0.188002 0.17045 22834 132086 -1 2075 22 1709 3070 245393 55927 2.92677 2.92677 -123.113 -2.92677 0 0 701300. 2426.64 0.23 0.13 0.19 -1 -1 0.23 0.0452973 0.0409509 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.47 vpr 62.46 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30488 -1 -1 34 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.3 MiB 0.15 702 13351 3659 7846 1846 62.5 MiB 0.13 0.00 3.31884 -88.9455 -3.31884 3.31884 0.95 0.000830431 0.000780858 0.0574396 0.0534067 26 1679 22 6.65987e+06 431052 477104. 1650.88 0.99 0.163674 0.148063 21682 110474 -1 1550 22 1130 1841 128093 30227 2.85971 2.85971 -93.3795 -2.85971 0 0 585099. 2024.56 0.19 0.09 0.16 -1 -1 0.19 0.0365651 0.0328583 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.08 vpr 63.26 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.25 877 14541 4608 7775 2158 63.3 MiB 0.22 0.00 4.02035 -125.217 -4.02035 4.02035 0.95 0.00133734 0.00124286 0.109604 0.101862 32 2690 24 6.65987e+06 253560 554710. 1919.41 1.27 0.282671 0.257755 22834 132086 -1 2213 23 1834 3322 247453 59151 3.53405 3.53405 -127.601 -3.53405 0 0 701300. 2426.64 0.22 0.14 0.19 -1 -1 0.22 0.0599683 0.054333 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.06 vpr 63.01 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30492 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.4 MiB 0.24 939 18660 5305 10506 2849 63.0 MiB 0.23 0.00 3.4903 -116.281 -3.4903 3.4903 0.95 0.00129357 0.00120006 0.107574 0.0997263 32 2339 23 6.65987e+06 469086 554710. 1919.41 1.22 0.273235 0.248715 22834 132086 -1 2089 19 1673 2647 181583 42973 2.98731 2.98731 -113.056 -2.98731 0 0 701300. 2426.64 0.26 0.11 0.19 -1 -1 0.26 0.0502079 0.0456329 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 12.47 vpr 63.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30860 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 438 350 1 187 90 17 17 289 -1 unnamed_device 25.1 MiB 0.84 781 14160 4399 7086 2675 63.9 MiB 0.17 0.00 3.72605 -134.976 -3.72605 3.72605 0.98 0.00135471 0.00125943 0.0982383 0.0912653 60 2221 23 6.95648e+06 376368 1.01997e+06 3529.29 7.62 0.586002 0.52899 30658 258169 -1 1774 26 1823 2820 268427 58047 4.45496 4.45496 -148.468 -4.45496 0 0 1.27783e+06 4421.56 0.37 0.16 0.40 -1 -1 0.37 0.0676835 0.0612849 85 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 19.00 vpr 64.00 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30800 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 25.2 MiB 1.95 824 12716 4465 6411 1840 64.0 MiB 0.17 0.00 3.9478 -132.405 -3.9478 3.9478 0.98 0.00125654 0.00116792 0.102711 0.0954971 40 2404 22 6.95648e+06 202660 706193. 2443.58 13.32 0.568047 0.512944 26914 176310 -1 2102 24 1868 2838 284088 59176 4.38096 4.38096 -147.901 -4.38096 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0586768 0.0530987 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.05 vpr 63.79 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30400 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.80 1022 7103 1835 4569 699 63.8 MiB 0.10 0.00 3.60914 -132.635 -3.60914 3.60914 0.99 0.00121823 0.00113198 0.0518217 0.0482186 38 2797 27 6.95648e+06 275038 678818. 2348.85 3.67 0.284371 0.257245 26626 170182 -1 2454 20 1574 2379 217825 43205 3.86296 3.86296 -144.54 -3.86296 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0487312 0.0441986 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 17.01 vpr 63.75 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30604 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.8 MiB 0.43 752 10672 3799 5216 1657 63.8 MiB 0.14 0.00 4.001 -128.21 -4.001 4.001 0.99 0.00111201 0.00103347 0.0762491 0.070928 40 2598 38 6.95648e+06 231611 706193. 2443.58 12.87 0.609883 0.549345 26914 176310 -1 2283 26 1933 2905 419587 112941 4.32786 4.32786 -154.258 -4.32786 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0561917 0.0508163 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 12.11 vpr 63.86 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.80 812 8879 3631 4902 346 63.9 MiB 0.12 0.00 3.71619 -136.578 -3.71619 3.71619 0.98 0.00122613 0.0011394 0.0684728 0.0637094 58 2919 30 6.95648e+06 188184 997811. 3452.63 7.40 0.476128 0.430361 30370 251734 -1 2270 23 2063 3622 353356 74608 4.28266 4.28266 -153.603 -4.28266 0 0 1.25153e+06 4330.55 0.37 0.16 0.40 -1 -1 0.37 0.0558534 0.0507176 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.81 vpr 63.78 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.43 804 15213 5066 7689 2458 63.8 MiB 0.18 0.00 3.0985 -115.525 -3.0985 3.0985 0.98 0.00127654 0.00118663 0.0961939 0.0894403 46 2137 23 6.95648e+06 419795 828058. 2865.25 2.64 0.364122 0.330411 28066 200906 -1 1773 18 1520 2080 152278 34489 2.97757 2.97757 -116.487 -2.97757 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0489545 0.0445643 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 11.11 vpr 63.18 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30788 -1 -1 14 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 27 32 269 226 1 131 73 17 17 289 -1 unnamed_device 24.5 MiB 4.59 466 7825 3200 4121 504 63.2 MiB 0.08 0.00 3.26916 -94.6801 -3.26916 3.26916 0.98 0.000850575 0.000786806 0.0485928 0.0451812 40 1615 50 6.95648e+06 202660 706193. 2443.58 3.08 0.286547 0.257241 26914 176310 -1 1268 20 1011 1477 115326 28536 3.28763 3.28763 -104.05 -3.28763 0 0 926341. 3205.33 0.27 0.08 0.26 -1 -1 0.27 0.0369976 0.0334041 55 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 9.43 vpr 63.64 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30300 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.7 MiB 0.56 720 11088 4590 6028 470 63.6 MiB 0.13 0.00 3.0082 -105.111 -3.0082 3.0082 0.98 0.00107712 0.00100164 0.0721843 0.0672012 52 2284 26 6.95648e+06 246087 926341. 3205.33 5.16 0.423846 0.382401 29218 227130 -1 1700 20 1282 1881 146794 34210 3.17127 3.17127 -108.757 -3.17127 0 0 1.14541e+06 3963.36 0.33 0.10 0.34 -1 -1 0.33 0.0439778 0.0399194 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 10.63 vpr 63.61 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30344 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.8 MiB 1.56 523 9839 2724 5527 1588 63.6 MiB 0.12 0.00 3.10275 -98.6883 -3.10275 3.10275 0.98 0.0010504 0.000974377 0.0694952 0.0645102 44 1703 25 6.95648e+06 159232 787024. 2723.27 5.49 0.48754 0.437301 27778 195446 -1 1186 21 892 1354 90404 21695 3.21232 3.21232 -111.124 -3.21232 0 0 997811. 3452.63 0.30 0.08 0.29 -1 -1 0.30 0.0439627 0.0396919 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 8.10 vpr 63.41 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30304 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.6 MiB 0.99 638 10614 4216 4843 1555 63.4 MiB 0.13 0.00 2.95005 -114.898 -2.95005 2.95005 0.99 0.00103824 0.000964668 0.0739674 0.0687657 38 2107 25 6.95648e+06 144757 678818. 2348.85 3.54 0.298931 0.270094 26626 170182 -1 1682 21 1536 2200 204120 42048 3.20292 3.20292 -127.541 -3.20292 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0436629 0.0395086 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.28 vpr 63.46 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30248 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.6 MiB 1.68 652 11079 4648 6085 346 63.5 MiB 0.13 0.00 3.1095 -111.937 -3.1095 3.1095 0.98 0.00103868 0.000964784 0.077195 0.0717433 36 1829 23 6.95648e+06 173708 648988. 2245.63 2.12 0.249485 0.225789 26050 158493 -1 1491 15 1124 1491 106920 24066 3.11387 3.11387 -118.497 -3.11387 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0332933 0.0301887 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 10.85 vpr 63.95 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 30516 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 25.1 MiB 0.85 538 10476 4359 5709 408 63.9 MiB 0.12 0.00 2.9793 -106.415 -2.9793 2.9793 1.00 0.00105509 0.000978824 0.0713783 0.0662287 56 1546 16 6.95648e+06 173708 973134. 3367.25 6.25 0.433463 0.389853 29794 239141 -1 1309 20 1028 1482 122482 30907 3.00287 3.00287 -111.661 -3.00287 0 0 1.19926e+06 4149.71 0.34 0.09 0.38 -1 -1 0.34 0.0420412 0.0379786 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 23.85 vpr 63.83 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.9 MiB 1.43 751 11803 3276 6505 2022 63.8 MiB 0.15 0.00 3.1024 -116.607 -3.1024 3.1024 0.99 0.00122952 0.00113888 0.0815805 0.0758484 40 3036 49 6.95648e+06 303989 706193. 2443.58 18.70 0.69938 0.629603 26914 176310 -1 2276 24 1763 2680 369442 91945 4.73617 4.73617 -157.034 -4.73617 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0579242 0.052504 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 9.70 vpr 64.06 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30576 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 25.3 MiB 1.07 814 16371 6936 9066 369 64.1 MiB 0.19 0.00 3.79319 -140.457 -3.79319 3.79319 0.99 0.00128322 0.00119208 0.10838 0.100748 40 2624 30 6.95648e+06 376368 706193. 2443.58 4.85 0.402092 0.364931 26914 176310 -1 2338 23 2364 3428 434385 97460 3.98496 3.98496 -156.34 -3.98496 0 0 926341. 3205.33 0.27 0.18 0.26 -1 -1 0.27 0.0581799 0.0527797 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.19 vpr 63.05 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30620 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.5 MiB 1.01 465 11234 4544 5569 1121 63.1 MiB 0.12 0.00 3.14676 -95.8879 -3.14676 3.14676 0.98 0.000918938 0.000854024 0.067953 0.0631934 44 1682 46 6.95648e+06 188184 787024. 2723.27 2.54 0.272493 0.245511 27778 195446 -1 1228 28 1164 1719 140916 33293 2.89257 2.89257 -97.9883 -2.89257 0 0 997811. 3452.63 0.30 0.10 0.29 -1 -1 0.30 0.0486584 0.0437615 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 13.97 vpr 63.80 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 401 315 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 1.65 727 13443 5705 7147 591 63.8 MiB 0.18 0.00 3.1505 -117.517 -3.1505 3.1505 0.98 0.00164387 0.00155119 0.108567 0.10089 54 2344 40 6.95648e+06 188184 949917. 3286.91 8.44 0.650847 0.587703 29506 232905 -1 1686 26 2073 3337 281207 64375 3.58982 3.58982 -131.551 -3.58982 0 0 1.17392e+06 4061.99 0.34 0.16 0.36 -1 -1 0.34 0.0637192 0.0576912 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 9.04 vpr 63.78 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.8 MiB 1.53 707 11064 3431 5769 1864 63.8 MiB 0.13 0.00 3.0804 -113.798 -3.0804 3.0804 0.98 0.00122605 0.00113952 0.077458 0.0719712 46 2347 47 6.95648e+06 289514 828058. 2865.25 3.74 0.383221 0.346573 28066 200906 -1 1732 25 1625 2120 272273 97944 3.26132 3.26132 -124.624 -3.26132 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0593039 0.0537474 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.06 vpr 63.52 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30156 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.7 MiB 0.87 574 10698 2981 5511 2206 63.5 MiB 0.12 0.00 2.43656 -93.1005 -2.43656 2.43656 0.99 0.00108511 0.00100772 0.0661537 0.0614604 46 1621 28 6.95648e+06 289514 828058. 2865.25 2.51 0.255453 0.230811 28066 200906 -1 1288 21 1166 1606 125868 31593 2.33483 2.33483 -97.298 -2.33483 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0450944 0.0407611 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.21 vpr 62.66 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30164 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.1 MiB 0.35 450 11098 4782 5950 366 62.7 MiB 0.11 0.00 2.21746 -80.5091 -2.21746 2.21746 0.99 0.000880251 0.000824776 0.0604414 0.0560679 36 1502 25 6.95648e+06 144757 648988. 2245.63 2.34 0.223527 0.200521 26050 158493 -1 1192 16 679 864 91906 20450 2.43528 2.43528 -90.2087 -2.43528 0 0 828058. 2865.25 0.28 0.06 0.22 -1 -1 0.28 0.0258094 0.0232289 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 18.00 vpr 63.68 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30428 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.9 MiB 1.14 541 9374 3783 5060 531 63.7 MiB 0.12 0.00 3.8646 -129.431 -3.8646 3.8646 0.99 0.00105875 0.000982749 0.0670515 0.0622906 42 2150 36 6.95648e+06 159232 744469. 2576.02 13.25 0.539975 0.484499 27202 183097 -1 1528 21 1028 1418 144015 33202 3.80812 3.80812 -133.284 -3.80812 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0445176 0.0402513 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 10.23 vpr 63.79 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.8 MiB 0.47 668 13663 3947 7828 1888 63.8 MiB 0.16 0.00 3.70334 -128.05 -3.70334 3.70334 0.98 0.00120454 0.00112008 0.0902086 0.0839485 48 2111 25 6.95648e+06 303989 865456. 2994.66 6.04 0.529673 0.478764 28354 207349 -1 1581 19 1606 2143 172213 39730 3.82796 3.82796 -136.28 -3.82796 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0470027 0.0427347 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 11.43 vpr 64.22 MiB 0.05 7484 -1 -1 1 0.04 -1 -1 30568 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.4 MiB 1.20 791 14779 5223 7361 2195 64.2 MiB 0.18 0.00 3.66119 -126.81 -3.66119 3.66119 0.99 0.00138623 0.00128754 0.104176 0.0967741 56 2049 23 6.95648e+06 390843 973134. 3367.25 6.29 0.605809 0.546007 29794 239141 -1 1779 25 1583 2432 213076 46201 3.93326 3.93326 -132.339 -3.93326 0 0 1.19926e+06 4149.71 0.35 0.14 0.37 -1 -1 0.35 0.0666125 0.0601534 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.41 vpr 62.76 MiB 0.03 6836 -1 -1 1 0.02 -1 -1 30580 -1 -1 13 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 24.3 MiB 1.37 352 7809 2730 3957 1122 62.8 MiB 0.07 0.00 2.19726 -66.7151 -2.19726 2.19726 0.99 0.000667052 0.000618151 0.0376557 0.0349216 46 935 44 6.95648e+06 188184 828058. 2865.25 2.55 0.200871 0.179751 28066 200906 -1 604 17 553 688 32667 9718 2.22483 2.22483 -65.3089 -2.22483 0 0 1.01997e+06 3529.29 0.30 0.05 0.30 -1 -1 0.30 0.0239531 0.0215629 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 21.84 vpr 63.85 MiB 0.03 7252 -1 -1 1 0.03 -1 -1 30204 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.9 MiB 0.93 755 9836 4062 5477 297 63.8 MiB 0.13 0.00 4.01986 -136.639 -4.01986 4.01986 0.99 0.00113376 0.00105438 0.0726147 0.0675848 44 2862 26 6.95648e+06 173708 787024. 2723.27 17.19 0.573793 0.517586 27778 195446 -1 2058 22 1781 2692 253008 56109 4.24177 4.24177 -149.972 -4.24177 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0496505 0.0450813 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.93 vpr 62.91 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30320 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.26 731 9906 3689 5081 1136 62.9 MiB 0.09 0.00 2.15326 -87.6492 -2.15326 2.15326 0.99 0.000749662 0.000690392 0.0494597 0.0458165 34 1771 48 6.95648e+06 115805 618332. 2139.56 2.27 0.208706 0.186967 25762 151098 -1 1539 17 721 909 103019 20871 1.92908 1.92908 -90.4103 -1.92908 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0251495 0.0226815 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 13.53 vpr 63.84 MiB 0.06 7180 -1 -1 1 0.03 -1 -1 30576 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 376 288 1 187 90 17 17 289 -1 unnamed_device 24.9 MiB 0.55 780 14763 5307 7672 1784 63.8 MiB 0.17 0.00 3.76019 -137.184 -3.76019 3.76019 0.98 0.00122082 0.00113492 0.0923293 0.0856684 44 2883 40 6.95648e+06 376368 787024. 2723.27 9.14 0.58793 0.530894 27778 195446 -1 1969 26 2138 3287 326762 74580 3.99116 3.99116 -147.797 -3.99116 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0605192 0.0548572 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 9.45 vpr 63.84 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.8 MiB 0.33 983 14168 4026 8379 1763 63.8 MiB 0.16 0.00 3.0955 -119.792 -3.0955 3.0955 0.96 0.00114862 0.00106823 0.0815453 0.0758515 40 2319 19 6.95648e+06 405319 706193. 2443.58 5.52 0.508102 0.458829 26914 176310 -1 2189 19 1512 2232 212676 43695 3.16997 3.16997 -125.697 -3.16997 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0444626 0.0404022 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.08 vpr 64.30 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 25.5 MiB 0.41 796 18308 6118 9933 2257 64.3 MiB 0.22 0.00 3.79319 -137.71 -3.79319 3.79319 0.98 0.00129343 0.00120223 0.116915 0.108584 46 2581 34 6.95648e+06 405319 828058. 2865.25 3.85 0.405632 0.367949 28066 200906 -1 2033 22 1948 3146 248953 53320 4.10836 4.10836 -149.388 -4.10836 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0553668 0.0501996 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 9.25 vpr 63.15 MiB 0.04 7144 -1 -1 1 0.04 -1 -1 30180 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 294 246 1 146 74 17 17 289 -1 unnamed_device 24.6 MiB 0.88 513 12009 5130 6527 352 63.1 MiB 0.06 0.00 2.8982 -102.347 -2.8982 2.8982 0.96 0.000366703 0.000337467 0.030607 0.0282146 44 2043 34 6.95648e+06 144757 787024. 2723.27 4.95 0.356587 0.318606 27778 195446 -1 1507 19 1123 1696 126769 31535 3.34062 3.34062 -116.575 -3.34062 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.037906 0.0342688 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 9.17 vpr 63.20 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30172 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 522 8134 3289 4515 330 63.2 MiB 0.10 0.00 3.1175 -109.73 -3.1175 3.1175 0.99 0.000983798 0.00091375 0.0543613 0.0505355 42 2178 41 6.95648e+06 173708 744469. 2576.02 4.99 0.385413 0.346011 27202 183097 -1 1317 22 1276 1636 139031 31782 2.89447 2.89447 -112.088 -2.89447 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0428376 0.0386859 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 9.53 vpr 63.23 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.4 MiB 0.62 506 10257 3642 4936 1679 63.2 MiB 0.11 0.00 3.0435 -98.1657 -3.0435 3.0435 0.98 0.000813104 0.000746581 0.0640545 0.0595279 46 1657 24 6.95648e+06 188184 828058. 2865.25 5.28 0.348945 0.313514 28066 200906 -1 1150 20 1019 1564 108656 27191 2.74227 2.74227 -95.5294 -2.74227 0 0 1.01997e+06 3529.29 0.30 0.08 0.30 -1 -1 0.30 0.0377071 0.0340483 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 6.67 vpr 63.19 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.5 MiB 0.29 692 9374 3935 5270 169 63.2 MiB 0.12 0.00 2.93285 -115.319 -2.93285 2.93285 0.99 0.000977949 0.000909434 0.0632609 0.058941 42 2234 49 6.95648e+06 144757 744469. 2576.02 2.78 0.271698 0.245623 27202 183097 -1 1708 22 1556 2237 206395 42647 3.08382 3.08382 -122.855 -3.08382 0 0 949917. 3286.91 0.28 0.11 0.27 -1 -1 0.28 0.0428951 0.0387736 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 16.44 vpr 63.55 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30344 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.6 MiB 0.29 589 13443 5223 6848 1372 63.5 MiB 0.15 0.00 3.0875 -112.189 -3.0875 3.0875 0.99 0.00100042 0.000928862 0.0769717 0.0715024 40 2277 40 6.95648e+06 303989 706193. 2443.58 12.52 0.555527 0.498537 26914 176310 -1 1745 19 1304 2027 186414 43424 3.91072 3.91072 -131.055 -3.91072 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0425903 0.0387339 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.98 vpr 63.43 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30244 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.79 508 10219 3550 4648 2021 63.4 MiB 0.11 0.00 2.43392 -85.0275 -2.43392 2.43392 1.01 0.000998902 0.00092723 0.0635293 0.0590102 48 1406 22 6.95648e+06 260562 865456. 2994.66 5.48 0.381922 0.343029 28354 207349 -1 1341 27 1416 2051 204617 61634 2.31283 2.31283 -91.5228 -2.31283 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0512219 0.0460836 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 27.04 vpr 64.18 MiB 0.04 7300 -1 -1 1 0.03 -1 -1 30640 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.83 1016 13340 4236 7350 1754 64.2 MiB 0.16 0.00 3.83055 -140.164 -3.83055 3.83055 0.99 0.000508336 0.000468147 0.0880767 0.0819449 44 3310 50 6.95648e+06 405319 787024. 2723.27 22.24 0.707388 0.63904 27778 195446 -1 2421 24 2374 3685 291341 60782 4.19802 4.19802 -149.222 -4.19802 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0653393 0.0593576 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.62 vpr 63.98 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30656 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.99 765 12739 4335 6808 1596 64.0 MiB 0.16 0.00 3.0804 -114.704 -3.0804 3.0804 0.98 0.00127855 0.00118713 0.083841 0.0778592 40 2322 24 6.95648e+06 390843 706193. 2443.58 2.97 0.358676 0.324923 26914 176310 -1 2000 19 1839 2664 246271 54021 3.41462 3.41462 -131.742 -3.41462 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0493424 0.0448524 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.41 vpr 63.66 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30568 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.8 MiB 1.12 526 12362 5185 6683 494 63.7 MiB 0.14 0.00 3.26916 -109.86 -3.26916 3.26916 1.01 0.00108087 0.00100196 0.0835485 0.0775421 48 1814 35 6.95648e+06 217135 865456. 2994.66 2.56 0.318212 0.287427 28354 207349 -1 1538 20 1117 1600 147932 40488 3.14017 3.14017 -116.847 -3.14017 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0450726 0.0408353 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 8.25 vpr 63.85 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30364 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.67 824 12954 4665 6336 1953 63.8 MiB 0.17 0.00 3.0625 -110.593 -3.0625 3.0625 0.98 0.00123818 0.00115 0.102199 0.0950479 36 3159 40 6.95648e+06 202660 648988. 2245.63 3.84 0.359816 0.326796 26050 158493 -1 2432 28 2065 3159 450209 127089 3.67442 3.67442 -132.021 -3.67442 0 0 828058. 2865.25 0.25 0.21 0.23 -1 -1 0.25 0.0659864 0.0597338 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.70 vpr 63.83 MiB 0.03 7448 -1 -1 1 0.04 -1 -1 30680 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 2.31 778 10998 4559 6059 380 63.8 MiB 0.16 0.00 4.63397 -149.774 -4.63397 4.63397 1.05 0.00137851 0.00128104 0.0962698 0.0894653 44 3099 44 6.95648e+06 202660 787024. 2723.27 4.64 0.438389 0.396119 27778 195446 -1 1992 20 1511 2265 207568 44955 4.44411 4.44411 -151.741 -4.44411 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.055053 0.0497945 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 12.01 vpr 63.81 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30328 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 31 32 413 333 1 180 76 17 17 289 -1 unnamed_device 24.8 MiB 1.44 719 13676 5548 6572 1556 63.8 MiB 0.18 0.00 4.52934 -135.424 -4.52934 4.52934 0.98 0.00128241 0.00119122 0.112709 0.104762 56 2131 22 6.95648e+06 188184 973134. 3367.25 6.68 0.578471 0.522915 29794 239141 -1 1887 21 1253 1978 210500 47033 4.14196 4.14196 -142.349 -4.14196 0 0 1.19926e+06 4149.71 0.34 0.12 0.38 -1 -1 0.34 0.053757 0.0487501 75 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 11.36 vpr 63.90 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30512 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.9 MiB 0.89 804 14128 5884 7757 487 63.9 MiB 0.17 0.00 3.1856 -115.963 -3.1856 3.1856 0.98 0.0012345 0.00114638 0.0930489 0.086428 46 2514 25 6.95648e+06 361892 828058. 2865.25 6.67 0.498786 0.45055 28066 200906 -1 1860 22 1647 2448 203706 42981 3.11687 3.11687 -120.842 -3.11687 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0538106 0.0488347 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 27.86 vpr 63.86 MiB 0.04 7080 -1 -1 1 0.04 -1 -1 30644 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 24.9 MiB 0.54 956 10743 3793 5013 1937 63.9 MiB 0.14 0.00 3.77119 -139.239 -3.77119 3.77119 0.98 0.00126265 0.0011728 0.0706901 0.0656558 40 2758 24 6.95648e+06 376368 706193. 2443.58 23.63 0.630749 0.568681 26914 176310 -1 2378 23 2144 3292 360196 72622 4.34496 4.34496 -158.274 -4.34496 0 0 926341. 3205.33 0.27 0.16 0.26 -1 -1 0.27 0.056777 0.0514519 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.06 vpr 64.35 MiB 0.05 7444 -1 -1 1 0.03 -1 -1 30740 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.3 MiB 1.08 1006 8087 1735 5255 1097 64.3 MiB 0.12 0.00 3.89228 -139.02 -3.89228 3.89228 0.98 0.0015396 0.00143156 0.0619362 0.0576413 48 2761 21 6.95648e+06 448746 865456. 2994.66 5.20 0.558665 0.504074 28354 207349 -1 2427 19 2048 3132 276948 58643 4.31212 4.31212 -147.251 -4.31212 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.059277 0.0538824 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 9.42 vpr 63.47 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30756 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.5 MiB 0.64 589 10304 4334 5652 318 63.5 MiB 0.12 0.00 3.38836 -119.14 -3.38836 3.38836 0.98 0.00100208 0.000930741 0.0691333 0.0642821 36 2347 36 6.95648e+06 159232 648988. 2245.63 5.34 0.307649 0.27735 26050 158493 -1 1719 22 1495 2076 186996 42578 3.41477 3.41477 -128.733 -3.41477 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0439596 0.0397129 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 24.95 vpr 64.02 MiB 0.05 7288 -1 -1 1 0.05 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65552 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 25.0 MiB 0.74 807 13959 3748 8318 1893 64.0 MiB 0.17 0.00 3.90275 -135.486 -3.90275 3.90275 0.99 0.00126168 0.00117348 0.0907499 0.0844479 42 2973 38 6.95648e+06 390843 744469. 2576.02 20.48 0.642875 0.579813 27202 183097 -1 2159 22 1977 3093 304046 68420 3.97722 3.97722 -145.933 -3.97722 0 0 949917. 3286.91 0.31 0.15 0.27 -1 -1 0.31 0.0542974 0.0492679 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.04 vpr 64.28 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30596 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 25.3 MiB 0.86 803 11145 4511 6144 490 64.3 MiB 0.14 0.00 3.29596 -117.163 -3.29596 3.29596 0.99 0.00125833 0.00116827 0.0727556 0.067591 48 2705 38 6.95648e+06 376368 865456. 2994.66 4.42 0.370277 0.334709 28354 207349 -1 2124 21 1725 2856 273945 64596 3.03367 3.03367 -122.511 -3.03367 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0523659 0.0475053 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 11.50 vpr 63.71 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.84 760 7738 3134 4374 230 63.7 MiB 0.05 0.00 3.65689 -135.736 -3.65689 3.65689 1.00 0.000426044 0.000391576 0.0226105 0.0209014 48 2641 41 6.95648e+06 188184 865456. 2994.66 7.04 0.514833 0.463855 28354 207349 -1 2296 21 1882 3139 348413 73584 4.31386 4.31386 -153.986 -4.31386 0 0 1.05005e+06 3633.38 0.31 0.15 0.27 -1 -1 0.31 0.0491496 0.0446974 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.53 vpr 64.14 MiB 0.04 7344 -1 -1 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65676 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 25.1 MiB 1.54 808 11991 3810 6067 2114 64.1 MiB 0.15 0.00 3.1768 -117.392 -3.1768 3.1768 0.98 0.00129765 0.00120534 0.0841847 0.0782236 48 1969 30 6.95648e+06 332941 865456. 2994.66 5.26 0.462978 0.417323 28354 207349 -1 1580 21 1420 2292 139850 37221 3.91697 3.91697 -124.337 -3.91697 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0537923 0.0487806 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.50 vpr 63.92 MiB 0.07 7264 -1 -1 1 0.03 -1 -1 30416 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.93 754 13547 4133 6686 2728 63.9 MiB 0.15 0.00 3.20182 -116.76 -3.20182 3.20182 0.98 0.00125772 0.0011686 0.0856013 0.0795655 52 2419 44 6.95648e+06 405319 926341. 3205.33 6.72 0.535134 0.482773 29218 227130 -1 1703 26 1559 2317 183233 43957 3.32347 3.32347 -122.232 -3.32347 0 0 1.14541e+06 3963.36 0.33 0.13 0.34 -1 -1 0.33 0.0695458 0.0632644 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 9.26 vpr 64.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30476 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65612 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.1 MiB 0.61 757 10649 2685 6746 1218 64.1 MiB 0.14 0.00 3.0976 -113.249 -3.0976 3.0976 0.99 0.00129491 0.00120175 0.0700403 0.0651406 46 2339 36 6.95648e+06 405319 828058. 2865.25 4.91 0.375402 0.339653 28066 200906 -1 1586 24 1814 2753 205756 46457 3.70132 3.70132 -124.198 -3.70132 0 0 1.01997e+06 3529.29 0.30 0.13 0.29 -1 -1 0.30 0.0598513 0.0542383 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 22.77 vpr 63.91 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30548 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.58 928 15410 5078 8249 2083 63.9 MiB 0.18 0.00 3.79319 -139.701 -3.79319 3.79319 0.99 0.00122044 0.0011355 0.0939675 0.0874273 38 2834 46 6.95648e+06 405319 678818. 2348.85 18.48 0.659735 0.595572 26626 170182 -1 2183 22 1991 3160 279975 56007 4.28086 4.28086 -153.838 -4.28086 0 0 902133. 3121.57 0.26 0.16 0.24 -1 -1 0.26 0.0552503 0.0498601 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 20.41 vpr 64.23 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 30656 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.5 MiB 0.92 943 13300 4128 7027 2145 64.2 MiB 0.15 0.00 3.71121 -138.47 -3.71121 3.71121 0.99 0.00127866 0.0011877 0.0820563 0.0761593 40 2488 24 6.95648e+06 434271 706193. 2443.58 15.80 0.632543 0.570388 26914 176310 -1 2276 23 2178 3158 331073 66128 4.28866 4.28866 -156.587 -4.28866 0 0 926341. 3205.33 0.31 0.16 0.26 -1 -1 0.31 0.0575256 0.0521392 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.14 vpr 64.01 MiB 0.03 7416 -1 -1 1 0.04 -1 -1 30508 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.32 822 11983 4768 6508 707 64.0 MiB 0.15 0.00 4.19045 -134.89 -4.19045 4.19045 0.98 0.00130376 0.00120647 0.0849412 0.0788099 46 2816 38 6.95648e+06 361892 828058. 2865.25 6.14 0.576651 0.518593 28066 200906 -1 2033 19 1439 2327 179053 39508 3.66557 3.66557 -134.349 -3.66557 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0521114 0.0471591 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 9.92 vpr 64.09 MiB 0.03 7304 -1 -1 1 0.03 -1 -1 30616 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65624 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 1.13 916 10346 4298 5834 214 64.1 MiB 0.15 0.00 3.78635 -132.849 -3.78635 3.78635 0.98 0.00133472 0.00123996 0.0875417 0.0813136 40 2838 43 6.95648e+06 188184 706193. 2443.58 5.11 0.420033 0.379864 26914 176310 -1 2445 22 1907 3260 314992 63860 4.14976 4.14976 -147.909 -4.14976 0 0 926341. 3205.33 0.29 0.15 0.26 -1 -1 0.29 0.0578962 0.0524889 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.03 vpr 63.49 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30724 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.7 MiB 0.18 593 10839 4452 5958 429 63.5 MiB 0.11 0.00 3.1395 -116.22 -3.1395 3.1395 0.98 0.000937589 0.000877211 0.0604024 0.0561135 54 1788 32 6.95648e+06 332941 949917. 3286.91 4.08 0.350346 0.315332 29506 232905 -1 1382 25 1398 2160 179924 41587 2.96337 2.96337 -115.305 -2.96337 0 0 1.17392e+06 4061.99 0.34 0.11 0.36 -1 -1 0.34 0.0490939 0.0442826 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.01 vpr 63.71 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30500 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.7 MiB 1.11 610 8444 3495 4676 273 63.7 MiB 0.11 0.00 3.0405 -112.422 -3.0405 3.0405 0.98 0.00113678 0.00105346 0.0651207 0.0604356 48 2004 48 6.95648e+06 144757 865456. 2994.66 4.19 0.354845 0.319893 28354 207349 -1 1612 19 1382 2072 185876 44236 3.09662 3.09662 -124.151 -3.09662 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0439044 0.0397565 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 11.95 vpr 63.95 MiB 0.05 7484 -1 -1 1 0.03 -1 -1 30784 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1002 14152 3897 8059 2196 63.9 MiB 0.19 0.00 4.44024 -157.04 -4.44024 4.44024 0.98 0.00148225 0.0013786 0.103044 0.095906 52 3564 30 6.95648e+06 434271 926341. 3205.33 7.26 0.691151 0.625069 29218 227130 -1 2302 24 2667 4260 364530 75264 4.96581 4.96581 -170.001 -4.96581 0 0 1.14541e+06 3963.36 0.34 0.18 0.34 -1 -1 0.34 0.0695259 0.063121 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 10.55 vpr 64.00 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65532 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 0.93 717 11983 4638 6220 1125 64.0 MiB 0.14 0.00 3.1457 -117.079 -3.1457 3.1457 0.98 0.00121012 0.00112477 0.0772189 0.0718037 48 1937 29 6.95648e+06 347416 865456. 2994.66 5.84 0.467802 0.422679 28354 207349 -1 1662 31 1891 2479 284780 87372 3.04172 3.04172 -122.203 -3.04172 0 0 1.05005e+06 3633.38 0.31 0.17 0.31 -1 -1 0.31 0.0699174 0.0632636 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 10.33 vpr 63.38 MiB 0.07 7088 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64904 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 530 10406 4243 5603 560 63.4 MiB 0.11 0.00 3.0735 -106.794 -3.0735 3.0735 0.98 0.000980291 0.000910437 0.06127 0.0569564 56 1527 23 6.95648e+06 275038 973134. 3367.25 6.20 0.422991 0.379681 29794 239141 -1 1354 24 1281 1926 155804 37474 3.10097 3.10097 -112.855 -3.10097 0 0 1.19926e+06 4149.71 0.35 0.10 0.37 -1 -1 0.35 0.0460151 0.0414564 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 22.52 vpr 64.38 MiB 0.04 7528 -1 -1 1 0.04 -1 -1 30968 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.4 MiB 2.00 1126 15215 3732 10105 1378 64.4 MiB 0.21 0.00 4.49524 -160.999 -4.49524 4.49524 0.99 0.00159731 0.00148492 0.117542 0.109205 56 2766 31 6.95648e+06 448746 973134. 3367.25 16.46 0.884087 0.798218 29794 239141 -1 2466 24 2517 3781 345311 68395 4.77311 4.77311 -173.824 -4.77311 0 0 1.19926e+06 4149.71 0.34 0.18 0.37 -1 -1 0.34 0.074397 0.0675008 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.54 vpr 63.81 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 25.1 MiB 1.09 804 14375 4842 7223 2310 63.8 MiB 0.16 0.00 3.73321 -136.441 -3.73321 3.73321 0.99 0.00123147 0.00114419 0.089162 0.0827205 40 2453 35 6.95648e+06 405319 706193. 2443.58 3.84 0.373437 0.337874 26914 176310 -1 2073 22 2026 2741 250056 52971 3.89396 3.89396 -150.363 -3.89396 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0537469 0.0487919 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 8.56 vpr 63.44 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 657 12763 5246 7178 339 63.4 MiB 0.14 0.00 3.05815 -115.564 -3.05815 3.05815 0.99 0.000989539 0.000920402 0.0679111 0.0632117 44 2241 49 6.95648e+06 347416 787024. 2723.27 4.57 0.323935 0.292647 27778 195446 -1 1698 23 1579 2531 241111 51330 3.22012 3.22012 -121.91 -3.22012 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0442191 0.0399352 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 12.60 vpr 64.25 MiB 0.03 7308 -1 -1 1 0.03 -1 -1 30868 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.1 MiB 0.52 924 14567 5117 6799 2651 64.2 MiB 0.18 0.00 4.52824 -160.177 -4.52824 4.52824 0.97 0.00143003 0.00133141 0.100172 0.0931837 58 2558 31 6.95648e+06 448746 997811. 3452.63 8.10 0.66961 0.604262 30370 251734 -1 2144 25 2580 4437 383974 80348 4.89221 4.89221 -168.37 -4.89221 0 0 1.25153e+06 4330.55 0.37 0.18 0.40 -1 -1 0.37 0.0696476 0.0633166 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 19.35 vpr 63.48 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.7 MiB 0.45 618 10614 4475 5915 224 63.5 MiB 0.12 0.00 2.92185 -113.699 -2.92185 2.92185 0.99 0.000982624 0.000907992 0.0696309 0.0647511 42 2204 34 6.95648e+06 144757 744469. 2576.02 15.29 0.497851 0.447471 27202 183097 -1 1606 20 1435 2043 183357 41408 3.26222 3.26222 -126.682 -3.26222 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0397538 0.0359691 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 20.25 vpr 63.52 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.7 MiB 0.81 581 11423 4387 5607 1429 63.5 MiB 0.12 0.00 3.09676 -109.06 -3.09676 3.09676 0.99 0.000986455 0.000916858 0.0651026 0.0605192 38 2220 28 6.95648e+06 303989 678818. 2348.85 15.89 0.44603 0.400521 26626 170182 -1 1705 19 1262 1896 159278 35800 3.29047 3.29047 -118.286 -3.29047 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0380324 0.0343787 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.26 vpr 64.02 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65560 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 25.0 MiB 1.37 706 12856 4700 6071 2085 64.0 MiB 0.16 0.00 3.39446 -107.663 -3.39446 3.39446 0.98 0.00123345 0.00114655 0.094448 0.0878423 48 2636 29 6.95648e+06 289514 865456. 2994.66 4.05 0.364952 0.330678 28354 207349 -1 1955 25 1755 2812 271882 58905 3.32357 3.32357 -116.839 -3.32357 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0588754 0.0532892 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.55 vpr 63.91 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30652 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 407 319 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.86 916 13443 5641 5955 1847 63.9 MiB 0.19 0.00 3.65689 -139.305 -3.65689 3.65689 0.99 0.00127479 0.00118363 0.112309 0.104392 38 2521 28 6.95648e+06 188184 678818. 2348.85 3.02 0.352538 0.320618 26626 170182 -1 2038 23 2099 2802 225317 45977 4.20396 4.20396 -156.519 -4.20396 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0580746 0.0527116 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.92 vpr 63.98 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30680 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 25.0 MiB 1.70 890 14345 5510 6931 1904 64.0 MiB 0.16 0.00 3.74419 -138.408 -3.74419 3.74419 1.00 0.00128405 0.00119342 0.0830781 0.0771367 48 2583 38 6.95648e+06 361892 865456. 2994.66 3.44 0.388199 0.351601 28354 207349 -1 2283 22 2043 3265 366876 71922 4.09626 4.09626 -147.38 -4.09626 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.055277 0.0501172 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 17.86 vpr 63.73 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30464 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.9 MiB 1.13 685 10813 4185 5763 865 63.7 MiB 0.12 0.00 3.05815 -117.015 -3.05815 3.05815 0.98 0.00109008 0.00101154 0.0638342 0.0592808 38 2543 44 6.95648e+06 347416 678818. 2348.85 13.11 0.5337 0.47933 26626 170182 -1 1775 24 1664 2547 243914 50177 3.66012 3.66012 -130.469 -3.66012 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0504829 0.0455943 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.39 vpr 63.55 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.9 MiB 1.41 614 10105 3298 5142 1665 63.5 MiB 0.13 0.00 3.30215 -110.502 -3.30215 3.30215 0.98 0.00108678 0.00100782 0.0752186 0.0698234 36 2327 28 6.95648e+06 144757 648988. 2245.63 4.52 0.318864 0.28767 26050 158493 -1 1751 21 1238 2000 187568 39025 3.20132 3.20132 -121.25 -3.20132 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0453424 0.0409098 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.70 vpr 63.73 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.7 MiB 0.93 894 12345 3722 6620 2003 63.7 MiB 0.15 0.00 3.13882 -115.049 -3.13882 3.13882 0.99 0.00119102 0.00110764 0.083223 0.0773249 38 2443 25 6.95648e+06 318465 678818. 2348.85 2.26 0.290951 0.263805 26626 170182 -1 2079 20 1592 2318 183339 38278 3.05087 3.05087 -119.658 -3.05087 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0481188 0.0436101 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 10.71 vpr 63.69 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.8 MiB 0.86 684 10156 4202 5354 600 63.7 MiB 0.13 0.00 4.24545 -126.653 -4.24545 4.24545 0.84 0.00108127 0.00100556 0.0731126 0.0681531 38 2689 26 6.95648e+06 231611 678818. 2348.85 6.36 0.313377 0.283064 26626 170182 -1 1926 20 1595 2394 207734 45081 4.31207 4.31207 -140.039 -4.31207 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0455779 0.0415185 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 10.58 vpr 63.49 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30180 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.6 MiB 0.81 566 9839 4104 5334 401 63.5 MiB 0.12 0.00 3.1757 -110.199 -3.1757 3.1757 0.99 0.00103546 0.000960583 0.068704 0.0638296 46 1917 34 6.95648e+06 173708 828058. 2865.25 6.11 0.416023 0.374172 28066 200906 -1 1343 21 1256 1704 117033 30642 2.90357 2.90357 -112.072 -2.90357 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0446135 0.0404036 62 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.72 vpr 63.76 MiB 0.04 7168 -1 -1 1 0.03 -1 -1 30448 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.8 MiB 1.25 777 7669 3175 4304 190 63.8 MiB 0.10 0.00 3.0765 -113.072 -3.0765 3.0765 0.99 0.00111408 0.00103385 0.0582152 0.0540414 36 2383 22 6.95648e+06 144757 648988. 2245.63 3.95 0.294821 0.265923 26050 158493 -1 2008 23 1331 2166 203798 40405 3.01787 3.01787 -119.832 -3.01787 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0503118 0.0455113 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 7.21 vpr 63.72 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30320 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.24 795 9448 3406 4746 1296 63.7 MiB 0.11 0.00 3.89245 -136.133 -3.89245 3.89245 0.98 0.00113302 0.00105355 0.0581389 0.0540957 50 2526 26 6.95648e+06 361892 902133. 3121.57 3.20 0.307364 0.27819 28642 213929 -1 2071 24 2031 3069 307106 65451 3.94102 3.94102 -144.509 -3.94102 0 0 1.08113e+06 3740.92 0.31 0.15 0.32 -1 -1 0.31 0.0535218 0.0485272 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 11.93 vpr 64.18 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30684 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 25.4 MiB 1.29 901 16819 7044 9402 373 64.2 MiB 0.20 0.00 3.78219 -139.905 -3.78219 3.78219 0.99 0.00127867 0.0011881 0.109295 0.101507 48 2877 25 6.95648e+06 390843 865456. 2994.66 6.85 0.547469 0.495042 28354 207349 -1 2295 22 2014 3379 332711 66575 4.31066 4.31066 -152.488 -4.31066 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0556686 0.0504927 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.09 vpr 63.88 MiB 0.03 7276 -1 -1 1 0.03 -1 -1 30392 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.65 831 9336 3198 4890 1248 63.9 MiB 0.12 0.00 3.70819 -135.715 -3.70819 3.70819 0.99 0.00130003 0.00120908 0.0647797 0.0602269 48 2687 35 6.95648e+06 376368 865456. 2994.66 6.68 0.550109 0.496496 28354 207349 -1 2370 21 1886 2993 347936 74143 4.28896 4.28896 -154.004 -4.28896 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.054154 0.0491653 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 10.37 vpr 63.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.6 MiB 1.02 826 13351 4666 6922 1763 63.8 MiB 0.16 0.00 3.75545 -130.629 -3.75545 3.75545 0.98 0.00126293 0.00117236 0.0848991 0.0789506 48 2859 29 6.95648e+06 390843 865456. 2994.66 5.60 0.355775 0.322576 28354 207349 -1 2297 22 1832 3033 314980 70002 4.13191 4.13191 -145.639 -4.13191 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0547482 0.0497089 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 9.52 vpr 63.47 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30380 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.9 MiB 0.55 555 9684 4044 5292 348 63.5 MiB 0.11 0.00 3.0515 -108.878 -3.0515 3.0515 0.98 0.000980537 0.00091053 0.0640846 0.0595858 44 1956 21 6.95648e+06 173708 787024. 2723.27 5.41 0.427264 0.3838 27778 195446 -1 1457 17 1121 1630 133543 30105 3.11197 3.11197 -110.998 -3.11197 0 0 997811. 3452.63 0.29 0.08 0.29 -1 -1 0.29 0.0351261 0.0317822 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 10.84 vpr 63.93 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65460 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 25.0 MiB 0.85 676 11487 4792 6044 651 63.9 MiB 0.14 0.00 3.81154 -129.829 -3.81154 3.81154 0.98 0.00121282 0.00112669 0.0891296 0.0828708 52 2219 23 6.95648e+06 217135 926341. 3205.33 6.18 0.567965 0.512628 29218 227130 -1 1627 20 1595 2142 160674 38157 4.14282 4.14282 -138.761 -4.14282 0 0 1.14541e+06 3963.36 0.33 0.11 0.34 -1 -1 0.33 0.0487961 0.0442821 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.32 vpr 64.26 MiB 0.05 7408 -1 -1 1 0.03 -1 -1 31020 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.4 MiB 1.45 807 14351 4061 7900 2390 64.3 MiB 0.18 0.00 3.71619 -135.355 -3.71619 3.71619 0.99 0.00139842 0.00129846 0.0970771 0.0901428 44 3100 43 6.95648e+06 448746 787024. 2723.27 5.07 0.417622 0.377463 27778 195446 -1 1985 23 2075 3174 235264 52354 3.89886 3.89886 -145.897 -3.89886 0 0 997811. 3452.63 0.29 0.14 0.29 -1 -1 0.29 0.0623078 0.0562868 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.66 vpr 63.87 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 425 341 1 182 86 17 17 289 -1 unnamed_device 24.9 MiB 0.87 755 11426 4664 6319 443 63.9 MiB 0.16 0.00 3.965 -138.995 -3.965 3.965 0.99 0.00138711 0.00129383 0.0882689 0.0824771 44 2748 30 6.95648e+06 332941 787024. 2723.27 2.99 0.347514 0.316679 27778 195446 -1 1925 21 1733 2588 195843 42951 4.24182 4.24182 -151.091 -4.24182 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0550166 0.0498719 82 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.39 vpr 63.93 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65468 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.9 MiB 1.34 784 14872 4881 8007 1984 63.9 MiB 0.19 0.00 3.30586 -112.006 -3.30586 3.30586 0.98 0.0012422 0.00115523 0.106838 0.0992673 44 2211 22 6.95648e+06 260562 787024. 2723.27 2.31 0.307546 0.279579 27778 195446 -1 1808 23 1635 2397 174263 37732 3.11687 3.11687 -117.869 -3.11687 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0564368 0.0511544 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 11.21 vpr 63.80 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30716 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 1.64 774 12628 4296 6544 1788 63.8 MiB 0.18 0.00 3.65989 -133.7 -3.65989 3.65989 1.00 0.00128297 0.00119253 0.103161 0.0959781 48 2724 47 6.95648e+06 188184 865456. 2994.66 5.59 0.434184 0.393861 28354 207349 -1 2381 31 2464 4180 640489 169401 4.45816 4.45816 -159.631 -4.45816 0 0 1.05005e+06 3633.38 0.31 0.26 0.31 -1 -1 0.31 0.0748404 0.0677389 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 11.15 vpr 63.63 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.6 MiB 1.03 660 10343 3670 4948 1725 63.6 MiB 0.13 0.00 3.14182 -102.041 -3.14182 3.14182 0.99 0.00119773 0.0011134 0.0728799 0.0677653 50 1900 27 6.95648e+06 318465 902133. 3121.57 6.36 0.548488 0.493597 28642 213929 -1 1557 23 1676 2498 188790 47233 3.21347 3.21347 -109.188 -3.21347 0 0 1.08113e+06 3740.92 0.36 0.12 0.32 -1 -1 0.36 0.0540348 0.0488612 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 15.18 vpr 63.48 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 0.80 627 9219 3869 5158 192 63.5 MiB 0.11 0.00 2.93285 -114.246 -2.93285 2.93285 0.99 0.000984465 0.00091528 0.0607947 0.0565716 44 2157 46 6.95648e+06 144757 787024. 2723.27 10.66 0.463511 0.416383 27778 195446 -1 1491 21 1375 2102 189121 40846 3.16702 3.16702 -119.21 -3.16702 0 0 997811. 3452.63 0.42 0.11 0.28 -1 -1 0.42 0.041941 0.0380045 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.99 vpr 64.04 MiB 0.04 7208 -1 -1 1 0.04 -1 -1 30444 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 25.2 MiB 3.27 762 15688 5820 7154 2714 64.0 MiB 0.18 0.00 3.77419 -136.123 -3.77419 3.77419 0.99 0.00130022 0.00120879 0.107971 0.100385 54 2277 44 6.95648e+06 347416 949917. 3286.91 3.71 0.428911 0.389227 29506 232905 -1 1772 20 1692 2537 205604 48355 3.85666 3.85666 -139.117 -3.85666 0 0 1.17392e+06 4061.99 0.41 0.13 0.36 -1 -1 0.41 0.0505952 0.0454105 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.36 vpr 63.82 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30548 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 25.1 MiB 0.64 800 13117 5732 6986 399 63.8 MiB 0.17 0.00 3.79019 -142.199 -3.79019 3.79019 0.99 0.0013049 0.00121308 0.107089 0.0996069 44 2781 26 6.95648e+06 188184 787024. 2723.27 2.98 0.391799 0.355299 27778 195446 -1 1932 22 2042 2779 218381 48516 3.99106 3.99106 -150.815 -3.99106 0 0 997811. 3452.63 0.33 0.13 0.29 -1 -1 0.33 0.0556459 0.0505661 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 7.60 vpr 63.59 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30548 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.8 MiB 1.10 588 11767 4876 6592 299 63.6 MiB 0.14 0.00 3.25495 -109.546 -3.25495 3.25495 0.99 0.00101206 0.000939289 0.0778226 0.0722179 40 2328 35 6.95648e+06 159232 706193. 2443.58 2.90 0.313581 0.282666 26914 176310 -1 1738 24 1245 1749 164930 38740 3.29047 3.29047 -120.877 -3.29047 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0472744 0.0426035 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 9.20 vpr 63.47 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30408 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 0.31 663 10304 4294 5762 248 63.5 MiB 0.12 0.00 3.1207 -115.753 -3.1207 3.1207 1.00 0.00095002 0.000882904 0.0659851 0.0614163 40 1926 23 6.95648e+06 159232 706193. 2443.58 5.17 0.397701 0.357747 26914 176310 -1 1713 22 1542 2194 208269 43469 3.03987 3.03987 -123.94 -3.03987 0 0 926341. 3205.33 0.28 0.11 0.26 -1 -1 0.28 0.0419118 0.0378143 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 9.53 vpr 63.86 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.9 MiB 1.24 777 14303 6009 7962 332 63.9 MiB 0.18 0.00 3.70334 -127.778 -3.70334 3.70334 0.99 0.00122004 0.00113346 0.100384 0.0932959 38 2547 42 6.95648e+06 275038 678818. 2348.85 4.63 0.400629 0.362803 26626 170182 -1 2002 22 1714 2362 193236 41883 3.74206 3.74206 -136.331 -3.74206 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0534031 0.0485189 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.45 vpr 63.77 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 30520 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.8 MiB 0.78 731 8626 3469 4889 268 63.8 MiB 0.11 0.00 3.81155 -129.752 -3.81155 3.81155 0.98 0.00125622 0.00116699 0.0641123 0.0595613 46 2314 33 6.95648e+06 260562 828058. 2865.25 5.99 0.530489 0.478038 28066 200906 -1 1730 30 1930 2714 262162 79606 3.93322 3.93322 -134.85 -3.93322 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0706918 0.06389 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 11.34 vpr 64.01 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30512 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.1 MiB 0.43 1044 8863 1910 6662 291 64.0 MiB 0.14 0.00 4.51819 -157.939 -4.51819 4.51819 0.98 0.00133063 0.00123833 0.0618026 0.0575727 64 2642 25 6.95648e+06 390843 1.08113e+06 3740.92 6.91 0.570439 0.516363 31522 276338 -1 2228 22 1909 3038 245874 50790 4.52571 4.52571 -160.837 -4.52571 0 0 1.36325e+06 4717.13 0.39 0.14 0.47 -1 -1 0.39 0.0589079 0.0536315 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 8.12 vpr 63.77 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30680 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.9 MiB 0.93 700 12980 4665 6454 1861 63.8 MiB 0.16 0.00 3.39626 -111.442 -3.39626 3.39626 0.98 0.00117439 0.00109134 0.0900672 0.0837455 44 2392 43 6.95648e+06 260562 787024. 2723.27 3.52 0.377164 0.341472 27778 195446 -1 1647 21 1700 2475 193814 43488 3.42857 3.42857 -119.787 -3.42857 0 0 997811. 3452.63 0.29 0.12 0.28 -1 -1 0.29 0.049344 0.044663 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.57 vpr 63.18 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30708 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.5 MiB 0.57 465 10459 4157 5359 943 63.2 MiB 0.11 0.00 3.15776 -95.8334 -3.15776 3.15776 0.98 0.000896934 0.000833416 0.063055 0.0586038 38 1515 38 6.95648e+06 217135 678818. 2348.85 2.49 0.274652 0.247176 26626 170182 -1 1145 24 1083 1361 116797 26385 2.95232 2.95232 -103.134 -2.95232 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.0425432 0.038326 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 10.19 vpr 64.28 MiB 0.03 7420 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.2 MiB 0.78 967 13513 4601 6349 2563 64.3 MiB 0.18 0.00 4.037 -140.402 -4.037 4.037 0.99 0.00152201 0.00141462 0.100771 0.0937118 54 3187 41 6.95648e+06 434271 949917. 3286.91 5.41 0.480708 0.435974 29506 232905 -1 2348 22 2355 4119 340687 74270 4.19956 4.19956 -151.003 -4.19956 0 0 1.17392e+06 4061.99 0.34 0.17 0.35 -1 -1 0.34 0.0653125 0.0593001 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 13.79 vpr 64.05 MiB 0.05 7356 -1 -1 1 0.04 -1 -1 30520 -1 -1 14 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65592 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 3.78 725 8716 3580 4721 415 64.1 MiB 0.13 0.00 4.38345 -145.342 -4.38345 4.38345 0.98 0.00134874 0.00125177 0.0768721 0.0715048 46 2754 28 6.95648e+06 202660 828058. 2865.25 6.21 0.544248 0.489842 28066 200906 -1 1934 24 1857 2800 250055 55568 4.44086 4.44086 -154.451 -4.44086 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0638779 0.0577303 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.81 vpr 63.84 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30412 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 25.0 MiB 2.84 511 11389 4311 5427 1651 63.8 MiB 0.14 0.00 3.0346 -106.082 -3.0346 3.0346 0.98 0.00111212 0.00103284 0.0841368 0.0780867 46 1797 28 6.95648e+06 144757 828058. 2865.25 5.27 0.426002 0.382435 28066 200906 -1 1328 36 1450 2182 167845 40190 3.00397 3.00397 -112.926 -3.00397 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.07195 0.0646776 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.97 vpr 63.66 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.6 MiB 0.44 783 13316 4555 6721 2040 63.7 MiB 0.16 0.00 4.13126 -136.078 -4.13126 4.13126 0.98 0.00120715 0.00110403 0.0871881 0.0810523 46 2787 43 6.95648e+06 318465 828058. 2865.25 5.78 0.383 0.346828 28066 200906 -1 1887 22 1715 2503 190576 42171 4.05132 4.05132 -145.11 -4.05132 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0520298 0.047194 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 19.91 vpr 64.12 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30628 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65660 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.2 MiB 0.85 989 12560 4640 6662 1258 64.1 MiB 0.19 0.00 4.078 -143.913 -4.078 4.078 0.99 0.00139743 0.00129953 0.107379 0.10003 40 2814 22 6.95648e+06 332941 706193. 2443.58 15.23 0.70808 0.639713 26914 176310 -1 2446 27 2455 3398 345474 78731 4.30102 4.30102 -154.417 -4.30102 0 0 926341. 3205.33 0.28 0.18 0.24 -1 -1 0.28 0.0726099 0.0657429 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.39 vpr 63.80 MiB 0.04 7296 -1 -1 1 0.03 -1 -1 30464 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.9 MiB 0.94 739 10762 4429 5782 551 63.8 MiB 0.13 0.00 3.27396 -108.751 -3.27396 3.27396 0.98 0.0011808 0.00109724 0.0748045 0.0695445 48 2392 30 6.95648e+06 289514 865456. 2994.66 2.63 0.2913 0.263927 28354 207349 -1 1882 28 1789 2837 382958 147629 3.05562 3.05562 -115.473 -3.05562 0 0 1.05005e+06 3633.38 0.31 0.19 0.31 -1 -1 0.31 0.0627348 0.0566988 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.29 vpr 64.20 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.4 MiB 0.54 907 15848 6161 8045 1642 64.2 MiB 0.17 0.00 3.79319 -139.401 -3.79319 3.79319 0.99 0.00128987 0.00119806 0.0944404 0.0877188 46 2620 45 6.95648e+06 492173 828058. 2865.25 4.95 0.418147 0.378803 28066 200906 -1 2066 26 2073 3027 300623 72024 3.92526 3.92526 -142.784 -3.92526 0 0 1.01997e+06 3529.29 0.30 0.16 0.30 -1 -1 0.30 0.0642153 0.0581189 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.40 vpr 63.99 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30508 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 25.3 MiB 0.58 796 15215 5678 7656 1881 64.0 MiB 0.17 0.00 3.0797 -116.569 -3.0797 3.0797 0.98 0.00127543 0.00118318 0.0935454 0.0868204 44 2325 45 6.95648e+06 448746 787024. 2723.27 5.08 0.545813 0.493033 27778 195446 -1 1899 20 1572 2121 188125 40063 3.16217 3.16217 -122.186 -3.16217 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0512327 0.0464509 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 12.02 vpr 63.34 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30592 -1 -1 13 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.8 MiB 3.11 413 8444 3429 4545 470 63.3 MiB 0.09 0.00 3.17976 -99.6274 -3.17976 3.17976 0.99 0.000906787 0.000838132 0.0544207 0.0506085 46 1350 28 6.95648e+06 188184 828058. 2865.25 5.35 0.386954 0.347132 28066 200906 -1 1058 51 1681 2103 141589 34372 2.75327 2.75327 -102.474 -2.75327 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0861729 0.0773019 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 9.85 vpr 63.55 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.8 MiB 0.73 584 9839 4132 5456 251 63.6 MiB 0.11 0.00 2.9814 -102.92 -2.9814 2.9814 0.98 0.00103922 0.000963619 0.0687487 0.063757 44 1680 46 6.95648e+06 144757 787024. 2723.27 5.57 0.428006 0.384349 27778 195446 -1 1305 25 1210 1538 148217 37689 3.04362 3.04362 -107.851 -3.04362 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0503784 0.0454324 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 11.16 vpr 63.79 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.8 MiB 0.32 740 12331 4240 6152 1939 63.8 MiB 0.13 0.00 4.034 -137.168 -4.034 4.034 0.98 0.00119096 0.00110734 0.0754872 0.0701967 56 1995 22 6.95648e+06 405319 973134. 3367.25 7.05 0.522653 0.471905 29794 239141 -1 1686 22 1903 2766 243764 53644 3.99752 3.99752 -141.908 -3.99752 0 0 1.19926e+06 4149.71 0.34 0.13 0.37 -1 -1 0.34 0.0521886 0.0473426 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.88 vpr 63.20 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30428 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.7 MiB 1.11 591 12399 5279 6566 554 63.2 MiB 0.13 0.00 3.26295 -102.061 -3.26295 3.26295 0.98 0.000958634 0.000889978 0.0777246 0.0722251 38 2038 50 6.95648e+06 202660 678818. 2348.85 2.21 0.30943 0.278822 26626 170182 -1 1391 21 1127 1608 103397 24225 2.92072 2.92072 -103.904 -2.92072 0 0 902133. 3121.57 0.26 0.08 0.24 -1 -1 0.26 0.0400718 0.0361158 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 9.34 vpr 63.54 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 1.13 698 10149 3910 5225 1014 63.5 MiB 0.12 0.00 3.05815 -118.306 -3.05815 3.05815 0.99 0.000972961 0.0008985 0.070124 0.0651436 38 2198 44 6.95648e+06 144757 678818. 2348.85 4.58 0.329704 0.297473 26626 170182 -1 1736 25 1666 2364 269456 53392 3.29042 3.29042 -129.622 -3.29042 0 0 902133. 3121.57 0.27 0.14 0.25 -1 -1 0.27 0.0501349 0.0452902 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.13 vpr 63.86 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30468 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 24.8 MiB 1.04 746 14103 5624 7146 1333 63.9 MiB 0.17 0.00 3.238 -117.486 -3.238 3.238 0.99 0.00122862 0.00114067 0.0950152 0.0882898 38 2458 29 6.95648e+06 347416 678818. 2348.85 2.43 0.317112 0.287897 26626 170182 -1 1917 21 1773 2363 186711 42621 3.53007 3.53007 -129.026 -3.53007 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0526446 0.0478513 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.62 vpr 63.19 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30280 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 308 262 1 142 74 17 17 289 -1 unnamed_device 24.6 MiB 1.79 686 12474 3876 7111 1487 63.2 MiB 0.14 0.00 3.13575 -103.399 -3.13575 3.13575 1.03 0.000991846 0.000920527 0.0839069 0.0779885 36 2094 39 6.95648e+06 159232 648988. 2245.63 3.29 0.322055 0.290588 26050 158493 -1 1776 22 1072 1632 157038 32453 3.23922 3.23922 -118.24 -3.23922 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0432168 0.0389651 56 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 10.59 vpr 63.82 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30572 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.9 MiB 1.19 722 12503 5194 6872 437 63.8 MiB 0.15 0.00 3.23686 -109.678 -3.23686 3.23686 0.98 0.00120313 0.00111717 0.0871316 0.0809329 50 2157 24 6.95648e+06 275038 902133. 3121.57 5.75 0.459291 0.414596 28642 213929 -1 1715 19 1201 1787 137913 31159 2.95673 2.95673 -112.43 -2.95673 0 0 1.08113e+06 3740.92 0.32 0.10 0.32 -1 -1 0.32 0.0472861 0.0428917 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.76 vpr 63.98 MiB 0.04 7396 -1 -1 1 0.03 -1 -1 30368 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65516 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.2 MiB 1.37 718 15298 5475 7567 2256 64.0 MiB 0.18 0.00 3.37721 -115.369 -3.37721 3.37721 0.98 0.00130277 0.00120916 0.105665 0.0981773 42 2552 40 6.95648e+06 361892 744469. 2576.02 2.67 0.363013 0.329525 27202 183097 -1 1912 21 1848 2504 206069 45661 3.35647 3.35647 -129.009 -3.35647 0 0 949917. 3286.91 0.28 0.12 0.27 -1 -1 0.28 0.0538155 0.0488026 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.09 vpr 63.70 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30380 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.9 MiB 0.82 564 10149 3066 5426 1657 63.7 MiB 0.13 0.00 2.9023 -103.177 -2.9023 2.9023 0.98 0.00105976 0.000983803 0.072149 0.0669994 42 2288 43 6.95648e+06 144757 744469. 2576.02 2.62 0.307771 0.277663 27202 183097 -1 1679 19 1210 1785 179714 40006 3.25942 3.25942 -118.141 -3.25942 0 0 949917. 3286.91 0.28 0.10 0.27 -1 -1 0.28 0.0408927 0.036994 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.38 vpr 63.79 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30156 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.9 MiB 1.08 612 8289 3415 4647 227 63.8 MiB 0.10 0.00 3.0515 -113.508 -3.0515 3.0515 0.99 0.00107955 0.00100211 0.0608219 0.0564991 50 1756 29 6.95648e+06 144757 902133. 3121.57 2.66 0.253031 0.228545 28642 213929 -1 1514 23 1423 2215 175089 44572 3.54107 3.54107 -123.046 -3.54107 0 0 1.08113e+06 3740.92 0.31 0.11 0.32 -1 -1 0.31 0.050189 0.0454417 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.93 vpr 63.99 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30684 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 25.2 MiB 0.86 953 11433 2671 7909 853 64.0 MiB 0.14 0.00 3.79939 -142.687 -3.79939 3.79939 0.99 0.00127828 0.00117825 0.0728641 0.0675778 40 2518 29 6.95648e+06 419795 706193. 2443.58 4.36 0.360941 0.326832 26914 176310 -1 2407 22 2053 3002 299015 60483 4.57846 4.57846 -163.416 -4.57846 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0550405 0.0499179 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.86 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65368 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.9 MiB 0.90 751 8336 2486 4818 1032 63.8 MiB 0.11 0.00 3.1658 -105.551 -3.1658 3.1658 0.99 0.00116565 0.00108274 0.0598007 0.0556265 38 2387 34 6.95648e+06 275038 678818. 2348.85 4.43 0.330948 0.298925 26626 170182 -1 1724 24 1515 2148 170944 40482 3.28747 3.28747 -116.09 -3.28747 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0547513 0.0495864 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 12.32 vpr 64.26 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30728 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65804 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.4 MiB 1.48 819 16473 6066 7302 3105 64.3 MiB 0.19 0.00 3.81039 -138.347 -3.81039 3.81039 0.99 0.00141173 0.001311 0.114907 0.106679 54 2443 42 6.95648e+06 419795 949917. 3286.91 6.88 0.632377 0.570057 29506 232905 -1 1872 24 2067 3118 252516 61667 4.04136 4.04136 -149.256 -4.04136 0 0 1.17392e+06 4061.99 0.34 0.15 0.35 -1 -1 0.34 0.0616935 0.055686 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 9.71 vpr 63.14 MiB 0.04 6880 -1 -1 1 0.04 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 1.01 577 9219 3376 4280 1563 63.1 MiB 0.10 0.00 3.0073 -101.365 -3.0073 3.0073 0.98 0.000905461 0.000841445 0.0564339 0.0525057 44 2107 45 6.95648e+06 159232 787024. 2723.27 5.00 0.378775 0.340033 27778 195446 -1 1470 21 1195 1845 140744 32906 3.42992 3.42992 -117.504 -3.42992 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0382511 0.0345384 57 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 11.25 vpr 63.89 MiB 0.05 7320 -1 -1 1 0.03 -1 -1 30428 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 0.94 751 13335 4844 6817 1674 63.9 MiB 0.16 0.00 3.74945 -128.098 -3.74945 3.74945 0.98 0.00127349 0.00117982 0.0927286 0.0859349 56 1863 21 6.95648e+06 332941 973134. 3367.25 6.46 0.545297 0.492143 29794 239141 -1 1668 21 1711 2250 226926 53089 3.78446 3.78446 -134.91 -3.78446 0 0 1.19926e+06 4149.71 0.34 0.13 0.37 -1 -1 0.34 0.0539891 0.0489305 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 10.88 vpr 63.55 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 2.66 732 10149 4260 5733 156 63.6 MiB 0.13 0.00 2.97895 -115.858 -2.97895 2.97895 0.98 0.00115377 0.00107019 0.0789797 0.073402 46 1921 23 6.95648e+06 144757 828058. 2865.25 4.54 0.441982 0.398494 28066 200906 -1 1596 18 1270 1776 139794 29457 2.99182 2.99182 -121.64 -2.99182 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0425205 0.0385019 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.45 vpr 63.86 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30432 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 1.10 784 11983 4223 5778 1982 63.9 MiB 0.15 0.00 3.13882 -116.487 -3.13882 3.13882 0.98 0.00126214 0.00117136 0.0816476 0.0758239 46 2236 27 6.95648e+06 347416 828058. 2865.25 2.58 0.300398 0.272812 28066 200906 -1 1880 22 1464 2219 178040 39658 3.62417 3.62417 -128.367 -3.62417 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0550286 0.0499844 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.97 vpr 64.34 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30816 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.4 MiB 1.31 961 18301 6218 9454 2629 64.3 MiB 0.22 0.00 4.52824 -160.34 -4.52824 4.52824 0.98 0.0010593 0.000981642 0.128775 0.119763 44 3684 29 6.95648e+06 477698 787024. 2723.27 5.73 0.421214 0.383488 27778 195446 -1 2550 28 2934 4398 437280 99963 5.01891 5.01891 -177.238 -5.01891 0 0 997811. 3452.63 0.30 0.22 0.29 -1 -1 0.30 0.081982 0.0742553 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.99 vpr 63.02 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30104 -1 -1 10 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.4 MiB 0.60 399 8267 2578 4387 1302 63.0 MiB 0.08 0.00 2.20646 -75.9306 -2.20646 2.20646 1.00 0.000802188 0.000743908 0.0467472 0.0433615 38 1006 19 6.95648e+06 144757 678818. 2348.85 2.94 0.210454 0.188204 26626 170182 -1 863 19 636 793 63794 16426 2.30318 2.30318 -81.2983 -2.30318 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0310504 0.0278265 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 11.82 vpr 63.41 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30400 -1 -1 12 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.5 MiB 2.19 478 9684 3860 5006 818 63.4 MiB 0.11 0.00 3.27575 -100.35 -3.27575 3.27575 0.99 0.000984388 0.000913798 0.0641409 0.0596092 62 1315 23 6.95648e+06 173708 1.05005e+06 3633.38 5.91 0.403846 0.36263 30946 263737 -1 1049 16 765 1119 81635 19720 3.04462 3.04462 -100.76 -3.04462 0 0 1.30136e+06 4502.97 0.37 0.07 0.42 -1 -1 0.37 0.0333288 0.0302052 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 20.14 vpr 63.51 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30136 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.7 MiB 0.30 594 9219 3126 4706 1387 63.5 MiB 0.12 0.00 2.93285 -111.664 -2.93285 2.93285 0.98 0.00103369 0.000960214 0.0644324 0.0599043 48 1953 26 6.95648e+06 144757 865456. 2994.66 16.08 0.527528 0.473997 28354 207349 -1 1506 26 1707 2844 330885 75209 2.89432 2.89432 -112.144 -2.89432 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0522602 0.047166 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 8.71 vpr 63.30 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30424 -1 -1 15 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.4 MiB 0.56 415 9310 3978 4599 733 63.3 MiB 0.10 0.00 3.24096 -89.5658 -3.24096 3.24096 0.99 0.000845844 0.000786652 0.0552327 0.0514071 42 1605 36 6.95648e+06 217135 744469. 2576.02 4.69 0.33768 0.302524 27202 183097 -1 1169 21 1062 1427 108134 27506 3.18237 3.18237 -94.9949 -3.18237 0 0 949917. 3286.91 0.28 0.08 0.27 -1 -1 0.28 0.0351365 0.0315733 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 8.45 vpr 64.00 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.17 759 9368 3878 5207 283 64.0 MiB 0.13 0.00 3.79735 -132.334 -3.79735 3.79735 0.98 0.00133319 0.00123848 0.0797501 0.0741203 44 2593 46 6.95648e+06 188184 787024. 2723.27 3.54 0.416057 0.376013 27778 195446 -1 1890 23 1856 3108 218143 48376 3.51986 3.51986 -133.027 -3.51986 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0599915 0.0543446 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 10.96 vpr 63.90 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30492 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 24.9 MiB 0.92 724 14789 4750 6856 3183 63.9 MiB 0.16 0.00 3.1508 -112.895 -3.1508 3.1508 1.01 0.00130095 0.00120712 0.0958452 0.0889794 46 2387 27 6.95648e+06 419795 828058. 2865.25 6.27 0.53006 0.478306 28066 200906 -1 1691 23 1784 2441 205061 50381 3.25457 3.25457 -118.388 -3.25457 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.058564 0.0530236 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.31 vpr 64.11 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30844 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 25.1 MiB 0.77 1129 15584 6141 7449 1994 64.1 MiB 0.20 0.00 4.57544 -163.509 -4.57544 4.57544 0.99 0.00135756 0.00124998 0.11494 0.106728 48 3270 28 6.99608e+06 323745 865456. 2994.66 2.70 0.358021 0.325171 28354 207349 -1 2623 21 2393 2784 284468 62019 4.8456 4.8456 -169.271 -4.8456 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0564546 0.0512228 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 19.05 vpr 63.92 MiB 0.05 7492 -1 -1 1 0.03 -1 -1 30688 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 30 32 409 330 1 260 82 17 17 289 -1 unnamed_device 25.0 MiB 1.07 1071 14500 5786 6936 1778 63.9 MiB 0.19 0.00 4.41722 -148.996 -4.41722 4.41722 0.99 0.00124867 0.00115952 0.106036 0.098552 46 3170 26 6.99608e+06 294314 828058. 2865.25 14.16 0.640777 0.578428 28066 200906 -1 2583 24 2500 3436 282342 58834 4.3342 4.3342 -150.375 -4.3342 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0590066 0.0533828 118 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 10.56 vpr 63.79 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65316 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.7 MiB 1.00 1033 13610 5703 7532 375 63.8 MiB 0.17 0.00 3.59279 -130.543 -3.59279 3.59279 0.99 0.00121886 0.00113197 0.0962205 0.089427 44 3147 39 6.99608e+06 264882 787024. 2723.27 5.84 0.582061 0.525231 27778 195446 -1 2195 20 1802 2143 166226 36364 3.92906 3.92906 -140.345 -3.92906 0 0 997811. 3452.63 0.30 0.11 0.31 -1 -1 0.30 0.0494552 0.0449354 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 10.29 vpr 63.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30520 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.7 MiB 0.76 736 8360 3365 4601 394 63.7 MiB 0.11 0.00 3.83534 -125.933 -3.83534 3.83534 0.98 0.00113118 0.00105176 0.0587907 0.0546953 46 2539 41 6.99608e+06 264882 828058. 2865.25 5.83 0.455343 0.41033 28066 200906 -1 1699 23 1809 2706 201725 48097 3.69842 3.69842 -129.786 -3.69842 0 0 1.01997e+06 3529.29 0.30 0.12 0.29 -1 -1 0.30 0.0511585 0.0463515 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.70 vpr 63.80 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.8 MiB 0.46 971 12416 5616 6402 398 63.8 MiB 0.16 0.00 4.27644 -155.98 -4.27644 4.27644 0.99 0.00124169 0.00115488 0.094716 0.0881582 58 3128 38 6.99608e+06 220735 997811. 3452.63 7.36 0.558306 0.504759 30370 251734 -1 2321 20 2246 3586 286273 63035 4.60405 4.60405 -165.524 -4.60405 0 0 1.25153e+06 4330.55 0.36 0.14 0.38 -1 -1 0.36 0.0499459 0.0453784 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 7.10 vpr 63.91 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30584 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 402 316 1 251 96 17 17 289 -1 unnamed_device 25.0 MiB 0.52 1303 16740 4427 11097 1216 63.9 MiB 0.20 0.00 3.60699 -130.903 -3.60699 3.60699 1.01 0.00126983 0.00118002 0.100988 0.0936369 46 3142 36 6.99608e+06 470902 828058. 2865.25 2.68 0.345083 0.313169 28066 200906 -1 2658 22 2171 3182 237184 48696 3.41681 3.41681 -137.228 -3.41681 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.0554492 0.0502924 119 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 15.45 vpr 63.16 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30708 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.2 MiB 0.82 620 8289 3348 4414 527 63.2 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.01 0.000897442 0.000834104 0.0509562 0.0473912 40 2005 45 6.99608e+06 220735 706193. 2443.58 10.97 0.466573 0.417124 26914 176310 -1 1694 23 1562 2201 221485 47828 3.44611 3.44611 -115.394 -3.44611 0 0 926341. 3205.33 0.27 0.11 0.26 -1 -1 0.27 0.0406911 0.0366351 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 10.21 vpr 63.41 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.49 683 10744 3839 5024 1881 63.4 MiB 0.12 0.00 2.89749 -100.387 -2.89749 2.89749 1.03 0.00107925 0.00100374 0.0705923 0.0656558 48 2088 30 6.99608e+06 250167 865456. 2994.66 5.85 0.457263 0.412248 28354 207349 -1 1749 24 1361 2056 155309 37960 3.12512 3.12512 -109.464 -3.12512 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0550485 0.0497585 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 19.79 vpr 63.65 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30260 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 31 32 338 292 1 223 78 17 17 289 -1 unnamed_device 24.6 MiB 1.57 947 14022 5302 5947 2773 63.7 MiB 0.15 0.00 3.20894 -116.628 -3.20894 3.20894 0.98 0.000999192 0.000931939 0.0740112 0.0686351 40 2806 38 6.99608e+06 220735 706193. 2443.58 14.57 0.589442 0.529019 26914 176310 -1 2371 21 1972 2386 258573 59450 3.98031 3.98031 -133.104 -3.98031 0 0 926341. 3205.33 0.27 0.13 0.27 -1 -1 0.27 0.0446888 0.0403739 97 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.28 vpr 63.42 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.74 683 10346 4298 5768 280 63.4 MiB 0.12 0.00 3.58749 -133.196 -3.58749 3.58749 1.00 0.00103591 0.000962728 0.0691023 0.064251 46 2254 23 6.99608e+06 191304 828058. 2865.25 2.92 0.289721 0.261832 28066 200906 -1 1763 21 1605 1961 177935 38769 3.46386 3.46386 -134.717 -3.46386 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0436149 0.0394664 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 11.03 vpr 63.68 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30124 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.8 MiB 1.98 858 10835 4264 5113 1458 63.7 MiB 0.13 0.00 3.85932 -133.017 -3.85932 3.85932 0.98 0.00104339 0.000969443 0.0721035 0.0669704 44 2480 24 6.99608e+06 220735 787024. 2723.27 5.38 0.405223 0.364818 27778 195446 -1 1933 21 1684 2275 184623 38306 3.5084 3.5084 -132.607 -3.5084 0 0 997811. 3452.63 0.29 0.11 0.26 -1 -1 0.29 0.0435851 0.0393439 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 9.02 vpr 63.50 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30480 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.83 1076 12030 4001 6276 1753 63.5 MiB 0.15 0.00 3.0643 -120.829 -3.0643 3.0643 0.98 0.00105257 0.000977131 0.0812607 0.075689 38 2566 31 6.99608e+06 206020 678818. 2348.85 4.61 0.324055 0.292847 26626 170182 -1 2305 22 1552 1683 182727 35473 3.32357 3.32357 -128.637 -3.32357 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0453201 0.0409634 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 11.31 vpr 63.75 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 386 305 1 233 81 17 17 289 -1 unnamed_device 24.5 MiB 1.00 895 11281 2962 6708 1611 63.8 MiB 0.15 0.00 3.59905 -128.853 -3.59905 3.59905 1.01 0.00123741 0.00115026 0.0831715 0.0773117 54 2550 23 6.99608e+06 250167 949917. 3286.91 6.48 0.529099 0.477897 29506 232905 -1 1779 17 1627 2224 160711 36089 3.56236 3.56236 -128.067 -3.56236 0 0 1.17392e+06 4061.99 0.34 0.10 0.36 -1 -1 0.34 0.0437789 0.0398451 102 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.25 vpr 64.09 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30476 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.2 MiB 0.86 1060 14303 4176 8339 1788 64.1 MiB 0.20 0.00 4.32484 -157.119 -4.32484 4.32484 0.71 0.00128542 0.00119498 0.106375 0.0989226 46 3253 22 6.99608e+06 279598 828058. 2865.25 2.82 0.318595 0.289978 28066 200906 -1 2529 23 2652 3389 248791 52125 4.35241 4.35241 -163.83 -4.35241 0 0 1.01997e+06 3529.29 0.32 0.15 0.29 -1 -1 0.32 0.0593593 0.05392 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 10.91 vpr 63.05 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30596 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.3 MiB 2.19 528 11293 4020 5114 2159 63.0 MiB 0.12 0.00 2.96115 -97.0174 -2.96115 2.96115 0.98 0.000915219 0.000850239 0.067787 0.0630008 46 1775 49 6.99608e+06 206020 828058. 2865.25 5.10 0.397973 0.357156 28066 200906 -1 1268 23 1017 1428 111224 26731 2.95752 2.95752 -100.852 -2.95752 0 0 1.01997e+06 3529.29 0.30 0.09 0.30 -1 -1 0.30 0.0413608 0.03726 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 24.88 vpr 63.83 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 401 315 1 244 80 17 17 289 -1 unnamed_device 25.1 MiB 2.74 1210 15904 6463 7649 1792 63.8 MiB 0.21 0.00 3.55749 -134.258 -3.55749 3.55749 0.98 0.00127396 0.00118354 0.121264 0.112674 46 3098 30 6.99608e+06 235451 828058. 2865.25 18.31 0.671475 0.606489 28066 200906 -1 2551 21 2776 3869 270436 56621 3.44021 3.44021 -137.304 -3.44021 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0533457 0.0484397 107 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 9.98 vpr 63.71 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.16 1122 6731 1632 4419 680 63.7 MiB 0.10 0.00 3.32994 -132.194 -3.32994 3.32994 0.99 0.00123317 0.00114762 0.0510995 0.0475601 38 3157 39 6.99608e+06 250167 678818. 2348.85 5.25 0.345596 0.312189 26626 170182 -1 2529 22 2206 2773 235780 47709 3.37357 3.37357 -139.703 -3.37357 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0534057 0.048426 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.69 vpr 63.60 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.7 MiB 0.81 951 13856 5691 6655 1510 63.6 MiB 0.17 0.00 3.13279 -121.703 -3.13279 3.13279 0.99 0.00108543 0.00100774 0.093494 0.0868213 44 2752 29 6.99608e+06 206020 787024. 2723.27 3.15 0.334053 0.302125 27778 195446 -1 2176 22 1900 2346 212467 42666 2.87856 2.87856 -122.33 -2.87856 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0470318 0.0425189 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 10.66 vpr 62.80 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30216 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 226 208 1 138 73 17 17 289 -1 unnamed_device 24.2 MiB 2.78 516 9193 3770 5081 342 62.8 MiB 0.09 0.00 2.37536 -87.628 -2.37536 2.37536 0.99 0.000765373 0.000710124 0.0484681 0.0449921 38 1650 24 6.99608e+06 161872 678818. 2348.85 4.48 0.281351 0.251575 26626 170182 -1 1217 17 751 798 77910 17444 2.51033 2.51033 -88.5237 -2.51033 0 0 902133. 3121.57 0.26 0.06 0.24 -1 -1 0.26 0.0272054 0.0244898 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.24 vpr 63.50 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.6 MiB 2.65 1023 8046 2352 4947 747 63.5 MiB 0.10 0.00 3.80119 -135.035 -3.80119 3.80119 0.98 0.00106019 0.000984682 0.0545184 0.0506932 40 2437 45 6.99608e+06 220735 706193. 2443.58 2.95 0.31817 0.286635 26914 176310 -1 2238 24 1820 2195 407025 142062 3.44186 3.44186 -135.532 -3.44186 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0489795 0.0441478 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 10.51 vpr 63.76 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.8 MiB 0.55 873 12759 5251 7214 294 63.8 MiB 0.16 0.00 4.03513 -142.757 -4.03513 4.03513 0.98 0.00119347 0.00110967 0.0823791 0.0765835 48 2680 22 6.99608e+06 338461 865456. 2994.66 6.19 0.486333 0.439337 28354 207349 -1 2224 22 2205 3019 256999 54936 4.0516 4.0516 -152.654 -4.0516 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0526142 0.0477308 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.56 vpr 63.83 MiB 0.03 7340 -1 -1 1 0.05 -1 -1 30560 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.31 1281 15206 5059 7438 2709 63.8 MiB 0.20 0.00 4.01908 -142.049 -4.01908 4.01908 0.98 0.00138623 0.00128893 0.115059 0.107012 46 3287 29 6.99608e+06 323745 828058. 2865.25 3.52 0.434274 0.393484 28066 200906 -1 2472 19 2277 2579 186592 40946 4.19302 4.19302 -144.706 -4.19302 0 0 1.01997e+06 3529.29 0.29 0.12 0.29 -1 -1 0.29 0.0535478 0.0485448 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 8.63 vpr 62.97 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30568 -1 -1 15 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 24.2 MiB 1.09 402 7369 3107 3789 473 63.0 MiB 0.07 0.00 2.6716 -78.5602 -2.6716 2.6716 0.99 0.000671868 0.000622101 0.034766 0.0322414 42 1323 32 6.99608e+06 220735 744469. 2576.02 4.09 0.248897 0.221761 27202 183097 -1 1004 17 727 856 79646 21279 2.41737 2.41737 -80.3281 -2.41737 0 0 949917. 3286.91 0.28 0.06 0.27 -1 -1 0.28 0.0239001 0.0215046 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 18.81 vpr 63.56 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.7 MiB 1.07 705 12076 4649 5860 1567 63.6 MiB 0.15 0.00 3.97238 -132.995 -3.97238 3.97238 0.98 0.00113349 0.00105439 0.0891962 0.0830262 48 2576 47 6.99608e+06 176588 865456. 2994.66 13.99 0.609587 0.549653 28354 207349 -1 1879 20 1499 2307 195753 55792 4.00906 4.00906 -142.234 -4.00906 0 0 1.05005e+06 3633.38 0.31 0.12 0.31 -1 -1 0.31 0.0454787 0.0412877 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 7.78 vpr 62.53 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30388 -1 -1 8 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.8 MiB 0.24 736 9906 3603 5031 1272 62.5 MiB 0.09 0.00 2.06111 -84.6894 -2.06111 2.06111 0.97 0.000706909 0.000654981 0.0489297 0.0453508 36 1652 24 6.99608e+06 117725 648988. 2245.63 4.21 0.253417 0.227026 26050 158493 -1 1482 18 698 887 79009 16017 1.76652 1.76652 -87.3348 -1.76652 0 0 828058. 2865.25 0.25 0.06 0.23 -1 -1 0.25 0.0263722 0.0236785 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 14.86 vpr 63.76 MiB 0.04 7204 -1 -1 1 0.05 -1 -1 30700 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.8 MiB 1.06 835 12856 4936 6167 1753 63.8 MiB 0.16 0.00 3.83288 -138.607 -3.83288 3.83288 0.98 0.00121817 0.00113275 0.0926844 0.0861729 52 3011 45 6.99608e+06 250167 926341. 3205.33 9.93 0.661546 0.597152 29218 227130 -1 2034 20 1860 2664 210113 52635 4.07132 4.07132 -148.317 -4.07132 0 0 1.14541e+06 3963.36 0.33 0.12 0.34 -1 -1 0.33 0.0489796 0.0445061 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 15.32 vpr 63.59 MiB 0.06 7024 -1 -1 1 0.03 -1 -1 30276 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.7 MiB 0.30 928 12512 3016 8778 718 63.6 MiB 0.14 0.00 2.93295 -114.372 -2.93295 2.93295 0.99 0.00113671 0.00105639 0.0719027 0.0668296 36 2976 46 6.99608e+06 412039 648988. 2245.63 11.44 0.514453 0.464294 26050 158493 -1 2311 20 1632 2377 221761 44668 2.93732 2.93732 -123.081 -2.93732 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0460883 0.0418531 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 31.14 vpr 63.81 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30704 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.8 MiB 0.82 1355 13105 4686 6378 2041 63.8 MiB 0.17 0.00 3.84405 -146.55 -3.84405 3.84405 1.02 0.00128307 0.00119244 0.0939905 0.0873878 40 3494 25 6.99608e+06 309029 706193. 2443.58 26.46 0.63711 0.575086 26914 176310 -1 3199 22 2556 3619 369542 72224 4.47222 4.47222 -168.801 -4.47222 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0559197 0.0507134 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.65 vpr 63.55 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 294 246 1 176 75 17 17 289 -1 unnamed_device 24.7 MiB 1.35 631 8765 3568 4905 292 63.5 MiB 0.11 0.00 3.0305 -106.826 -3.0305 3.0305 0.99 0.000975726 0.000905346 0.0571673 0.0531379 46 1909 28 6.99608e+06 161872 828058. 2865.25 4.61 0.380829 0.341873 28066 200906 -1 1545 22 1354 1880 153263 36733 3.26222 3.26222 -125.164 -3.26222 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0426284 0.0384534 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.21 vpr 63.25 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30136 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.4 MiB 7.65 650 7975 2404 4392 1179 63.2 MiB 0.10 0.00 3.55679 -117.332 -3.55679 3.55679 0.98 0.000926328 0.000856489 0.0519292 0.0482648 46 2101 31 6.99608e+06 191304 828058. 2865.25 4.87 0.279138 0.251279 28066 200906 -1 1500 22 1463 2145 149531 35969 3.32751 3.32751 -121.447 -3.32751 0 0 1.01997e+06 3529.29 0.30 0.10 0.30 -1 -1 0.30 0.0424381 0.0383334 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.80 vpr 63.34 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.3 MiB 1.82 739 7975 3247 4368 360 63.3 MiB 0.09 0.00 3.69125 -116.208 -3.69125 3.69125 0.99 0.000926061 0.000860321 0.0494864 0.0459656 36 2556 34 6.99608e+06 220735 648988. 2245.63 2.47 0.199747 0.17984 26050 158493 -1 1917 19 1233 1820 185802 38503 3.78171 3.78171 -132.021 -3.78171 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.0359577 0.0324673 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 9.38 vpr 63.04 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30268 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.26 696 7204 2957 4121 126 63.0 MiB 0.09 0.00 2.86245 -113.51 -2.86245 2.86245 0.99 0.000976841 0.000907776 0.0478281 0.0444678 44 2020 24 6.99608e+06 147157 787024. 2723.27 5.48 0.356062 0.319978 27778 195446 -1 1625 31 1977 3013 332762 96253 2.94132 2.94132 -119.539 -2.94132 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0567576 0.0511568 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 24.83 vpr 63.52 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30364 -1 -1 15 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 0.71 755 9540 3925 5398 217 63.5 MiB 0.11 0.00 3.03145 -110.864 -3.03145 3.03145 0.99 0.000999677 0.000928225 0.0598528 0.055579 38 3052 46 6.99608e+06 220735 678818. 2348.85 20.52 0.518806 0.465317 26626 170182 -1 2159 24 1603 2282 256076 71929 3.05762 3.05762 -121.027 -3.05762 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0468915 0.0422979 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.05 vpr 63.61 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.7 MiB 2.73 884 10835 4063 4821 1951 63.6 MiB 0.13 0.00 2.96441 -103.828 -2.96441 2.96441 0.98 0.000997471 0.000926682 0.069264 0.0643461 36 2708 23 6.99608e+06 235451 648988. 2245.63 3.86 0.283484 0.255836 26050 158493 -1 2118 19 1470 1792 182626 37511 3.03902 3.03902 -113.454 -3.03902 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0387755 0.0350331 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 11.49 vpr 63.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65472 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.0 MiB 1.02 1043 15273 6507 8280 486 63.9 MiB 0.20 0.00 3.92945 -143.749 -3.92945 3.92945 1.01 0.00138141 0.00128434 0.119574 0.111349 52 3353 48 6.99608e+06 294314 926341. 3205.33 6.48 0.619758 0.561281 29218 227130 -1 2351 21 2159 3199 268895 57528 3.83171 3.83171 -144.306 -3.83171 0 0 1.14541e+06 3963.36 0.37 0.15 0.34 -1 -1 0.37 0.0582542 0.0529608 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 16.82 vpr 63.94 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 25.1 MiB 0.83 1127 14500 5161 6829 2510 63.9 MiB 0.20 0.00 3.90969 -144.443 -3.90969 3.90969 0.98 0.00127391 0.00118306 0.108878 0.101209 44 4008 46 6.99608e+06 264882 787024. 2723.27 12.13 0.635427 0.573769 27778 195446 -1 2839 23 2834 3899 468755 94851 4.6831 4.6831 -167.785 -4.6831 0 0 997811. 3452.63 0.30 0.19 0.29 -1 -1 0.30 0.0573307 0.0520077 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.65 vpr 63.64 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30536 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 0.88 1061 8867 2259 5908 700 63.6 MiB 0.11 0.00 3.47679 -127.153 -3.47679 3.47679 0.98 0.00108569 0.00100758 0.0591499 0.0549107 38 2537 26 6.99608e+06 235451 678818. 2348.85 4.19 0.298967 0.269371 26626 170182 -1 2160 30 1773 1838 249915 79626 3.23376 3.23376 -128.103 -3.23376 0 0 902133. 3121.57 0.26 0.15 0.24 -1 -1 0.26 0.0612991 0.0552484 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.04 vpr 64.01 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65544 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1183 15656 5841 7703 2112 64.0 MiB 0.20 0.00 3.61799 -134.688 -3.61799 3.61799 0.98 0.00122151 0.00113263 0.113823 0.105779 38 3042 22 6.99608e+06 264882 678818. 2348.85 2.52 0.320463 0.291761 26626 170182 -1 2602 22 2070 2717 217416 44443 3.96456 3.96456 -147.834 -3.96456 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0540491 0.0490351 106 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.83 vpr 64.04 MiB 0.03 7472 -1 -1 1 0.03 -1 -1 30524 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65580 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.5 MiB 1.03 1328 14072 5452 6377 2243 64.0 MiB 0.19 0.00 4.66638 -161.837 -4.66638 4.66638 0.98 0.00137939 0.00128153 0.105996 0.0984778 46 3611 30 6.99608e+06 338461 828058. 2865.25 3.02 0.371805 0.336717 28066 200906 -1 2828 22 2604 2998 246372 50453 4.5124 4.5124 -160.805 -4.5124 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0601595 0.0544785 139 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.43 vpr 63.92 MiB 0.07 7380 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 25.0 MiB 1.61 1336 12542 4792 5292 2458 63.9 MiB 0.17 0.00 4.63751 -159.484 -4.63751 4.63751 0.99 0.00127559 0.00118531 0.0938377 0.0872004 44 3365 23 6.99608e+06 279598 787024. 2723.27 3.04 0.367516 0.33264 27778 195446 -1 2649 22 2348 3160 246325 50594 4.66644 4.66644 -167.253 -4.66644 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0558949 0.0507155 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.72 vpr 63.83 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65360 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.14 1058 13763 5815 7487 461 63.8 MiB 0.18 0.00 3.62105 -130.075 -3.62105 3.62105 0.98 0.00123878 0.00115182 0.0983473 0.0914495 46 3035 33 6.99608e+06 294314 828058. 2865.25 3.74 0.387086 0.351317 28066 200906 -1 2277 32 2426 3233 359859 110439 3.71441 3.71441 -135.827 -3.71441 0 0 1.01997e+06 3529.29 0.30 0.20 0.30 -1 -1 0.30 0.0741962 0.0670988 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 10.23 vpr 63.82 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30428 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.94 1214 6556 2392 3648 516 63.8 MiB 0.10 0.00 3.81945 -147.993 -3.81945 3.81945 1.01 0.00127198 0.00118231 0.0516007 0.0479973 46 3170 26 6.99608e+06 250167 828058. 2865.25 5.53 0.464379 0.418841 28066 200906 -1 2519 22 2224 2868 243990 48257 3.93982 3.93982 -158.396 -3.93982 0 0 1.01997e+06 3529.29 0.30 0.14 0.30 -1 -1 0.30 0.0559651 0.0508673 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.01 vpr 64.10 MiB 0.06 7300 -1 -1 1 0.04 -1 -1 30672 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.4 MiB 1.86 1472 16529 5767 8472 2290 64.1 MiB 0.24 0.00 4.63877 -169.362 -4.63877 4.63877 0.98 0.00153889 0.00143102 0.139546 0.129819 46 4337 28 6.99608e+06 323745 828058. 2865.25 4.22 0.447463 0.406708 28066 200906 -1 3209 23 3387 4674 302207 65517 5.06025 5.06025 -178.772 -5.06025 0 0 1.01997e+06 3529.29 0.30 0.17 0.29 -1 -1 0.30 0.0703618 0.0639001 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 6.56 vpr 63.47 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30612 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 0.89 800 9996 3753 4176 2067 63.5 MiB 0.12 0.00 3.1395 -118.047 -3.1395 3.1395 0.98 0.000999855 0.000929042 0.0649952 0.060428 38 2130 24 6.99608e+06 191304 678818. 2348.85 2.10 0.240464 0.217536 26626 170182 -1 1836 21 1457 1801 148849 31228 3.25317 3.25317 -128.553 -3.25317 0 0 902133. 3121.57 0.26 0.10 0.26 -1 -1 0.26 0.0421384 0.0381025 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 11.71 vpr 64.05 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65584 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1241 14606 4687 8344 1575 64.0 MiB 0.20 0.00 4.54014 -162.268 -4.54014 4.54014 0.98 0.0012512 0.00116372 0.108581 0.100957 46 3395 49 6.99608e+06 264882 828058. 2865.25 7.24 0.611887 0.553099 28066 200906 -1 2755 22 1893 2360 227438 44035 4.80041 4.80041 -173.103 -4.80041 0 0 1.01997e+06 3529.29 0.30 0.13 0.30 -1 -1 0.30 0.0544316 0.0493742 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.76 vpr 63.89 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30592 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.8 MiB 1.24 1277 13077 4097 6940 2040 63.9 MiB 0.17 0.00 3.58873 -134.162 -3.58873 3.58873 0.99 0.00125238 0.00116411 0.0934409 0.0869403 44 3468 27 6.99608e+06 294314 787024. 2723.27 2.70 0.310638 0.282653 27778 195446 -1 2711 22 1907 2782 233441 47125 3.79716 3.79716 -138.134 -3.79716 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.0542345 0.0492315 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 13.03 vpr 63.74 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.78 749 9368 3828 5102 438 63.7 MiB 0.12 0.00 3.60355 -132.937 -3.60355 3.60355 0.97 0.0011835 0.00110265 0.0711052 0.0662595 56 2329 38 6.99608e+06 191304 973134. 3367.25 8.46 0.594382 0.536272 29794 239141 -1 1846 23 2014 3436 278492 64215 4.03806 4.03806 -145.538 -4.03806 0 0 1.19926e+06 4149.71 0.34 0.15 0.37 -1 -1 0.34 0.0529022 0.0480138 78 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 10.95 vpr 63.91 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30420 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.31 1055 13763 3328 9921 514 63.9 MiB 0.19 0.00 3.32994 -126.121 -3.32994 3.32994 0.99 0.00128859 0.00119672 0.102641 0.0953942 48 2770 25 6.99608e+06 279598 865456. 2994.66 5.80 0.532529 0.481039 28354 207349 -1 2322 24 2262 2686 211847 46681 3.10691 3.10691 -130.017 -3.10691 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0603195 0.0546632 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 12.86 vpr 63.91 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 25.1 MiB 1.11 953 16005 6898 8576 531 63.9 MiB 0.20 0.00 3.64909 -133.489 -3.64909 3.64909 0.99 0.00126724 0.00117778 0.113982 0.106061 50 2835 48 6.99608e+06 294314 902133. 3121.57 7.91 0.643094 0.581425 28642 213929 -1 2240 19 2034 2720 256852 58452 3.66566 3.66566 -135.576 -3.66566 0 0 1.08113e+06 3740.92 0.32 0.13 0.32 -1 -1 0.32 0.0487369 0.0442971 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 8.46 vpr 64.16 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30532 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 25.3 MiB 0.87 1127 14956 5538 7035 2383 64.2 MiB 0.20 0.00 3.33684 -126.514 -3.33684 3.33684 1.00 0.0012766 0.00118618 0.112319 0.104431 38 3880 43 6.99608e+06 250167 678818. 2348.85 3.76 0.408505 0.370782 26626 170182 -1 2782 21 2489 3255 287192 60059 3.84771 3.84771 -145.494 -3.84771 0 0 902133. 3121.57 0.26 0.15 0.26 -1 -1 0.26 0.0572335 0.0522738 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.05 vpr 63.59 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30524 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.5 MiB 0.98 787 12120 3530 7317 1273 63.6 MiB 0.16 0.00 3.81568 -137.815 -3.81568 3.81568 1.00 0.00120955 0.00112463 0.088583 0.0824031 48 2529 39 6.99608e+06 235451 865456. 2994.66 3.29 0.381832 0.346248 28354 207349 -1 1935 25 2132 3104 289070 64769 4.19042 4.19042 -146.883 -4.19042 0 0 1.05005e+06 3633.38 0.31 0.15 0.31 -1 -1 0.31 0.0588523 0.0533475 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 19.32 vpr 63.92 MiB 0.05 7132 -1 -1 1 0.04 -1 -1 30660 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.91 1023 14500 5955 7564 981 63.9 MiB 0.18 0.00 3.85505 -141.818 -3.85505 3.85505 0.99 0.00126999 0.00118088 0.106966 0.099452 40 3265 27 6.99608e+06 264882 706193. 2443.58 14.54 0.677793 0.611967 26914 176310 -1 2725 27 2705 3247 424500 109619 4.60052 4.60052 -171.864 -4.60052 0 0 926341. 3205.33 0.27 0.20 0.27 -1 -1 0.27 0.0667567 0.0604568 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.20 vpr 64.23 MiB 0.05 7336 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65768 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.4 MiB 1.48 1393 14035 5565 6766 1704 64.2 MiB 0.19 0.00 4.08308 -143.875 -4.08308 4.08308 1.00 0.00136557 0.00125984 0.106678 0.0990601 46 3456 31 6.99608e+06 323745 828058. 2865.25 5.80 0.553645 0.499448 28066 200906 -1 2897 21 2039 2368 186090 38982 4.05885 4.05885 -147.773 -4.05885 0 0 1.01997e+06 3529.29 0.30 0.12 0.31 -1 -1 0.30 0.05668 0.0513282 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 11.60 vpr 64.08 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65620 32 32 432 346 1 281 85 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1279 12175 4545 5316 2314 64.1 MiB 0.17 0.00 3.76705 -140.253 -3.76705 3.76705 0.96 0.0013438 0.0012489 0.0919597 0.085571 44 3828 40 6.99608e+06 309029 787024. 2723.27 7.00 0.60231 0.543379 27778 195446 -1 2857 21 2900 4032 318211 64593 3.89402 3.89402 -148.475 -3.89402 0 0 997811. 3452.63 0.30 0.15 0.28 -1 -1 0.30 0.0562942 0.0510873 127 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.11 vpr 63.46 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30600 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.7 MiB 0.59 779 12528 5280 6990 258 63.5 MiB 0.14 0.00 3.03405 -116.466 -3.03405 3.03405 0.99 0.00103055 0.000957029 0.0803354 0.0746494 44 2266 23 6.99608e+06 206020 787024. 2723.27 2.83 0.256664 0.232621 27778 195446 -1 1776 23 1466 1918 161561 34104 3.12982 3.12982 -122.042 -3.12982 0 0 997811. 3452.63 0.30 0.11 0.29 -1 -1 0.30 0.0461447 0.0416865 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.02 vpr 63.71 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.8 MiB 0.92 1095 11776 4100 5415 2261 63.7 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.03 0.00114191 0.00105938 0.0944308 0.0876785 44 3095 31 6.99608e+06 235451 787024. 2723.27 3.27 0.313089 0.283477 27778 195446 -1 2376 25 2295 2733 324549 82043 3.59305 3.59305 -139.684 -3.59305 0 0 997811. 3452.63 0.30 0.16 0.29 -1 -1 0.30 0.0546963 0.0493845 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 24.55 vpr 63.93 MiB 0.04 7400 -1 -1 1 0.03 -1 -1 30796 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.3 MiB 0.97 1196 15273 6544 8338 391 63.9 MiB 0.22 0.00 4.58129 -163.981 -4.58129 4.58129 0.98 0.00147859 0.00137554 0.127626 0.118829 44 4685 46 6.99608e+06 294314 787024. 2723.27 19.70 0.804561 0.727272 27778 195446 -1 2843 23 2983 4079 360035 73587 4.84346 4.84346 -177.502 -4.84346 0 0 997811. 3452.63 0.30 0.18 0.29 -1 -1 0.30 0.0672121 0.0610234 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.74 vpr 63.77 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.66 1017 10916 2707 7442 767 63.8 MiB 0.15 0.00 3.32994 -129.578 -3.32994 3.32994 0.98 0.00118087 0.00109901 0.0795793 0.0740882 38 3243 34 6.99608e+06 235451 678818. 2348.85 3.40 0.346613 0.314123 26626 170182 -1 2475 33 2487 3350 449850 131294 3.35751 3.35751 -139.242 -3.35751 0 0 902133. 3121.57 0.26 0.22 0.24 -1 -1 0.26 0.0738139 0.0667641 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 10.43 vpr 63.53 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30324 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.7 MiB 0.74 690 11426 4009 5678 1739 63.5 MiB 0.12 0.00 3.75245 -122.292 -3.75245 3.75245 0.98 0.000968658 0.000906028 0.0629763 0.0585484 46 2173 50 6.99608e+06 353176 828058. 2865.25 6.04 0.445268 0.400146 28066 200906 -1 1642 24 1498 2222 188117 41858 3.67841 3.67841 -128.377 -3.67841 0 0 1.01997e+06 3529.29 0.30 0.11 0.30 -1 -1 0.30 0.0459984 0.0414842 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 30.71 vpr 64.10 MiB 0.02 7632 -1 -1 1 0.03 -1 -1 30928 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65636 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.4 MiB 1.01 1502 15883 5809 7749 2325 64.1 MiB 0.26 0.00 5.34997 -187.982 -5.34997 5.34997 0.98 0.00160917 0.0014898 0.147634 0.137424 48 4589 29 6.99608e+06 353176 865456. 2994.66 25.72 0.941218 0.850375 28354 207349 -1 3392 23 3406 4224 394744 83561 5.80819 5.80819 -205.485 -5.80819 0 0 1.05005e+06 3633.38 0.31 0.19 0.31 -1 -1 0.31 0.071862 0.0652183 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 21.96 vpr 63.75 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30632 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.61 968 15044 5925 7449 1670 63.7 MiB 0.19 0.00 4.12908 -153.541 -4.12908 4.12908 0.98 0.00123589 0.00114083 0.111235 0.103428 40 2900 41 6.99608e+06 235451 706193. 2443.58 17.64 0.632837 0.572026 26914 176310 -1 2629 24 2545 3333 375132 78045 4.53555 4.53555 -173.484 -4.53555 0 0 926341. 3205.33 0.27 0.17 0.26 -1 -1 0.27 0.0573368 0.0519708 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.29 vpr 63.17 MiB 0.03 6828 -1 -1 1 0.03 -1 -1 30316 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.29 689 12763 5259 7126 378 63.2 MiB 0.13 0.00 2.98775 -114.562 -2.98775 2.98775 0.98 0.000982775 0.000913435 0.0660228 0.0614085 44 2263 44 6.99608e+06 353176 787024. 2723.27 3.40 0.288426 0.260561 27778 195446 -1 1584 22 1531 2350 178050 40124 2.77272 2.77272 -116.15 -2.77272 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0426035 0.0385036 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 12.94 vpr 64.18 MiB 0.05 7296 -1 -1 1 0.04 -1 -1 30992 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65716 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.2 MiB 0.76 1185 13432 5656 7470 306 64.2 MiB 0.19 0.00 4.53729 -162.267 -4.53729 4.53729 0.99 0.00142631 0.00132718 0.11215 0.104445 54 3178 24 6.99608e+06 264882 949917. 3286.91 8.22 0.64088 0.579961 29506 232905 -1 2469 23 2712 3915 308978 64124 4.92476 4.92476 -170.168 -4.92476 0 0 1.17392e+06 4061.99 0.35 0.16 0.35 -1 -1 0.35 0.0644859 0.0585522 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 9.65 vpr 62.83 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30420 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.1 MiB 0.36 620 10614 4481 5893 240 62.8 MiB 0.12 0.00 2.85145 -112.009 -2.85145 2.85145 1.02 0.000976465 0.000907112 0.0696132 0.0647251 42 2317 29 6.99608e+06 147157 744469. 2576.02 5.76 0.431102 0.388046 27202 183097 -1 1666 25 1562 2407 189890 41526 3.39852 3.39852 -129.678 -3.39852 0 0 949917. 3286.91 0.28 0.12 0.27 -1 -1 0.28 0.04744 0.0427892 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 19.57 vpr 63.54 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30456 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.7 MiB 0.76 727 9857 3779 5192 886 63.5 MiB 0.12 0.00 3.3422 -117.21 -3.3422 3.3422 0.98 0.000984781 0.000914956 0.0626193 0.0582173 40 2425 29 6.99608e+06 220735 706193. 2443.58 15.23 0.50641 0.454319 26914 176310 -1 1996 23 1713 2249 241143 54214 3.83671 3.83671 -135.29 -3.83671 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0444833 0.0401592 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.52 vpr 64.00 MiB 0.05 7380 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 29 32 393 319 1 247 81 17 17 289 -1 unnamed_device 25.0 MiB 1.86 1127 11631 4219 5566 1846 64.0 MiB 0.15 0.00 3.87283 -130.664 -3.87283 3.87283 0.98 0.00121827 0.00113153 0.0838629 0.0779236 38 3559 35 6.99608e+06 294314 678818. 2348.85 26.00 0.617114 0.556163 26626 170182 -1 2773 21 2177 2847 250577 51115 4.0346 4.0346 -146.118 -4.0346 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0510456 0.0463792 114 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.85 vpr 63.93 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30680 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 407 319 1 250 82 17 17 289 -1 unnamed_device 25.0 MiB 0.99 1132 14856 6162 7872 822 63.9 MiB 0.19 0.00 4.33864 -160.209 -4.33864 4.33864 0.99 0.00127663 0.00118601 0.110301 0.102558 46 3105 46 6.99608e+06 264882 828058. 2865.25 6.14 0.57624 0.521332 28066 200906 -1 2479 21 2449 3338 264344 54541 4.54181 4.54181 -171.665 -4.54181 0 0 1.01997e+06 3529.29 0.32 0.13 0.30 -1 -1 0.32 0.0465817 0.0422487 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.68 vpr 63.72 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30684 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 1.08 1170 5244 1136 3811 297 63.7 MiB 0.09 0.00 4.32144 -158.986 -4.32144 4.32144 0.99 0.00127867 0.0011871 0.0419648 0.0390512 44 3624 36 6.99608e+06 264882 787024. 2723.27 5.78 0.346055 0.312415 27778 195446 -1 2774 26 2902 4030 398630 76727 4.89251 4.89251 -180.849 -4.89251 0 0 997811. 3452.63 0.30 0.18 0.29 -1 -1 0.30 0.0642758 0.0583067 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 10.59 vpr 63.63 MiB 0.04 7200 -1 -1 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.7 MiB 0.75 794 12585 5277 6958 350 63.6 MiB 0.15 0.00 3.32994 -125.061 -3.32994 3.32994 0.98 0.00109287 0.00101519 0.0845679 0.0785525 48 2298 40 6.99608e+06 220735 865456. 2994.66 6.14 0.491587 0.44255 28354 207349 -1 1822 18 1711 1935 170272 37969 3.35652 3.35652 -127.249 -3.35652 0 0 1.05005e+06 3633.38 0.31 0.10 0.31 -1 -1 0.31 0.0406561 0.0368556 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 10.71 vpr 63.91 MiB 0.04 7244 -1 -1 1 0.06 -1 -1 30488 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 25.2 MiB 1.28 937 11260 4683 6230 347 63.9 MiB 0.14 0.00 3.34114 -121.926 -3.34114 3.34114 0.98 0.00109441 0.00101568 0.0751707 0.069833 46 2805 26 6.99608e+06 250167 828058. 2865.25 5.74 0.436563 0.392299 28066 200906 -1 2215 18 1690 2096 160434 35600 3.54641 3.54641 -129.941 -3.54641 0 0 1.01997e+06 3529.29 0.30 0.10 0.29 -1 -1 0.30 0.0403005 0.0364782 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 12.72 vpr 63.73 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.22 946 9881 4003 5314 564 63.7 MiB 0.13 0.00 3.33639 -114.321 -3.33639 3.33639 0.98 0.00119194 0.00110368 0.0703957 0.065458 52 2948 32 6.99608e+06 279598 926341. 3205.33 7.77 0.574804 0.518575 29218 227130 -1 2136 23 1979 2865 213922 50414 3.33101 3.33101 -125.691 -3.33101 0 0 1.14541e+06 3963.36 0.33 0.13 0.34 -1 -1 0.33 0.0537529 0.0486932 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 19.11 vpr 63.50 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.81 820 9872 4067 5268 537 63.5 MiB 0.12 0.00 3.77115 -122.922 -3.77115 3.77115 0.98 0.00109149 0.00101547 0.0672705 0.0625622 40 2570 25 6.99608e+06 264882 706193. 2443.58 14.79 0.532265 0.479008 26914 176310 -1 2124 20 1867 2676 236596 51162 4.55052 4.55052 -149.921 -4.55052 0 0 926341. 3205.33 0.28 0.12 0.20 -1 -1 0.28 0.0438184 0.0397308 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 20.02 vpr 63.44 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30252 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.33 887 12139 5086 6651 402 63.4 MiB 0.14 0.00 3.82453 -131.841 -3.82453 3.82453 1.00 0.00103787 0.000963668 0.0798529 0.0741725 40 2690 29 6.99608e+06 220735 706193. 2443.58 15.02 0.539422 0.484912 26914 176310 -1 2256 21 1992 2655 265047 57347 4.23181 4.23181 -152.511 -4.23181 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.043601 0.039422 89 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.85 vpr 63.83 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 1.12 1045 13430 4937 5959 2534 63.8 MiB 0.16 0.00 3.53869 -131.536 -3.53869 3.53869 0.99 0.00103993 0.000956966 0.0916894 0.0850627 44 3236 30 6.99608e+06 220735 787024. 2723.27 2.97 0.291101 0.263203 27778 195446 -1 2393 22 2046 2510 218761 44319 3.27776 3.27776 -128.463 -3.27776 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0520932 0.0470944 105 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 11.23 vpr 63.35 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.22 786 15688 6044 7337 2307 63.4 MiB 0.17 0.00 3.80415 -134.662 -3.80415 3.80415 0.98 0.00113728 0.00105759 0.0947111 0.0881162 48 2667 32 6.99608e+06 367892 865456. 2994.66 7.20 0.545307 0.492982 28354 207349 -1 2021 23 1922 3010 308923 83639 4.08232 4.08232 -148.515 -4.08232 0 0 1.05005e+06 3633.38 0.31 0.16 0.31 -1 -1 0.31 0.0519895 0.0471495 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 10.24 vpr 63.92 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30632 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 25.0 MiB 0.76 1115 10231 2817 7123 291 63.9 MiB 0.15 0.00 4.17744 -152.022 -4.17744 4.17744 0.98 0.00129603 0.00120575 0.0788717 0.0733104 40 3415 44 6.99608e+06 250167 706193. 2443.58 5.70 0.401221 0.363141 26914 176310 -1 2934 25 2589 3404 437463 99755 4.52755 4.52755 -168.484 -4.52755 0 0 926341. 3205.33 0.27 0.19 0.24 -1 -1 0.27 0.0615197 0.0557264 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 9.59 vpr 63.93 MiB 0.03 7240 -1 -1 1 0.04 -1 -1 30548 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.7 MiB 0.73 1023 12364 5104 6761 499 63.9 MiB 0.16 0.00 4.62599 -163.487 -4.62599 4.62599 0.98 0.00128544 0.00119452 0.0929319 0.0863982 54 3343 50 6.99608e+06 264882 949917. 3286.91 5.02 0.42526 0.385319 29506 232905 -1 2438 21 2294 3117 305512 65516 4.75244 4.75244 -177.551 -4.75244 0 0 1.17392e+06 4061.99 0.34 0.15 0.36 -1 -1 0.34 0.0541536 0.0491578 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 11.14 vpr 64.04 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65572 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.9 MiB 0.80 1222 13788 5033 6896 1859 64.0 MiB 0.19 0.00 3.88963 -144.009 -3.88963 3.88963 1.03 0.00126377 0.00117386 0.101577 0.0943389 46 3792 32 6.99608e+06 264882 828058. 2865.25 6.51 0.55746 0.503814 28066 200906 -1 2778 22 2291 3284 256580 54868 4.3994 4.3994 -153.075 -4.3994 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0548044 0.0496848 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.68 vpr 63.46 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.6 MiB 0.78 692 12241 5462 6298 481 63.5 MiB 0.14 0.00 3.58339 -124.571 -3.58339 3.58339 0.98 0.000981001 0.000910937 0.0776633 0.0721536 46 2396 44 6.99608e+06 191304 828058. 2865.25 3.22 0.315326 0.28455 28066 200906 -1 1796 22 1604 2143 175253 41225 3.70046 3.70046 -130.475 -3.70046 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0430123 0.0388451 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 10.45 vpr 63.81 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30380 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 1.75 1070 13152 5483 7188 481 63.8 MiB 0.17 0.00 4.67127 -156.182 -4.67127 4.67127 0.99 0.00121983 0.00113473 0.0965087 0.0897417 46 3316 42 6.99608e+06 264882 828058. 2865.25 5.01 0.406146 0.367835 28066 200906 -1 2652 22 2521 3637 310666 63193 4.90224 4.90224 -170.087 -4.90224 0 0 1.01997e+06 3529.29 0.30 0.15 0.21 -1 -1 0.30 0.0532788 0.0483655 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.67 vpr 63.92 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30884 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1372 11615 4190 5568 1857 63.9 MiB 0.17 0.00 4.21664 -156.362 -4.21664 4.21664 0.98 0.00140062 0.00130157 0.0901621 0.0838966 48 3281 23 6.99608e+06 323745 865456. 2994.66 5.98 0.54928 0.495491 28354 207349 -1 2712 22 2478 2542 228474 48550 4.28795 4.28795 -167.318 -4.28795 0 0 1.05005e+06 3633.38 0.31 0.14 0.31 -1 -1 0.31 0.0602463 0.0544389 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 8.99 vpr 64.12 MiB 0.03 7392 -1 -1 1 0.03 -1 -1 30452 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65656 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 25.1 MiB 1.34 1100 12733 5272 6860 601 64.1 MiB 0.17 0.00 4.42639 -152.998 -4.42639 4.42639 0.98 0.00130941 0.00121704 0.0962321 0.0894987 50 3137 38 6.99608e+06 323745 902133. 3121.57 3.78 0.403681 0.365813 28642 213929 -1 2397 31 2553 3072 314562 90154 4.7184 4.7184 -159.76 -4.7184 0 0 1.08113e+06 3740.92 0.31 0.18 0.32 -1 -1 0.31 0.0756139 0.0684037 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 13.35 vpr 63.91 MiB 0.03 7332 -1 -1 1 0.04 -1 -1 30496 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 25.0 MiB 2.56 1072 15456 6553 7950 953 63.9 MiB 0.20 0.00 4.02117 -135.45 -4.02117 4.02117 0.99 0.00124589 0.00115675 0.108843 0.101042 54 3033 25 6.99608e+06 323745 949917. 3286.91 6.87 0.548407 0.495012 29506 232905 -1 2539 22 2456 3469 369993 91791 4.2822 4.2822 -147.585 -4.2822 0 0 1.17392e+06 4061.99 0.34 0.17 0.36 -1 -1 0.34 0.0544666 0.0493969 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.87 vpr 63.95 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30556 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 407 319 1 252 83 17 17 289 -1 unnamed_device 25.0 MiB 0.96 985 15563 6705 8342 516 63.9 MiB 0.21 0.00 4.37079 -157.14 -4.37079 4.37079 0.98 0.00129284 0.00120154 0.115234 0.107199 46 3459 48 6.99608e+06 279598 828058. 2865.25 6.03 0.445628 0.404591 28066 200906 -1 2435 24 2773 3900 345445 73632 4.90351 4.90351 -180.423 -4.90351 0 0 1.01997e+06 3529.29 0.30 0.17 0.30 -1 -1 0.30 0.0604524 0.0548259 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 12.06 vpr 63.99 MiB 0.05 7380 -1 -1 1 0.03 -1 -1 30276 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65528 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 25.1 MiB 1.49 968 10931 3850 4814 2267 64.0 MiB 0.14 0.00 3.60679 -119.01 -3.60679 3.60679 0.98 0.00120292 0.00111798 0.0784456 0.0729133 48 2905 26 6.99608e+06 294314 865456. 2994.66 7.00 0.526406 0.473951 28354 207349 -1 2395 21 2109 2731 245554 52643 3.92901 3.92901 -139.144 -3.92901 0 0 1.05005e+06 3633.38 0.30 0.13 0.16 -1 -1 0.30 0.0503585 0.0456573 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 19.63 vpr 63.33 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30252 -1 -1 10 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.4 MiB 0.92 619 8599 3526 4877 196 63.3 MiB 0.11 0.00 2.86245 -112.136 -2.86245 2.86245 0.99 0.000978946 0.000909883 0.0570075 0.0530359 38 2201 49 6.99608e+06 147157 678818. 2348.85 15.11 0.531049 0.476976 26626 170182 -1 1694 22 1504 2357 224815 47084 3.77442 3.77442 -133.235 -3.77442 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0426292 0.0385239 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 23.62 vpr 63.91 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.76 1109 9872 4023 5633 216 63.9 MiB 0.15 0.00 4.66383 -167.571 -4.66383 4.66383 0.98 0.00128539 0.00119447 0.0761997 0.0708938 46 3694 26 6.99608e+06 264882 828058. 2865.25 19.05 0.624002 0.563657 28066 200906 -1 2628 22 2754 3808 344513 69188 4.63814 4.63814 -172.468 -4.63814 0 0 1.01997e+06 3529.29 0.30 0.16 0.29 -1 -1 0.30 0.0555905 0.0504046 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.85 vpr 64.03 MiB 0.07 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1186 7431 1655 4558 1218 64.0 MiB 0.11 0.00 4.63877 -165.425 -4.63877 4.63877 0.98 0.00128868 0.00119731 0.0581811 0.0541291 44 3557 30 6.99608e+06 250167 787024. 2723.27 3.23 0.346518 0.313218 27778 195446 -1 2900 21 2670 3617 341913 68925 5.12834 5.12834 -180.565 -5.12834 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0543235 0.0493428 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.40 vpr 63.55 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 767 11324 4614 6133 577 63.6 MiB 0.13 0.00 3.24452 -113.178 -3.24452 3.24452 0.99 0.00100899 0.000937051 0.0731514 0.0679227 48 2192 37 6.99608e+06 191304 865456. 2994.66 3.86 0.322335 0.291144 28354 207349 -1 1766 23 1501 1773 178296 43013 3.65236 3.65236 -123.017 -3.65236 0 0 1.05005e+06 3633.38 0.31 0.11 0.31 -1 -1 0.31 0.0457672 0.0412366 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 15.61 vpr 63.00 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30476 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.27 622 11544 4964 6246 334 63.0 MiB 0.13 0.00 3.0382 -112.755 -3.0382 3.0382 0.98 0.000952323 0.000884319 0.0735797 0.0684186 40 2024 37 6.99608e+06 161872 706193. 2443.58 11.83 0.519271 0.466186 26914 176310 -1 1710 23 1494 2259 195460 42978 3.59032 3.59032 -127.239 -3.59032 0 0 926341. 3205.33 0.28 0.11 0.26 -1 -1 0.28 0.0357142 0.0322373 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 8.61 vpr 63.73 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30252 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.7 MiB 1.01 1014 12331 5132 6916 283 63.7 MiB 0.15 0.00 4.03648 -138.253 -4.03648 4.03648 0.98 0.00121378 0.00112771 0.0889927 0.0827203 40 2880 45 6.99608e+06 250167 706193. 2443.58 3.91 0.393102 0.356007 26914 176310 -1 2427 20 2214 2632 291742 78992 4.12195 4.12195 -146.004 -4.12195 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0499739 0.0454516 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 23.39 vpr 63.84 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.9 MiB 1.37 1180 13043 5079 5257 2707 63.8 MiB 0.17 0.00 4.34257 -148.625 -4.34257 4.34257 0.98 0.00126199 0.00117183 0.0947756 0.0880301 44 3213 34 6.99608e+06 279598 787024. 2723.27 18.24 0.651466 0.588069 27778 195446 -1 2398 22 1858 2237 185280 39489 4.30841 4.30841 -149.401 -4.30841 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.054473 0.0493743 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.42 vpr 63.75 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.7 MiB 0.38 955 8251 1749 5614 888 63.7 MiB 0.11 0.00 4.24944 -150.187 -4.24944 4.24944 1.01 0.00133853 0.00124572 0.0575846 0.0535538 46 3215 32 6.99608e+06 397324 828058. 2865.25 3.24 0.330155 0.299664 28066 200906 -1 2373 24 2395 3692 289671 67042 4.96765 4.96765 -169.524 -4.96765 0 0 1.01997e+06 3529.29 0.30 0.18 0.28 -1 -1 0.30 0.0685894 0.0623453 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.83 vpr 63.82 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30484 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.8 MiB 1.10 927 13731 4656 6820 2255 63.8 MiB 0.17 0.00 3.66815 -122.398 -3.66815 3.66815 0.99 0.00118544 0.00110243 0.095287 0.0886927 40 3101 50 6.99608e+06 279598 706193. 2443.58 4.01 0.405416 0.367325 26914 176310 -1 2588 20 1993 2842 290848 63043 3.81191 3.81191 -133.286 -3.81191 0 0 926341. 3205.33 0.27 0.14 0.28 -1 -1 0.27 0.0482029 0.0437755 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.61 vpr 63.34 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30596 -1 -1 15 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 27 32 269 226 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 1.00 541 9684 4030 4997 657 63.3 MiB 0.10 0.00 3.64725 -107.533 -3.64725 3.64725 0.99 0.000892954 0.000828893 0.0585201 0.0543652 38 1877 49 6.99608e+06 220735 678818. 2348.85 3.08 0.261093 0.2351 26626 170182 -1 1344 23 1444 1962 162279 39369 3.53546 3.53546 -113.613 -3.53546 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0409036 0.0368107 69 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 8.83 vpr 64.34 MiB 0.06 7496 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.7 MiB 0.96 1463 16639 6243 8235 2161 64.3 MiB 0.26 0.00 4.50929 -160.164 -4.50929 4.50929 0.98 0.00153223 0.001426 0.141847 0.132057 50 4157 28 6.99608e+06 309029 902133. 3121.57 3.83 0.481036 0.437296 28642 213929 -1 3423 22 2928 4099 444602 87947 4.53081 4.53081 -167.95 -4.53081 0 0 1.08113e+06 3740.92 0.31 0.20 0.32 -1 -1 0.31 0.0666748 0.060548 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 14.14 vpr 63.71 MiB 0.04 7448 -1 -1 1 0.03 -1 -1 30556 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.2 MiB 2.99 1356 9013 2876 4534 1603 63.7 MiB 0.13 0.00 4.69386 -166.35 -4.69386 4.69386 0.98 0.00136725 0.00127 0.0702516 0.0652427 46 3528 24 6.99608e+06 323745 828058. 2865.25 7.36 0.60195 0.541678 28066 200906 -1 2752 23 2504 2829 253637 51113 4.64734 4.64734 -169.025 -4.64734 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.0616495 0.0558156 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 8.24 vpr 64.02 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30548 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65556 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 25.0 MiB 1.66 1000 11233 4051 5131 2051 64.0 MiB 0.14 0.00 3.87353 -139.155 -3.87353 3.87353 0.98 0.00109674 0.00101659 0.0763635 0.0708357 44 2952 36 6.99608e+06 220735 787024. 2723.27 2.90 0.281348 0.254272 27778 195446 -1 2250 23 1554 1817 157109 32936 3.9986 3.9986 -149.894 -3.9986 0 0 997811. 3452.63 0.29 0.11 0.29 -1 -1 0.29 0.0496744 0.0449227 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.46 vpr 63.57 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30548 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.68 1169 12636 4456 6200 1980 63.6 MiB 0.16 0.00 3.79315 -142.637 -3.79315 3.79315 0.98 0.00118904 0.00110563 0.0900589 0.0837394 46 2924 31 6.99608e+06 235451 828058. 2865.25 3.01 0.359949 0.326786 28066 200906 -1 2431 21 1764 2368 212060 42392 3.82071 3.82071 -148.651 -3.82071 0 0 1.01997e+06 3529.29 0.30 0.12 0.30 -1 -1 0.30 0.0500529 0.0454155 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 11.30 vpr 64.08 MiB 0.04 7412 -1 -1 1 0.03 -1 -1 30624 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65616 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 25.0 MiB 1.56 1049 15023 6383 8122 518 64.1 MiB 0.21 0.00 3.84635 -136.528 -3.84635 3.84635 1.00 0.00140482 0.00130784 0.1214 0.113012 44 3363 47 6.99608e+06 294314 787024. 2723.27 5.87 0.621266 0.561715 27778 195446 -1 2470 25 2663 3532 252070 56418 4.49241 4.49241 -152.899 -4.49241 0 0 997811. 3452.63 0.29 0.15 0.29 -1 -1 0.29 0.068065 0.0616848 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 11.43 vpr 63.79 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30368 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65320 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.8 MiB 1.27 1036 13788 5638 6916 1234 63.8 MiB 0.17 0.00 3.57859 -121.08 -3.57859 3.57859 0.98 0.00117916 0.00109551 0.0947375 0.0880747 44 3452 49 6.99608e+06 294314 787024. 2723.27 6.52 0.542645 0.490341 27778 195446 -1 2450 24 1788 2551 224017 46811 3.54511 3.54511 -131.933 -3.54511 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0556261 0.0503766 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 10.39 vpr 63.89 MiB 0.07 7272 -1 -1 1 0.05 -1 -1 30544 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.0 MiB 0.59 1035 13906 5211 6648 2047 63.9 MiB 0.19 0.00 4.17744 -150.853 -4.17744 4.17744 0.98 0.00129085 0.00119972 0.105855 0.0983855 46 3521 34 6.99608e+06 250167 828058. 2865.25 5.92 0.406836 0.369215 28066 200906 -1 2410 30 2914 3619 315488 80518 4.17865 4.17865 -152.081 -4.17865 0 0 1.01997e+06 3529.29 0.30 0.18 0.30 -1 -1 0.30 0.0734357 0.066434 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 7.75 vpr 63.91 MiB 0.04 7372 -1 -1 1 0.03 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 25.0 MiB 0.73 1310 11830 3448 6949 1433 63.9 MiB 0.16 0.00 3.36804 -132.941 -3.36804 3.36804 0.98 0.00128126 0.00119199 0.0892669 0.0830558 44 3393 26 6.99608e+06 264882 787024. 2723.27 3.15 0.354941 0.321881 27778 195446 -1 2872 32 2633 3445 524147 180800 3.33851 3.33851 -141.124 -3.33851 0 0 997811. 3452.63 0.29 0.25 0.29 -1 -1 0.29 0.0768976 0.0695879 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.77 vpr 63.38 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.6 MiB 1.63 717 7817 3163 4313 341 63.4 MiB 0.09 0.00 3.32814 -114.16 -3.32814 3.32814 0.98 0.000955741 0.00088751 0.0497552 0.046248 34 2461 34 6.99608e+06 206020 618332. 2139.56 2.68 0.230907 0.207982 25762 151098 -1 1759 23 1753 2246 189651 40195 3.49707 3.49707 -122.509 -3.49707 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0433199 0.0390827 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 18.81 vpr 63.71 MiB 0.04 7064 -1 -1 1 0.05 -1 -1 30132 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.8 MiB 1.33 775 9540 3855 5429 256 63.7 MiB 0.12 0.00 3.76953 -126.145 -3.76953 3.76953 0.98 0.00104451 0.000969423 0.0635131 0.058954 44 2814 40 6.99608e+06 206020 787024. 2723.27 13.79 0.536128 0.480464 27778 195446 -1 1869 23 1776 2081 198020 44240 3.69876 3.69876 -130.312 -3.69876 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0474487 0.0428259 92 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.50 vpr 63.88 MiB 0.05 7236 -1 -1 1 0.03 -1 -1 30492 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.9 MiB 0.66 1165 8336 2649 4367 1320 63.9 MiB 0.11 0.00 3.85324 -142.791 -3.85324 3.85324 0.99 0.00119046 0.0011059 0.0603823 0.0561329 44 3064 21 6.99608e+06 250167 787024. 2723.27 5.17 0.441445 0.398505 27778 195446 -1 2411 22 2128 2940 249685 49395 4.17942 4.17942 -160.618 -4.17942 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0522019 0.0473433 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 10.57 vpr 63.37 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30416 -1 -1 16 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.20 702 10020 4191 5344 485 63.4 MiB 0.11 0.00 3.21559 -105.308 -3.21559 3.21559 0.98 0.000960119 0.000888105 0.0617581 0.0573822 44 2230 35 6.99608e+06 235451 787024. 2723.27 4.73 0.387548 0.347987 27778 195446 -1 1631 20 1295 1451 120129 27266 3.33266 3.33266 -113.439 -3.33266 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0386783 0.0349162 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 19.11 vpr 63.53 MiB 0.03 7032 -1 -1 1 0.04 -1 -1 30412 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.7 MiB 0.70 805 12628 5356 6957 315 63.5 MiB 0.16 0.00 3.56959 -132.322 -3.56959 3.56959 0.93 0.00112305 0.00105223 0.0878348 0.0820228 40 2423 42 6.99608e+06 191304 706193. 2443.58 14.81 0.582819 0.524562 26914 176310 -1 2141 22 1897 2360 282046 75179 3.48281 3.48281 -142.633 -3.48281 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0451958 0.0408454 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 12.38 vpr 63.87 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30412 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 31 32 387 307 1 239 81 17 17 289 -1 unnamed_device 24.8 MiB 1.15 913 13381 5622 7065 694 63.9 MiB 0.17 0.00 4.07038 -142.271 -4.07038 4.07038 0.99 0.00124129 0.00114466 0.097701 0.0908508 62 2282 22 6.99608e+06 264882 1.05005e+06 3633.38 7.29 0.544787 0.492219 30946 263737 -1 1852 20 1918 2559 171302 40197 3.79825 3.79825 -137.974 -3.79825 0 0 1.30136e+06 4502.97 0.38 0.11 0.42 -1 -1 0.38 0.0493117 0.0449352 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 18.84 vpr 63.29 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 31 32 308 262 1 193 76 17 17 289 -1 unnamed_device 24.4 MiB 2.27 793 12236 4782 5589 1865 63.3 MiB 0.14 0.00 3.3327 -113.287 -3.3327 3.3327 1.01 0.000990615 0.000919476 0.0787627 0.0731753 40 2206 23 6.99608e+06 191304 706193. 2443.58 12.98 0.441093 0.395914 26914 176310 -1 2007 20 1305 1639 185509 37968 3.17071 3.17071 -118.792 -3.17071 0 0 926341. 3205.33 0.27 0.10 0.21 -1 -1 0.27 0.0399189 0.0360353 82 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 25.85 vpr 63.82 MiB 0.04 7280 -1 -1 1 0.03 -1 -1 30488 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.7 MiB 1.58 886 14678 6217 7844 617 63.8 MiB 0.18 0.00 3.48779 -124.494 -3.48779 3.48779 0.99 0.00122336 0.00113196 0.103586 0.0962505 48 2635 33 6.99608e+06 264882 865456. 2994.66 20.49 0.670225 0.604061 28354 207349 -1 2102 21 1811 2534 226609 52721 3.35086 3.35086 -125.619 -3.35086 0 0 1.05005e+06 3633.38 0.31 0.13 0.31 -1 -1 0.31 0.0510184 0.0462891 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 10.57 vpr 64.25 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65788 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1136 16081 5903 7938 2240 64.2 MiB 0.21 0.00 4.59961 -156.224 -4.59961 4.59961 0.98 0.0013033 0.00121041 0.116482 0.108209 46 3446 23 6.99608e+06 323745 828058. 2865.25 5.82 0.523537 0.472392 28066 200906 -1 2674 22 2612 3589 291846 60445 4.38304 4.38304 -158.813 -4.38304 0 0 1.01997e+06 3529.29 0.30 0.15 0.29 -1 -1 0.30 0.0567289 0.0514679 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 12.26 vpr 63.59 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 1.69 1137 10050 3205 5445 1400 63.6 MiB 0.12 0.00 3.15669 -124.76 -3.15669 3.15669 0.99 0.00105954 0.000982996 0.064933 0.0602341 38 3112 46 6.99608e+06 220735 678818. 2348.85 6.89 0.338263 0.304946 26626 170182 -1 2424 23 1902 2790 221325 48440 3.22466 3.22466 -127.608 -3.22466 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0478283 0.0431728 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.19 vpr 63.55 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.6 MiB 0.73 820 13856 4964 6926 1966 63.5 MiB 0.16 0.00 3.30794 -122.442 -3.30794 3.30794 0.99 0.00108356 0.00100641 0.0937418 0.0870107 46 2378 42 6.99608e+06 206020 828058. 2865.25 3.71 0.357168 0.322763 28066 200906 -1 1864 27 1896 2394 249024 73856 3.56611 3.56611 -129.525 -3.56611 0 0 1.01997e+06 3529.29 0.30 0.15 0.30 -1 -1 0.30 0.055426 0.049996 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.36 vpr 64.00 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30724 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65540 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.90 1239 11118 3581 5407 2130 64.0 MiB 0.16 0.00 3.83715 -144.315 -3.83715 3.83715 0.98 0.00128387 0.00119459 0.0857982 0.0800016 44 2986 36 6.99608e+06 264882 787024. 2723.27 2.68 0.327795 0.297548 27778 195446 -1 2356 24 2202 2651 177211 38689 4.23262 4.23262 -161.679 -4.23262 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0592052 0.0536768 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.73 vpr 63.85 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.8 MiB 1.53 912 9160 3705 5067 388 63.8 MiB 0.14 0.00 3.41124 -117.288 -3.41124 3.41124 0.99 0.00117099 0.00108837 0.0692587 0.0645264 38 3131 30 6.99608e+06 309029 678818. 2348.85 5.61 0.33561 0.303601 26626 170182 -1 2437 25 2136 2811 246062 52450 3.51187 3.51187 -127.239 -3.51187 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0565102 0.0511017 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.22 vpr 63.92 MiB 0.03 7392 -1 -1 1 0.03 -1 -1 30768 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.88 1399 13316 4006 7788 1522 63.9 MiB 0.19 0.00 4.54237 -164.626 -4.54237 4.54237 0.99 0.00136151 0.00126395 0.103933 0.0965818 44 3828 33 6.99608e+06 323745 787024. 2723.27 5.55 0.595001 0.537084 27778 195446 -1 3099 23 3153 3792 325892 66383 4.92794 4.92794 -184.588 -4.92794 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0638443 0.0577992 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 9.24 vpr 62.91 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30292 -1 -1 11 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.3 MiB 0.86 514 10149 4253 5499 397 62.9 MiB 0.11 0.00 2.85721 -96.25 -2.85721 2.85721 0.98 0.000901225 0.000836966 0.0615519 0.0571831 50 1538 19 6.99608e+06 161872 902133. 3121.57 4.90 0.349763 0.314371 28642 213929 -1 1266 21 1014 1538 128686 34394 3.16607 3.16607 -108.714 -3.16607 0 0 1.08113e+06 3740.92 0.30 0.09 0.17 -1 -1 0.30 0.0378887 0.0341998 58 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 8.48 vpr 63.90 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 1.65 1197 12863 4931 5522 2410 63.9 MiB 0.17 0.00 4.80843 -163.702 -4.80843 4.80843 1.01 0.00141922 0.00133255 0.0971559 0.0903611 44 3624 28 6.99608e+06 279598 787024. 2723.27 3.03 0.35453 0.321909 27778 195446 -1 2581 22 2437 3121 244354 52294 5.2881 5.2881 -178.859 -5.2881 0 0 997811. 3452.63 0.29 0.14 0.29 -1 -1 0.29 0.0560731 0.0509236 119 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.02 vpr 63.96 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1197 13324 4707 7364 1253 64.0 MiB 0.16 0.00 4.41342 -162.024 -4.41342 4.41342 0.98 0.00116191 0.00107961 0.0936568 0.086984 44 3277 26 6.99608e+06 235451 787024. 2723.27 3.47 0.349502 0.316528 27778 195446 -1 2656 23 3057 3860 398409 77530 4.54309 4.54309 -171.488 -4.54309 0 0 997811. 3452.63 0.30 0.17 0.29 -1 -1 0.30 0.0524545 0.0474561 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.28 vpr 63.85 MiB 0.05 7260 -1 -1 1 0.04 -1 -1 30448 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.7 MiB 0.87 1122 13403 4777 5917 2709 63.8 MiB 0.18 0.00 3.33684 -128.047 -3.33684 3.33684 0.98 0.00126346 0.001175 0.098271 0.0913137 48 2809 27 6.99608e+06 279598 865456. 2994.66 5.66 0.574288 0.518819 28354 207349 -1 2454 20 2058 2679 207108 43113 3.46381 3.46381 -137.519 -3.46381 0 0 1.05005e+06 3633.38 0.31 0.12 0.31 -1 -1 0.31 0.0513289 0.0466083 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 10.80 vpr 64.14 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30800 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65684 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.5 MiB 0.89 1505 15584 4795 8564 2225 64.1 MiB 0.22 0.00 4.92348 -178.984 -4.92348 4.92348 0.98 0.0015459 0.00143843 0.131846 0.122745 42 4337 43 6.99608e+06 323745 744469. 2576.02 5.99 0.688237 0.622629 27202 183097 -1 3379 24 3229 3715 373430 73695 5.2394 5.2394 -197.176 -5.2394 0 0 949917. 3286.91 0.28 0.19 0.27 -1 -1 0.28 0.0722591 0.0655551 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 9.26 vpr 62.96 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.3 MiB 1.41 575 8449 3504 4687 258 63.0 MiB 0.08 0.00 2.79195 -95.9589 -2.79195 2.79195 0.98 0.000803404 0.000744419 0.0453023 0.0419922 38 1829 20 6.99608e+06 191304 678818. 2348.85 4.34 0.277789 0.247796 26626 170182 -1 1426 31 955 974 152747 55620 2.42362 2.42362 -91.7739 -2.42362 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0462116 0.0412469 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 11.00 vpr 63.63 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 30 32 296 244 1 166 76 17 17 289 -1 unnamed_device 24.9 MiB 2.84 812 8236 3162 3930 1144 63.6 MiB 0.10 0.00 3.41559 -120.975 -3.41559 3.41559 0.98 0.000986291 0.000916994 0.0531706 0.0494322 36 2215 24 6.99608e+06 206020 648988. 2245.63 4.61 0.358274 0.322326 26050 158493 -1 1838 23 1615 2353 245331 47076 3.24592 3.24592 -128.469 -3.24592 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.045327 0.040955 71 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 12.16 vpr 63.50 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30112 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.7 MiB 0.33 719 10316 3884 5163 1269 63.5 MiB 0.13 0.00 3.36114 -127.044 -3.36114 3.36114 0.98 0.00103563 0.000962011 0.0691287 0.0642453 56 2048 26 6.99608e+06 176588 973134. 3367.25 8.09 0.454181 0.408743 29794 239141 -1 1782 19 1748 2723 235475 53208 3.35381 3.35381 -133.698 -3.35381 0 0 1.19926e+06 4149.71 0.35 0.12 0.37 -1 -1 0.35 0.0401431 0.0363492 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.89 vpr 63.17 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.84 495 10819 4262 4978 1579 63.2 MiB 0.11 0.00 3.27465 -89.1389 -3.27465 3.27465 0.98 0.000839835 0.000780668 0.0593667 0.0551617 38 1677 29 6.99608e+06 264882 678818. 2348.85 2.60 0.245242 0.220386 26626 170182 -1 1301 17 961 1236 87175 20491 3.24827 3.24827 -100.814 -3.24827 0 0 902133. 3121.57 0.26 0.07 0.25 -1 -1 0.26 0.0299988 0.027027 67 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.82 vpr 63.76 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.72 1340 16005 6763 8808 434 63.8 MiB 0.21 0.00 3.73195 -141.272 -3.73195 3.73195 0.99 0.00132364 0.00123004 0.120113 0.111682 48 3725 24 6.99608e+06 294314 865456. 2994.66 6.25 0.553452 0.500386 28354 207349 -1 3121 23 2954 4246 364964 73955 3.88482 3.88482 -150.64 -3.88482 0 0 1.05005e+06 3633.38 0.31 0.17 0.32 -1 -1 0.31 0.0602901 0.0546039 127 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.82 vpr 64.07 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30364 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65608 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 25.1 MiB 0.96 1059 13477 4799 6867 1811 64.1 MiB 0.18 0.00 4.24008 -145.447 -4.24008 4.24008 0.99 0.00128966 0.0011958 0.0978037 0.0908755 44 3376 42 6.99608e+06 323745 787024. 2723.27 3.06 0.376617 0.341439 27778 195446 -1 2413 23 2660 3570 286708 61570 4.1599 4.1599 -150.002 -4.1599 0 0 997811. 3452.63 0.30 0.15 0.29 -1 -1 0.30 0.059241 0.053727 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 22.55 vpr 63.51 MiB 0.05 6880 -1 -1 14 0.26 -1 -1 32892 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 280 312 1 209 83 17 17 289 -1 unnamed_device 24.5 MiB 2.05 1259 12503 3522 6847 2134 63.5 MiB 0.18 0.00 8.52371 -172.994 -8.52371 8.52371 0.98 0.00150933 0.00139941 0.111996 0.104022 38 3278 28 6.79088e+06 255968 678818. 2348.85 16.64 0.790541 0.715183 25966 169698 -1 2720 19 1268 3428 190355 41725 7.30396 7.30396 -164.862 -7.30396 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0608952 0.055534 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 9.18 vpr 63.32 MiB 0.03 7128 -1 -1 14 0.28 -1 -1 32924 -1 -1 22 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 277 309 1 212 84 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1185 7770 1967 4869 934 63.3 MiB 0.12 0.00 8.32669 -166.781 -8.32669 8.32669 0.98 0.00152296 0.00141545 0.0693837 0.0644824 38 3350 47 6.79088e+06 296384 678818. 2348.85 4.01 0.463557 0.419765 25966 169698 -1 2617 17 1283 3522 187473 41658 7.62603 7.62603 -161.662 -7.62603 0 0 902133. 3121.57 0.28 0.12 0.24 -1 -1 0.28 0.0558468 0.0509494 131 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 11.57 vpr 63.20 MiB 0.05 6908 -1 -1 11 0.23 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 274 306 1 201 84 17 17 289 -1 unnamed_device 24.2 MiB 1.83 1162 9234 2657 4676 1901 63.2 MiB 0.14 0.00 6.64553 -144.864 -6.64553 6.64553 0.98 0.00153034 0.00142157 0.0821041 0.0763358 44 3205 26 6.79088e+06 269440 787024. 2723.27 5.82 0.557466 0.504129 27118 194962 -1 2588 17 1333 3942 200823 47344 5.78735 5.78735 -138.636 -5.78735 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0559974 0.0511497 134 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 7.85 vpr 63.14 MiB 0.05 6980 -1 -1 12 0.33 -1 -1 32780 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 29 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1052 7823 1903 4660 1260 63.1 MiB 0.12 0.00 7.35214 -141.259 -7.35214 7.35214 0.99 0.00154526 0.00143751 0.0730758 0.0678544 36 3305 22 6.79088e+06 296384 648988. 2245.63 2.63 0.327211 0.296908 25390 158009 -1 2579 21 1320 4172 234382 52889 6.71838 6.71838 -139.593 -6.71838 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0655354 0.0595944 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 8.55 vpr 63.59 MiB 0.05 6760 -1 -1 13 0.30 -1 -1 32980 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 317 349 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1363 10813 2441 7327 1045 63.6 MiB 0.17 0.00 7.99767 -164.707 -7.99767 7.99767 0.98 0.00179505 0.00166902 0.104731 0.0974449 38 3934 20 6.79088e+06 323328 678818. 2348.85 2.50 0.408348 0.371853 25966 169698 -1 3011 22 1766 4774 250477 55753 7.04976 7.04976 -157.102 -7.04976 0 0 902133. 3121.57 0.27 0.17 0.25 -1 -1 0.27 0.0804018 0.0732898 159 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 8.95 vpr 63.33 MiB 0.04 6860 -1 -1 12 0.27 -1 -1 32644 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 299 331 1 227 88 17 17 289 -1 unnamed_device 24.4 MiB 2.46 1549 8083 2094 5260 729 63.3 MiB 0.12 0.00 7.66842 -163.175 -7.66842 7.66842 0.99 0.00163559 0.00151896 0.0726358 0.0674374 38 3850 24 6.79088e+06 323328 678818. 2348.85 2.64 0.349244 0.316926 25966 169698 -1 3181 17 1616 4754 258273 55792 6.59546 6.59546 -153.004 -6.59546 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0595641 0.0545318 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 10.76 vpr 62.78 MiB 0.04 6816 -1 -1 12 0.18 -1 -1 32284 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 24.0 MiB 1.39 891 7008 1614 4986 408 62.8 MiB 0.09 0.00 6.92259 -128.472 -6.92259 6.92259 0.98 0.00112748 0.00104453 0.0516005 0.0479196 36 3003 50 6.79088e+06 269440 648988. 2245.63 5.80 0.364807 0.329801 25390 158009 -1 2366 16 1111 2994 182692 39799 5.95423 5.95423 -125.13 -5.95423 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0402622 0.0367111 100 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 11.55 vpr 63.05 MiB 0.05 6964 -1 -1 11 0.18 -1 -1 32736 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 264 296 1 191 79 17 17 289 -1 unnamed_device 24.1 MiB 1.40 1048 6501 1621 4615 265 63.1 MiB 0.11 0.00 6.73073 -140.451 -6.73073 6.73073 0.98 0.00143184 0.00133058 0.0599505 0.0557423 38 3181 50 6.79088e+06 215552 678818. 2348.85 6.40 0.431961 0.389903 25966 169698 -1 2614 18 1278 3583 221292 47394 5.94304 5.94304 -136.278 -5.94304 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0551354 0.0502517 113 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 11.49 vpr 62.91 MiB 0.03 6700 -1 -1 12 0.17 -1 -1 32436 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 2.66 1069 9881 3201 5129 1551 62.9 MiB 0.13 0.00 6.55603 -138.983 -6.55603 6.55603 0.98 0.00125504 0.0011644 0.0748878 0.069448 38 2894 23 6.79088e+06 242496 678818. 2348.85 5.14 0.534618 0.48317 25966 169698 -1 2390 16 1075 2453 150732 33088 5.62523 5.62523 -133.585 -5.62523 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0453004 0.0414574 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 11.03 vpr 62.98 MiB 0.07 6688 -1 -1 13 0.19 -1 -1 32780 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 253 285 1 179 79 17 17 289 -1 unnamed_device 24.1 MiB 1.26 1133 8022 2176 4612 1234 63.0 MiB 0.11 0.00 7.34973 -166.511 -7.34973 7.34973 1.05 0.00136007 0.00126319 0.0684408 0.0635921 34 3342 45 6.79088e+06 202080 618332. 2139.56 5.91 0.418958 0.378606 25102 150614 -1 2739 26 1199 3113 309925 108089 6.25527 6.25527 -158.874 -6.25527 0 0 787024. 2723.27 0.24 0.18 0.22 -1 -1 0.24 0.0695489 0.0630788 106 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 8.45 vpr 62.78 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32660 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 217 249 1 156 77 17 17 289 -1 unnamed_device 23.8 MiB 1.67 755 12465 4696 5677 2092 62.8 MiB 0.15 0.00 7.40292 -146.389 -7.40292 7.40292 0.98 0.00115916 0.00107392 0.0932809 0.0863578 36 2532 44 6.79088e+06 202080 648988. 2245.63 3.11 0.361247 0.32701 25390 158009 -1 1843 14 938 2417 141576 35068 6.33367 6.33367 -138.888 -6.33367 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.036383 0.0331906 94 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 8.15 vpr 62.77 MiB 0.04 6676 -1 -1 12 0.21 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 227 259 1 169 80 17 17 289 -1 unnamed_device 23.8 MiB 1.50 1007 10744 3628 5580 1536 62.8 MiB 0.13 0.00 6.58409 -154.656 -6.58409 6.58409 0.98 0.00119003 0.00109481 0.0771085 0.0713561 40 2417 29 6.79088e+06 215552 706193. 2443.58 2.92 0.343147 0.310244 26254 175826 -1 2278 17 983 2520 160446 35786 5.9396 5.9396 -152.019 -5.9396 0 0 926341. 3205.33 0.27 0.10 0.25 -1 -1 0.27 0.0428083 0.0389729 92 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 11.54 vpr 63.18 MiB 0.03 6920 -1 -1 13 0.26 -1 -1 32992 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 306 338 1 223 84 17 17 289 -1 unnamed_device 24.3 MiB 1.42 1319 6306 1320 4344 642 63.2 MiB 0.11 0.00 7.99515 -167.704 -7.99515 7.99515 0.98 0.00168937 0.00156926 0.0633389 0.0588334 36 3719 41 6.79088e+06 269440 648988. 2245.63 6.36 0.482722 0.437043 25390 158009 -1 2968 18 1317 3657 222638 49561 6.83836 6.83836 -160.027 -6.83836 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0642168 0.0586376 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 8.23 vpr 63.17 MiB 0.04 6868 -1 -1 14 0.30 -1 -1 33124 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 302 334 1 225 85 17 17 289 -1 unnamed_device 24.3 MiB 1.72 1310 10315 2634 5767 1914 63.2 MiB 0.16 0.00 9.08665 -181.887 -9.08665 9.08665 0.97 0.00171467 0.00159485 0.0977872 0.0908818 38 3358 50 6.79088e+06 282912 678818. 2348.85 2.52 0.449069 0.408064 25966 169698 -1 2822 26 1370 3708 315204 115909 7.93045 7.93045 -171.746 -7.93045 0 0 902133. 3121.57 0.28 0.19 0.24 -1 -1 0.28 0.0868261 0.0790816 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 16.33 vpr 62.93 MiB 0.04 6928 -1 -1 11 0.17 -1 -1 32536 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 29 32 238 270 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 1.18 1021 12156 3295 7057 1804 62.9 MiB 0.15 0.00 7.03294 -137.697 -7.03294 7.03294 0.98 0.00125618 0.00116511 0.0910184 0.0843675 28 3349 46 6.79088e+06 269440 531479. 1839.03 11.47 0.496205 0.448595 23950 126010 -1 2828 20 1424 3365 300070 75686 5.95068 5.95068 -136.607 -5.95068 0 0 648988. 2245.63 0.20 0.16 0.18 -1 -1 0.20 0.0581706 0.0532646 110 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 10.10 vpr 63.38 MiB 0.04 7012 -1 -1 12 0.27 -1 -1 32852 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 306 338 1 235 84 17 17 289 -1 unnamed_device 24.4 MiB 2.09 1362 4476 730 3513 233 63.4 MiB 0.10 0.00 8.16506 -163.52 -8.16506 8.16506 0.99 0.00170669 0.00158746 0.0505168 0.0473162 44 3792 27 6.79088e+06 269440 787024. 2723.27 4.08 0.36692 0.333594 27118 194962 -1 3223 20 1589 4641 269161 58714 6.98366 6.98366 -153.983 -6.98366 0 0 997811. 3452.63 0.29 0.15 0.28 -1 -1 0.29 0.0712596 0.0651021 144 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 9.80 vpr 63.43 MiB 0.04 7012 -1 -1 13 0.26 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 311 343 1 224 85 17 17 289 -1 unnamed_device 24.5 MiB 1.26 1298 6781 1433 4660 688 63.4 MiB 0.11 0.00 8.52276 -172.733 -8.52276 8.52276 0.98 0.00172116 0.00159954 0.067829 0.0630558 38 3512 25 6.79088e+06 282912 678818. 2348.85 4.73 0.43759 0.396789 25966 169698 -1 2766 17 1316 3904 208361 46417 7.26465 7.26465 -161.383 -7.26465 0 0 902133. 3121.57 0.26 0.13 0.27 -1 -1 0.26 0.0624918 0.0571353 145 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 11.21 vpr 62.72 MiB 0.06 6688 -1 -1 12 0.16 -1 -1 32412 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 230 262 1 175 79 17 17 289 -1 unnamed_device 24.2 MiB 2.05 1085 10050 2687 6415 948 62.7 MiB 0.13 0.00 6.98054 -167.591 -6.98054 6.98054 0.98 0.00125789 0.00116782 0.0778502 0.0722241 36 2968 32 6.79088e+06 202080 648988. 2245.63 5.52 0.373312 0.338264 25390 158009 -1 2408 14 880 2413 151176 32769 6.11878 6.11878 -156.629 -6.11878 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.0392052 0.0358144 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 10.36 vpr 62.27 MiB 0.03 6792 -1 -1 10 0.10 -1 -1 32100 -1 -1 13 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 176 208 1 137 75 17 17 289 -1 unnamed_device 23.7 MiB 2.19 617 10029 3756 5049 1224 62.3 MiB 0.10 0.00 4.90111 -115.952 -4.90111 4.90111 1.02 0.000897996 0.000832884 0.0597983 0.0554403 40 1753 20 6.79088e+06 175136 706193. 2443.58 4.64 0.309539 0.2784 26254 175826 -1 1643 15 819 1894 125275 29939 4.63261 4.63261 -118.372 -4.63261 0 0 926341. 3205.33 0.27 0.07 0.26 -1 -1 0.27 0.0294914 0.0267142 68 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.05 vpr 62.90 MiB 0.04 6716 -1 -1 13 0.16 -1 -1 32668 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 226 258 1 169 79 17 17 289 -1 unnamed_device 24.1 MiB 1.90 894 8698 2042 6119 537 62.9 MiB 0.11 0.00 7.51507 -159.301 -7.51507 7.51507 0.98 0.00122624 0.00113878 0.0669362 0.0621368 36 2673 34 6.79088e+06 215552 648988. 2245.63 2.45 0.294174 0.266594 25390 158009 -1 2112 18 1000 2423 137501 31899 6.45897 6.45897 -150.544 -6.45897 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.047805 0.0436957 98 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 8.24 vpr 63.28 MiB 0.04 6800 -1 -1 13 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 302 334 1 216 85 17 17 289 -1 unnamed_device 24.5 MiB 1.03 1191 6781 1467 4296 1018 63.3 MiB 0.11 0.00 7.58328 -158.293 -7.58328 7.58328 0.98 0.00165124 0.00153514 0.0652906 0.0606834 36 3982 39 6.79088e+06 282912 648988. 2245.63 3.34 0.416006 0.377229 25390 158009 -1 2942 21 1749 5172 312449 69176 6.53388 6.53388 -151.617 -6.53388 0 0 828058. 2865.25 0.25 0.17 0.23 -1 -1 0.25 0.0711815 0.0648259 142 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 11.53 vpr 63.45 MiB 0.05 7036 -1 -1 13 0.28 -1 -1 33184 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 299 331 1 221 84 17 17 289 -1 unnamed_device 24.4 MiB 1.49 1314 6489 1394 4653 442 63.4 MiB 0.11 0.00 7.94947 -168.322 -7.94947 7.94947 0.99 0.00165971 0.00154212 0.0636737 0.0592118 42 3718 50 6.79088e+06 269440 744469. 2576.02 6.15 0.642854 0.581308 26542 182613 -1 2847 16 1303 3740 217011 48494 7.30922 7.30922 -163.182 -7.30922 0 0 949917. 3286.91 0.28 0.13 0.27 -1 -1 0.28 0.0572043 0.0523236 142 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 8.92 vpr 61.96 MiB 0.04 6620 -1 -1 9 0.11 -1 -1 32080 -1 -1 16 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.4 MiB 1.88 668 5964 2208 3025 731 62.0 MiB 0.06 0.00 5.26474 -98.9706 -5.26474 5.26474 0.98 0.000777827 0.000719143 0.0321546 0.0298308 32 2045 37 6.79088e+06 215552 586450. 2029.24 3.66 0.250201 0.223334 24814 144142 -1 1710 25 676 1533 129471 28422 5.24684 5.24684 -103.006 -5.24684 0 0 744469. 2576.02 0.22 0.09 0.21 -1 -1 0.22 0.0377842 0.03393 65 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 9.27 vpr 63.42 MiB 0.05 6812 -1 -1 13 0.30 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 304 336 1 219 86 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1268 8213 1986 5619 608 63.4 MiB 0.13 0.00 8.5143 -170.557 -8.5143 8.5143 0.99 0.00164537 0.00152913 0.0782982 0.0727066 36 3988 41 6.79088e+06 296384 648988. 2245.63 3.68 0.450588 0.408888 25390 158009 -1 3257 17 1587 4343 288858 62721 7.33967 7.33967 -164.8 -7.33967 0 0 828058. 2865.25 0.25 0.15 0.22 -1 -1 0.25 0.0602335 0.0549124 136 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.94 vpr 62.33 MiB 0.04 6632 -1 -1 8 0.09 -1 -1 31052 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 155 187 1 127 82 17 17 289 -1 unnamed_device 23.6 MiB 2.23 670 7380 1620 5618 142 62.3 MiB 0.07 0.00 4.48934 -96.8721 -4.48934 4.48934 0.99 0.000782886 0.000724705 0.0347621 0.0321993 30 1888 22 6.79088e+06 242496 556674. 1926.21 1.35 0.135512 0.121826 24526 138013 -1 1502 17 625 1326 78065 18560 3.93104 3.93104 -98.6496 -3.93104 0 0 706193. 2443.58 0.22 0.06 0.19 -1 -1 0.22 0.0280055 0.0252394 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 30.81 vpr 63.05 MiB 0.05 6872 -1 -1 15 0.26 -1 -1 33224 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 253 285 1 201 81 17 17 289 -1 unnamed_device 24.2 MiB 2.02 1232 7781 1881 4665 1235 63.1 MiB 0.12 0.00 8.77517 -179.005 -8.77517 8.77517 0.99 0.00140661 0.00130571 0.0667198 0.0620679 38 3221 29 6.79088e+06 229024 678818. 2348.85 24.90 0.666394 0.600536 25966 169698 -1 2626 20 1276 3730 190221 42306 7.62608 7.62608 -168.137 -7.62608 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0591122 0.0538277 119 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 11.32 vpr 63.46 MiB 0.02 6808 -1 -1 12 0.25 -1 -1 32904 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 309 341 1 219 86 17 17 289 -1 unnamed_device 24.6 MiB 1.56 1237 8780 2137 5860 783 63.5 MiB 0.14 0.00 6.99167 -152.762 -6.99167 6.99167 0.98 0.00168236 0.00156222 0.0831416 0.07719 36 3644 25 6.79088e+06 296384 648988. 2245.63 5.94 0.464013 0.421056 25390 158009 -1 3034 17 1416 4276 243919 54484 6.04382 6.04382 -143.931 -6.04382 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0617474 0.0564537 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 9.34 vpr 63.15 MiB 0.02 6800 -1 -1 13 0.27 -1 -1 32860 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 289 321 1 208 84 17 17 289 -1 unnamed_device 24.3 MiB 1.52 1199 7038 1664 4741 633 63.2 MiB 0.11 0.00 8.4695 -169.121 -8.4695 8.4695 0.98 0.00157592 0.00146561 0.0651862 0.0605972 38 3323 22 6.79088e+06 269440 678818. 2348.85 3.95 0.402076 0.364089 25966 169698 -1 2675 22 1357 3651 202020 45400 7.1594 7.1594 -159.021 -7.1594 0 0 902133. 3121.57 0.30 0.14 0.24 -1 -1 0.30 0.071945 0.0656389 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 8.25 vpr 62.91 MiB 0.04 6664 -1 -1 12 0.17 -1 -1 32344 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 239 271 1 180 82 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1028 10406 3334 5200 1872 62.9 MiB 0.14 0.00 6.75626 -149.177 -6.75626 6.75626 0.98 0.0012689 0.00117663 0.0780377 0.0723758 38 2689 25 6.79088e+06 242496 678818. 2348.85 2.99 0.355334 0.321814 25966 169698 -1 2219 16 1008 2677 149979 33347 5.94309 5.94309 -141.758 -5.94309 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0440949 0.0402338 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 9.78 vpr 62.97 MiB 0.04 6608 -1 -1 11 0.15 -1 -1 32624 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 30 32 213 245 1 163 78 17 17 289 -1 unnamed_device 24.2 MiB 1.44 931 5722 1363 3955 404 63.0 MiB 0.07 0.00 6.65788 -139.347 -6.65788 6.65788 0.98 0.00114184 0.00105924 0.0427366 0.0396287 46 2258 16 6.79088e+06 215552 828058. 2865.25 4.70 0.377393 0.340257 27406 200422 -1 1951 17 845 2003 118559 25924 5.63758 5.63758 -129.743 -5.63758 0 0 1.01997e+06 3529.29 0.29 0.09 0.29 -1 -1 0.29 0.0414403 0.0377238 93 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 9.96 vpr 62.50 MiB 0.02 6852 -1 -1 11 0.17 -1 -1 32476 -1 -1 18 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 28 32 221 253 1 176 78 17 17 289 -1 unnamed_device 24.0 MiB 0.95 902 8876 2223 6138 515 62.5 MiB 0.11 0.00 6.72053 -131.848 -6.72053 6.72053 1.00 0.00120632 0.00111976 0.0682971 0.0633793 44 2610 27 6.79088e+06 242496 787024. 2723.27 5.30 0.45327 0.409221 27118 194962 -1 2108 16 955 2692 161102 35777 5.78973 5.78973 -122.112 -5.78973 0 0 997811. 3452.63 0.30 0.10 0.29 -1 -1 0.30 0.0422924 0.0386185 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 9.97 vpr 63.22 MiB 0.03 6664 -1 -1 12 0.19 -1 -1 32384 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 273 305 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1208 10050 2615 5357 2078 63.2 MiB 0.14 0.00 7.12845 -160.373 -7.12845 7.12845 0.98 0.00144584 0.00134248 0.0860114 0.0798748 38 3673 37 6.79088e+06 242496 678818. 2348.85 4.35 0.433795 0.392621 25966 169698 -1 2739 19 1453 3619 206631 46049 6.38943 6.38943 -154.802 -6.38943 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0579641 0.052839 118 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 8.81 vpr 62.64 MiB 0.02 6924 -1 -1 11 0.19 -1 -1 32584 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 238 270 1 180 81 17 17 289 -1 unnamed_device 24.0 MiB 1.49 915 11456 3671 5623 2162 62.6 MiB 0.15 0.00 6.45483 -141.873 -6.45483 6.45483 0.97 0.00129117 0.00119836 0.0885217 0.0821489 36 2827 21 6.79088e+06 242496 648988. 2245.63 3.56 0.365165 0.330758 25390 158009 -1 2238 22 1486 4007 227955 53315 5.61055 5.61055 -139.174 -5.61055 0 0 828058. 2865.25 0.29 0.13 0.23 -1 -1 0.29 0.0582653 0.0529671 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 9.52 vpr 62.50 MiB 0.03 6736 -1 -1 10 0.14 -1 -1 32648 -1 -1 17 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 29 32 221 253 1 158 78 17 17 289 -1 unnamed_device 24.0 MiB 1.34 780 5224 1169 3841 214 62.5 MiB 0.07 0.00 6.56873 -131.467 -6.56873 6.56873 0.98 0.0012058 0.00111849 0.0415386 0.0385744 42 2156 29 6.79088e+06 229024 744469. 2576.02 4.56 0.436928 0.393962 26542 182613 -1 1782 27 838 2596 394538 207972 5.61747 5.61747 -123.734 -5.61747 0 0 949917. 3286.91 0.28 0.21 0.27 -1 -1 0.28 0.0636315 0.0577097 102 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 12.67 vpr 63.62 MiB 0.05 7152 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1527 9158 2380 5973 805 63.6 MiB 0.15 0.00 7.91413 -169.881 -7.91413 7.91413 0.98 0.00183137 0.00170036 0.0944232 0.0876948 44 4004 25 6.79088e+06 296384 787024. 2723.27 7.33 0.671157 0.609454 27118 194962 -1 3153 16 1414 4664 253274 54968 6.76001 6.76001 -160.027 -6.76001 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0672941 0.0618979 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 11.95 vpr 63.29 MiB 0.05 6808 -1 -1 13 0.31 -1 -1 32996 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 297 329 1 231 86 17 17 289 -1 unnamed_device 24.4 MiB 1.63 1407 5189 964 3994 231 63.3 MiB 0.09 0.00 7.75126 -170.514 -7.75126 7.75126 0.99 0.00169043 0.00156162 0.0528978 0.0491204 44 3549 28 6.79088e+06 296384 787024. 2723.27 6.30 0.59517 0.538989 27118 194962 -1 2956 18 1413 4307 230633 50949 6.57657 6.57657 -156.375 -6.57657 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0642624 0.0586588 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 9.86 vpr 62.65 MiB 0.02 6844 -1 -1 12 0.13 -1 -1 32732 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 234 266 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.30 1010 12120 3866 6542 1712 62.6 MiB 0.15 0.00 7.15698 -154.751 -7.15698 7.15698 0.98 0.00123116 0.00114185 0.0903732 0.0838015 38 2706 20 6.79088e+06 229024 678818. 2348.85 4.97 0.453039 0.409728 25966 169698 -1 2233 17 996 2777 147949 33308 6.11878 6.11878 -145.779 -6.11878 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0448673 0.0409017 101 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 9.77 vpr 63.46 MiB 0.04 6880 -1 -1 12 0.25 -1 -1 33268 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 31 32 310 342 1 219 86 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1328 10103 2679 5328 2096 63.5 MiB 0.16 0.00 7.74608 -158.655 -7.74608 7.74608 0.98 0.00169113 0.0015719 0.0957083 0.0889533 40 3529 31 6.79088e+06 309856 706193. 2443.58 4.24 0.48672 0.441726 26254 175826 -1 3341 53 1773 5574 1303360 698925 6.54507 6.54507 -154.111 -6.54507 0 0 926341. 3205.33 0.27 0.62 0.26 -1 -1 0.27 0.161107 0.145917 147 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 10.34 vpr 63.37 MiB 0.05 7092 -1 -1 14 0.34 -1 -1 33148 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 31 32 284 316 1 221 84 17 17 289 -1 unnamed_device 24.4 MiB 0.89 1297 8685 2245 5606 834 63.4 MiB 0.14 0.00 8.14173 -172.752 -8.14173 8.14173 0.98 0.00163412 0.0015189 0.0822591 0.0764381 38 3524 23 6.79088e+06 282912 678818. 2348.85 5.48 0.63355 0.573707 25966 169698 -1 2792 16 1367 3722 192407 43945 7.30933 7.30933 -162.066 -7.30933 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0567917 0.0519755 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 14.20 vpr 63.07 MiB 0.05 6968 -1 -1 13 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 271 303 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1240 3927 707 3012 208 63.1 MiB 0.07 0.00 7.84876 -163.832 -7.84876 7.84876 0.98 0.0014875 0.00138174 0.0369057 0.0343752 34 3864 49 6.79088e+06 282912 618332. 2139.56 8.52 0.538418 0.485421 25102 150614 -1 3044 28 1666 4408 304698 71093 6.92102 6.92102 -159.394 -6.92102 0 0 787024. 2723.27 0.24 0.18 0.21 -1 -1 0.24 0.0810083 0.073429 123 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 8.31 vpr 63.16 MiB 0.02 6984 -1 -1 12 0.24 -1 -1 32852 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 280 312 1 206 87 17 17 289 -1 unnamed_device 24.1 MiB 0.91 1307 8919 1981 5570 1368 63.2 MiB 0.13 0.00 7.76747 -159.708 -7.76747 7.76747 0.95 0.00157137 0.00145828 0.0771719 0.0717488 40 3184 27 6.79088e+06 323328 706193. 2443.58 3.61 0.424598 0.384766 26254 175826 -1 2901 16 1290 3809 236195 51307 6.50936 6.50936 -151.764 -6.50936 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0520042 0.0472753 136 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 9.35 vpr 63.02 MiB 0.03 7068 -1 -1 12 0.22 -1 -1 32712 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 264 296 1 188 80 17 17 289 -1 unnamed_device 24.1 MiB 0.96 1094 7992 2062 5514 416 63.0 MiB 0.12 0.00 7.00518 -141.287 -7.00518 7.00518 0.98 0.00138851 0.00128897 0.0687057 0.0637947 34 3442 44 6.79088e+06 215552 618332. 2139.56 4.66 0.381464 0.345148 25102 150614 -1 2722 19 1463 3900 262879 56605 6.20134 6.20134 -142.724 -6.20134 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0558026 0.0506446 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 12.15 vpr 63.49 MiB 0.03 7072 -1 -1 14 0.43 -1 -1 32568 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 339 371 1 252 89 17 17 289 -1 unnamed_device 24.4 MiB 1.36 1495 9989 2553 6051 1385 63.5 MiB 0.17 0.00 8.47579 -179.629 -8.47579 8.47579 0.98 0.00189094 0.00175744 0.101168 0.0940287 44 3868 35 6.79088e+06 336800 787024. 2723.27 6.63 0.763328 0.693167 27118 194962 -1 3296 16 1584 4757 268393 58342 7.63716 7.63716 -169.229 -7.63716 0 0 997811. 3452.63 0.29 0.15 0.29 -1 -1 0.29 0.0664377 0.0608417 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.27 vpr 63.25 MiB 0.02 6804 -1 -1 11 0.19 -1 -1 32388 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 246 278 1 185 82 17 17 289 -1 unnamed_device 24.4 MiB 1.74 985 6312 1275 4627 410 63.2 MiB 0.09 0.00 6.61647 -138.059 -6.61647 6.61647 0.98 0.00136021 0.00126351 0.0523648 0.0486756 36 2988 23 6.79088e+06 255968 648988. 2245.63 2.95 0.347385 0.313847 25390 158009 -1 2522 16 1260 3325 205960 47067 5.70008 5.70008 -138.696 -5.70008 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0472689 0.0430543 112 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 11.06 vpr 63.27 MiB 0.04 6896 -1 -1 13 0.27 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 268 300 1 191 84 17 17 289 -1 unnamed_device 24.3 MiB 1.19 1103 6672 1409 4884 379 63.3 MiB 0.09 0.00 7.76492 -151.455 -7.76492 7.76492 1.00 0.00103784 0.00095587 0.0489728 0.0453341 36 3116 41 6.79088e+06 282912 648988. 2245.63 5.90 0.42839 0.386857 25390 158009 -1 2567 37 1188 3666 494576 240703 6.83836 6.83836 -147.145 -6.83836 0 0 828058. 2865.25 0.25 0.27 0.23 -1 -1 0.25 0.0925462 0.0838645 133 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 11.29 vpr 63.47 MiB 0.04 7092 -1 -1 12 0.26 -1 -1 32920 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 318 350 1 217 86 17 17 289 -1 unnamed_device 24.6 MiB 1.58 1395 9914 2739 6272 903 63.5 MiB 0.16 0.00 6.98394 -154.333 -6.98394 6.98394 0.98 0.00173814 0.00161526 0.0984979 0.091377 46 3538 18 6.79088e+06 296384 828058. 2865.25 5.74 0.623406 0.564854 27406 200422 -1 2945 19 1356 4522 230486 51042 6.12648 6.12648 -147.156 -6.12648 0 0 1.01997e+06 3529.29 0.30 0.14 0.29 -1 -1 0.30 0.0690654 0.0630049 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 11.52 vpr 63.35 MiB 0.02 6776 -1 -1 13 0.24 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 273 305 1 202 82 17 17 289 -1 unnamed_device 24.4 MiB 1.03 1171 11652 3648 5835 2169 63.3 MiB 0.17 0.00 7.49071 -158.776 -7.49071 7.49071 0.99 0.00151997 0.00141198 0.103763 0.0964141 36 3633 25 6.79088e+06 242496 648988. 2245.63 6.32 0.442922 0.401888 25390 158009 -1 2779 33 2121 6697 550944 177817 6.62347 6.62347 -153.065 -6.62347 0 0 828058. 2865.25 0.25 0.27 0.23 -1 -1 0.25 0.0946399 0.0857302 127 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 11.18 vpr 63.21 MiB 0.04 7080 -1 -1 13 0.22 -1 -1 32688 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 269 301 1 197 81 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1211 10406 2769 5511 2126 63.2 MiB 0.15 0.00 7.74736 -164.869 -7.74736 7.74736 0.98 0.00147115 0.00136599 0.0918958 0.0853446 36 3268 39 6.79088e+06 229024 648988. 2245.63 5.52 0.659121 0.59568 25390 158009 -1 2653 18 1211 3376 195793 43398 6.77658 6.77658 -159.995 -6.77658 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.05621 0.0512114 117 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 11.54 vpr 63.32 MiB 0.05 6856 -1 -1 12 0.26 -1 -1 32852 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 298 330 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1253 10103 2754 6868 481 63.3 MiB 0.16 0.00 7.26657 -159.313 -7.26657 7.26657 0.98 0.00167376 0.00155526 0.094393 0.0876303 38 3347 46 6.79088e+06 296384 678818. 2348.85 5.79 0.654049 0.591246 25966 169698 -1 2715 18 1291 3925 202580 45415 6.34132 6.34132 -152.194 -6.34132 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0631888 0.0575885 148 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 23.18 vpr 63.34 MiB 0.04 6888 -1 -1 13 0.29 -1 -1 32792 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 299 331 1 227 84 17 17 289 -1 unnamed_device 24.6 MiB 1.75 1384 13626 3889 7379 2358 63.3 MiB 0.20 0.00 7.75522 -164.387 -7.75522 7.75522 0.99 0.00166403 0.00154485 0.128854 0.119734 36 4087 44 6.79088e+06 269440 648988. 2245.63 17.39 0.737388 0.667697 25390 158009 -1 3259 21 1549 4321 373733 106075 6.63117 6.63117 -159.782 -6.63117 0 0 828058. 2865.25 0.25 0.19 0.22 -1 -1 0.25 0.0721997 0.0659197 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.44 vpr 63.18 MiB 0.03 6824 -1 -1 14 0.27 -1 -1 32840 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 259 291 1 197 81 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1098 13031 4343 6238 2450 63.2 MiB 0.18 0.00 7.86406 -162.706 -7.86406 7.86406 0.99 0.00145069 0.00134796 0.112058 0.104112 38 3343 32 6.79088e+06 229024 678818. 2348.85 2.83 0.375321 0.341659 25966 169698 -1 2541 16 1222 3542 190807 42703 6.91764 6.91764 -157.465 -6.91764 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0506182 0.0461927 121 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 15.20 vpr 63.21 MiB 0.02 6864 -1 -1 13 0.28 -1 -1 32728 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 293 325 1 216 83 17 17 289 -1 unnamed_device 24.1 MiB 2.35 1258 11603 3424 7189 990 63.2 MiB 0.17 0.00 7.85103 -161.777 -7.85103 7.85103 0.99 0.00158061 0.00146898 0.106724 0.0991673 36 4060 45 6.79088e+06 255968 648988. 2245.63 8.88 0.512224 0.46434 25390 158009 -1 3177 18 1531 4176 270286 59043 6.95679 6.95679 -159.165 -6.95679 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0601156 0.0548241 132 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 10.92 vpr 63.49 MiB 0.03 7104 -1 -1 13 0.28 -1 -1 32900 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 311 343 1 237 87 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1359 6039 1148 4687 204 63.5 MiB 0.10 0.00 8.38958 -177.102 -8.38958 8.38958 0.98 0.00168611 0.00156369 0.0589039 0.054734 40 3561 50 6.79088e+06 323328 706193. 2443.58 5.92 0.507676 0.459762 26254 175826 -1 3067 18 1553 4465 283755 62612 7.38651 7.38651 -163.99 -7.38651 0 0 926341. 3205.33 0.27 0.15 0.26 -1 -1 0.27 0.0654191 0.0597393 153 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 9.44 vpr 63.39 MiB 0.05 7080 -1 -1 12 0.30 -1 -1 32832 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 324 356 1 234 87 17 17 289 -1 unnamed_device 24.4 MiB 1.32 1296 5655 1121 4085 449 63.4 MiB 0.10 0.00 7.82193 -168.395 -7.82193 7.82193 0.98 0.00174022 0.00161676 0.0561406 0.0522161 44 3490 49 6.79088e+06 309856 787024. 2723.27 4.01 0.503735 0.456265 27118 194962 -1 2816 24 1393 3975 320817 117454 7.08547 7.08547 -162.783 -7.08547 0 0 997811. 3452.63 0.30 0.19 0.28 -1 -1 0.30 0.0832594 0.0758771 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.98 vpr 62.61 MiB 0.04 6820 -1 -1 11 0.13 -1 -1 32388 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 216 248 1 163 76 17 17 289 -1 unnamed_device 23.6 MiB 1.49 1043 3916 875 2751 290 62.6 MiB 0.07 0.00 6.0933 -143.487 -6.0933 6.0933 1.00 0.00113768 0.00105495 0.0313015 0.0290851 40 2570 30 6.79088e+06 161664 706193. 2443.58 2.79 0.28852 0.259996 26254 175826 -1 2316 16 941 2587 161270 35529 5.34881 5.34881 -141.979 -5.34881 0 0 926341. 3205.33 0.27 0.09 0.26 -1 -1 0.27 0.0394716 0.0359369 89 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 9.01 vpr 63.08 MiB 0.03 6724 -1 -1 13 0.19 -1 -1 32796 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 245 277 1 190 82 17 17 289 -1 unnamed_device 24.2 MiB 2.19 1095 12364 3770 6848 1746 63.1 MiB 0.16 0.00 7.93371 -169.518 -7.93371 7.93371 0.98 0.00135138 0.00125588 0.0975282 0.0905879 38 2902 22 6.79088e+06 242496 678818. 2348.85 3.05 0.395336 0.358422 25966 169698 -1 2385 15 1096 2878 151481 34429 6.78808 6.78808 -158.807 -6.78808 0 0 902133. 3121.57 0.26 0.10 0.24 -1 -1 0.26 0.0444289 0.0405905 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 9.17 vpr 63.86 MiB 0.05 7152 -1 -1 14 0.43 -1 -1 33084 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 361 393 1 262 90 17 17 289 -1 unnamed_device 24.8 MiB 1.00 1580 9939 2278 6564 1097 63.9 MiB 0.17 0.00 8.73511 -184.809 -8.73511 8.73511 0.98 0.00199494 0.00185024 0.104301 0.0969424 38 4844 44 6.79088e+06 350272 678818. 2348.85 4.02 0.530278 0.482345 25966 169698 -1 3851 18 2075 5945 326489 70629 7.59027 7.59027 -179.068 -7.59027 0 0 902133. 3121.57 0.26 0.17 0.24 -1 -1 0.26 0.076178 0.0697665 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 13.28 vpr 63.63 MiB 0.02 6780 -1 -1 13 0.32 -1 -1 32908 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 318 350 1 243 87 17 17 289 -1 unnamed_device 24.6 MiB 1.94 1387 12759 4109 6459 2191 63.6 MiB 0.20 0.00 8.53765 -182.928 -8.53765 8.53765 0.98 0.00165816 0.00152906 0.124561 0.115754 50 3099 22 6.79088e+06 309856 902133. 3121.57 7.21 0.793713 0.719947 27982 213445 -1 2920 17 1368 3936 227540 49574 7.3431 7.3431 -167.498 -7.3431 0 0 1.08113e+06 3740.92 0.31 0.14 0.32 -1 -1 0.31 0.0662275 0.0606393 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 9.61 vpr 62.83 MiB 0.04 6876 -1 -1 11 0.17 -1 -1 32868 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 223 255 1 163 78 17 17 289 -1 unnamed_device 24.3 MiB 0.72 950 4228 865 3108 255 62.8 MiB 0.07 0.00 6.81683 -144.823 -6.81683 6.81683 1.00 0.00120639 0.00111964 0.0346399 0.0321178 38 2454 20 6.79088e+06 215552 678818. 2348.85 5.18 0.468447 0.422273 25966 169698 -1 2005 23 930 2566 243930 95086 5.99343 5.99343 -139.149 -5.99343 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0556267 0.0505364 100 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 11.82 vpr 63.72 MiB 0.05 7024 -1 -1 15 0.43 -1 -1 32908 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 335 367 1 245 86 17 17 289 -1 unnamed_device 24.8 MiB 1.01 1418 9347 2334 6216 797 63.7 MiB 0.16 0.00 9.383 -186.155 -9.383 9.383 0.98 0.00190767 0.0017727 0.0999532 0.0929199 46 3933 34 6.79088e+06 296384 828058. 2865.25 6.48 0.686147 0.622935 27406 200422 -1 3193 20 1707 5062 266139 59145 8.35325 8.35325 -177.457 -8.35325 0 0 1.01997e+06 3529.29 0.36 0.16 0.30 -1 -1 0.36 0.0793237 0.0725471 169 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 9.04 vpr 63.23 MiB 0.04 7008 -1 -1 13 0.31 -1 -1 32936 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 301 333 1 220 85 17 17 289 -1 unnamed_device 24.4 MiB 0.96 1389 12175 3278 6674 2223 63.2 MiB 0.19 0.00 8.13964 -175.769 -8.13964 8.13964 1.00 0.00167265 0.0015545 0.115075 0.107009 38 3777 26 6.79088e+06 282912 678818. 2348.85 4.08 0.483124 0.439211 25966 169698 -1 2910 16 1372 3874 204438 45797 6.93221 6.93221 -164.772 -6.93221 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0586237 0.0537705 148 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 10.62 vpr 62.89 MiB 0.04 6904 -1 -1 11 0.13 -1 -1 32660 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 238 270 1 173 78 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1055 3564 650 2743 171 62.9 MiB 0.06 0.00 6.25754 -138.513 -6.25754 6.25754 0.98 0.00114676 0.00105564 0.0291927 0.0270557 34 2945 49 6.79088e+06 188608 618332. 2139.56 5.83 0.459414 0.413246 25102 150614 -1 2475 17 1099 2705 174668 39928 5.32418 5.32418 -136.907 -5.32418 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0438727 0.0399389 94 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 8.54 vpr 63.54 MiB 0.05 7016 -1 -1 12 0.29 -1 -1 32880 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.7 MiB 1.44 1368 11803 3261 7113 1429 63.5 MiB 0.18 0.00 7.45229 -159.724 -7.45229 7.45229 0.95 0.00169392 0.00157155 0.11288 0.104682 38 3657 29 6.79088e+06 282912 678818. 2348.85 3.12 0.422553 0.384231 25966 169698 -1 2915 17 1374 4168 211626 47370 6.54158 6.54158 -153.046 -6.54158 0 0 902133. 3121.57 0.26 0.13 0.25 -1 -1 0.26 0.0621718 0.0568062 150 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 11.11 vpr 62.96 MiB 0.02 6712 -1 -1 12 0.20 -1 -1 32392 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 253 285 1 191 80 17 17 289 -1 unnamed_device 24.1 MiB 1.66 1080 10228 3462 4696 2070 63.0 MiB 0.14 0.00 7.21243 -157.214 -7.21243 7.21243 0.99 0.000909084 0.000833791 0.0864903 0.0803117 46 2780 20 6.79088e+06 215552 828058. 2865.25 5.62 0.513321 0.463894 27406 200422 -1 2438 17 1167 3211 182341 39415 6.36938 6.36938 -145.45 -6.36938 0 0 1.01997e+06 3529.29 0.30 0.11 0.29 -1 -1 0.30 0.0505536 0.0460681 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 9.59 vpr 62.72 MiB 0.09 6860 -1 -1 12 0.20 -1 -1 32712 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 30 32 227 259 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 1.13 791 10056 4124 5675 257 62.7 MiB 0.13 0.00 7.72482 -150.805 -7.72482 7.72482 0.99 0.00125367 0.00116236 0.0771322 0.0715923 42 2202 32 6.79088e+06 242496 744469. 2576.02 4.71 0.543043 0.49055 26542 182613 -1 1684 16 850 2273 113773 28586 6.41556 6.41556 -138.302 -6.41556 0 0 949917. 3286.91 0.28 0.09 0.26 -1 -1 0.28 0.043338 0.0395517 104 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 10.64 vpr 63.20 MiB 0.05 7096 -1 -1 12 0.28 -1 -1 32868 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 29 32 292 324 1 204 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1171 7770 1823 5388 559 63.2 MiB 0.13 0.00 7.44007 -144.714 -7.44007 7.44007 0.99 0.00164861 0.00152847 0.0772149 0.071588 44 2819 17 6.79088e+06 309856 787024. 2723.27 5.49 0.553018 0.500734 27118 194962 -1 2495 18 1209 3819 202338 45288 6.38057 6.38057 -134.322 -6.38057 0 0 997811. 3452.63 0.29 0.13 0.29 -1 -1 0.29 0.0628426 0.0573988 143 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 9.05 vpr 63.39 MiB 0.03 6824 -1 -1 14 0.32 -1 -1 32916 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 316 348 1 251 87 17 17 289 -1 unnamed_device 24.5 MiB 1.79 1358 11991 3231 7336 1424 63.4 MiB 0.19 0.00 8.37027 -173.793 -8.37027 8.37027 0.99 0.00176153 0.00163685 0.114773 0.10661 44 3703 23 6.79088e+06 309856 787024. 2723.27 3.09 0.443843 0.404193 27118 194962 -1 2934 17 1563 4013 208509 46510 7.59802 7.59802 -167.166 -7.59802 0 0 997811. 3452.63 0.29 0.13 0.28 -1 -1 0.29 0.063836 0.0583581 156 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 11.07 vpr 63.21 MiB 0.04 6796 -1 -1 12 0.24 -1 -1 32696 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 286 318 1 205 84 17 17 289 -1 unnamed_device 24.2 MiB 1.12 1181 13626 4881 7118 1627 63.2 MiB 0.19 0.00 7.33267 -159.572 -7.33267 7.33267 0.99 0.00158225 0.00147005 0.121973 0.113275 40 3026 49 6.79088e+06 269440 706193. 2443.58 6.03 0.722125 0.653524 26254 175826 -1 2713 21 1523 4704 289351 64507 6.54507 6.54507 -154.925 -6.54507 0 0 926341. 3205.33 0.27 0.16 0.26 -1 -1 0.27 0.0680827 0.0620022 135 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 14.01 vpr 62.90 MiB 0.04 6748 -1 -1 12 0.14 -1 -1 32696 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 221 253 1 164 78 17 17 289 -1 unnamed_device 24.4 MiB 1.38 1009 7880 2123 5261 496 62.9 MiB 0.10 0.00 7.26363 -149.543 -7.26363 7.26363 1.03 0.00116136 0.00107754 0.0584414 0.0541982 30 2543 27 6.79088e+06 188608 556674. 1926.21 9.00 0.369435 0.332711 24526 138013 -1 2104 27 885 2401 307230 150179 6.29447 6.29447 -143.607 -6.29447 0 0 706193. 2443.58 0.22 0.17 0.19 -1 -1 0.22 0.0612669 0.0554141 94 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 21.93 vpr 63.13 MiB 0.04 6660 -1 -1 12 0.22 -1 -1 32320 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 261 293 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.69 970 11981 3535 6635 1811 63.1 MiB 0.16 0.00 7.26019 -151.005 -7.26019 7.26019 0.98 0.00141045 0.00130882 0.0985676 0.0913114 38 2664 21 6.79088e+06 242496 678818. 2348.85 16.40 0.617555 0.557416 25966 169698 -1 2174 17 1178 3034 162193 37431 6.41633 6.41633 -145.356 -6.41633 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0522844 0.0475991 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 9.45 vpr 63.15 MiB 0.02 6960 -1 -1 11 0.19 -1 -1 32856 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 30 32 277 309 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 2.04 1239 12863 3849 7065 1949 63.1 MiB 0.18 0.00 6.65488 -140.894 -6.65488 6.65488 0.98 0.00149549 0.00138902 0.111449 0.103461 36 3468 42 6.79088e+06 282912 648988. 2245.63 3.59 0.41102 0.373373 25390 158009 -1 2834 18 1311 3849 228747 50345 5.77854 5.77854 -136.317 -5.77854 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0570995 0.0520261 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 7.32 vpr 63.01 MiB 0.04 6972 -1 -1 11 0.18 -1 -1 32644 -1 -1 22 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 28 32 251 283 1 186 82 17 17 289 -1 unnamed_device 24.0 MiB 1.01 1136 10940 2806 6659 1475 63.0 MiB 0.15 0.00 6.63358 -127.166 -6.63358 6.63358 0.98 0.00141091 0.00130843 0.0906319 0.0842325 38 2866 28 6.79088e+06 296384 678818. 2348.85 2.44 0.331311 0.300794 25966 169698 -1 2418 29 1529 5201 490995 204171 5.73934 5.73934 -120.441 -5.73934 0 0 902133. 3121.57 0.26 0.25 0.24 -1 -1 0.26 0.0803237 0.0727852 124 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 10.08 vpr 63.08 MiB 0.04 6716 -1 -1 13 0.18 -1 -1 32660 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 223 255 1 172 78 17 17 289 -1 unnamed_device 24.3 MiB 2.46 1046 11366 3047 7165 1154 63.1 MiB 0.14 0.00 7.34113 -146.72 -7.34113 7.34113 1.02 0.00120518 0.00111718 0.0861512 0.0799572 36 2791 24 6.79088e+06 215552 648988. 2245.63 3.87 0.35411 0.321192 25390 158009 -1 2340 18 946 2397 146222 33245 6.40858 6.40858 -141.084 -6.40858 0 0 828058. 2865.25 0.24 0.10 0.23 -1 -1 0.24 0.0461421 0.0420665 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 11.30 vpr 63.00 MiB 0.04 6812 -1 -1 12 0.18 -1 -1 32480 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 269 301 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 1.98 1049 6312 1392 4796 124 63.0 MiB 0.10 0.00 7.21638 -157.877 -7.21638 7.21638 0.98 0.00146361 0.00134768 0.0561633 0.0521456 38 2904 22 6.79088e+06 242496 678818. 2348.85 5.60 0.532527 0.480474 25966 169698 -1 2381 17 1148 3199 166901 37752 6.44778 6.44778 -152.357 -6.44778 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0529872 0.0483153 123 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 8.38 vpr 63.13 MiB 0.05 6992 -1 -1 13 0.28 -1 -1 32880 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 283 315 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1163 8363 2308 5491 564 63.1 MiB 0.13 0.00 8.4499 -169.768 -8.4499 8.4499 0.98 0.0015704 0.00145941 0.0782508 0.0727283 36 3215 36 6.79088e+06 269440 648988. 2245.63 3.06 0.382582 0.347148 25390 158009 -1 2550 16 1145 3185 180905 40482 7.26121 7.26121 -158.746 -7.26121 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0544731 0.0497784 136 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 10.55 vpr 63.39 MiB 0.05 6844 -1 -1 14 0.28 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 308 340 1 227 85 17 17 289 -1 unnamed_device 24.5 MiB 1.03 1318 10501 2502 6272 1727 63.4 MiB 0.17 0.00 8.44735 -181.143 -8.44735 8.44735 0.98 0.0017094 0.00158701 0.101564 0.0943546 44 3319 29 6.79088e+06 282912 787024. 2723.27 5.55 0.67737 0.613982 27118 194962 -1 2564 16 1236 3478 165966 38981 7.22212 7.22212 -164.516 -7.22212 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0598226 0.0547104 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.91 vpr 63.19 MiB 0.04 7112 -1 -1 14 0.26 -1 -1 32948 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 277 309 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1302 10523 2982 6549 992 63.2 MiB 0.16 0.00 8.02237 -162.142 -8.02237 8.02237 0.99 0.00155791 0.00144771 0.0955308 0.0886753 36 3596 27 6.79088e+06 255968 648988. 2245.63 3.40 0.367161 0.333835 25390 158009 -1 3087 20 1419 4508 300681 63980 6.87761 6.87761 -155.35 -6.87761 0 0 828058. 2865.25 0.25 0.16 0.23 -1 -1 0.25 0.0644365 0.058748 135 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 9.46 vpr 63.27 MiB 0.03 7076 -1 -1 13 0.34 -1 -1 33300 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 288 320 1 209 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1274 7823 1878 5189 756 63.3 MiB 0.13 0.00 8.3493 -170.918 -8.3493 8.3493 0.99 0.00161907 0.00150343 0.0752913 0.0699449 44 3199 26 6.79088e+06 255968 787024. 2723.27 3.53 0.437 0.396428 27118 194962 -1 2640 15 1193 3351 194684 42812 7.39 7.39 -161.183 -7.39 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0544883 0.0498731 138 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 10.42 vpr 62.56 MiB 0.05 6844 -1 -1 13 0.18 -1 -1 32868 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 24.0 MiB 1.33 995 8544 2304 5272 968 62.6 MiB 0.11 0.00 7.65272 -159.245 -7.65272 7.65272 1.04 0.00124435 0.00115459 0.067795 0.0629186 34 2948 37 6.79088e+06 215552 618332. 2139.56 5.33 0.458899 0.414778 25102 150614 -1 2333 18 1087 2565 154559 35215 6.93332 6.93332 -152.226 -6.93332 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0478602 0.0435538 105 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 12.43 vpr 63.42 MiB 0.05 6992 -1 -1 13 0.43 -1 -1 32716 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 30 32 294 326 1 222 83 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1201 9803 2770 5401 1632 63.4 MiB 0.16 0.01 8.65832 -171.391 -8.65832 8.65832 0.99 0.00537733 0.00503447 0.0860091 0.079772 36 3779 48 6.79088e+06 282912 648988. 2245.63 7.12 0.524471 0.475338 25390 158009 -1 2775 19 1579 4103 242410 58899 7.59365 7.59365 -164.154 -7.59365 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0660694 0.0603515 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 7.86 vpr 63.29 MiB 0.02 6964 -1 -1 14 0.25 -1 -1 31464 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 276 308 1 207 82 17 17 289 -1 unnamed_device 24.3 MiB 1.69 1269 7914 1787 4968 1159 63.3 MiB 0.12 0.00 8.34378 -178.011 -8.34378 8.34378 0.98 0.00154224 0.00143144 0.0730533 0.0678539 44 3040 17 6.79088e+06 242496 787024. 2723.27 2.37 0.304537 0.276733 27118 194962 -1 2585 17 1142 3348 180455 39534 7.33961 7.33961 -168.272 -7.33961 0 0 997811. 3452.63 0.29 0.12 0.29 -1 -1 0.29 0.0565801 0.0516723 132 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 9.70 vpr 63.41 MiB 0.06 7092 -1 -1 12 0.27 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 293 325 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1315 6595 1620 4420 555 63.4 MiB 0.11 0.00 7.74227 -160.778 -7.74227 7.74227 0.98 0.00161366 0.00149917 0.0626082 0.0582139 38 3309 22 6.79088e+06 296384 678818. 2348.85 4.53 0.407172 0.368799 25966 169698 -1 2655 19 1330 3672 186380 42257 6.58771 6.58771 -151.472 -6.58771 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0637022 0.0581256 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 9.38 vpr 63.22 MiB 0.04 6888 -1 -1 13 0.24 -1 -1 32828 -1 -1 20 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 273 305 1 203 82 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1233 11118 2888 6638 1592 63.2 MiB 0.16 0.00 8.11861 -149.987 -8.11861 8.11861 0.98 0.00148037 0.00137543 0.0971174 0.0902276 38 3134 26 6.79088e+06 269440 678818. 2348.85 3.92 0.433343 0.393358 25966 169698 -1 2680 24 1218 3491 329552 132567 7.06981 7.06981 -143.474 -7.06981 0 0 902133. 3121.57 0.26 0.18 0.24 -1 -1 0.26 0.0713205 0.0647818 125 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 12.53 vpr 63.45 MiB 0.06 6880 -1 -1 14 0.35 -1 -1 32924 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.6 MiB 1.21 1469 4735 854 3655 226 63.5 MiB 0.09 0.00 8.74175 -178.419 -8.74175 8.74175 0.98 0.0017405 0.00161882 0.0499192 0.0465071 44 3926 21 6.79088e+06 282912 787024. 2723.27 7.26 0.657919 0.595075 27118 194962 -1 3143 18 1476 4077 228717 50454 7.59027 7.59027 -168.197 -7.59027 0 0 997811. 3452.63 0.29 0.14 0.28 -1 -1 0.29 0.06604 0.06037 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 11.09 vpr 63.30 MiB 0.04 7032 -1 -1 11 0.28 -1 -1 32824 -1 -1 22 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 29 32 259 291 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.13 1177 7283 1838 4377 1068 63.3 MiB 0.11 0.00 7.07557 -138.934 -7.07557 7.07557 0.98 0.00147645 0.00137226 0.0640892 0.0595513 38 3019 22 6.79088e+06 296384 678818. 2348.85 6.18 0.60315 0.544735 25966 169698 -1 2481 18 1171 3677 183689 41024 5.93852 5.93852 -129.669 -5.93852 0 0 902133. 3121.57 0.26 0.12 0.24 -1 -1 0.26 0.0559567 0.0510061 129 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 11.71 vpr 62.68 MiB 0.04 6632 -1 -1 13 0.16 -1 -1 32584 -1 -1 14 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 24.0 MiB 2.64 911 7050 1390 5582 78 62.7 MiB 0.10 0.00 6.59519 -151.675 -6.59519 6.59519 0.99 0.00122199 0.00113448 0.0555698 0.0515212 36 3289 28 6.79088e+06 188608 648988. 2245.63 5.42 0.331362 0.299406 25390 158009 -1 2379 21 1279 3154 190047 43732 6.03689 6.03689 -152.99 -6.03689 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.0524196 0.0476833 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 12.38 vpr 63.16 MiB 0.04 7004 -1 -1 14 0.23 -1 -1 32960 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 273 305 1 205 84 17 17 289 -1 unnamed_device 24.1 MiB 1.76 1241 6306 1411 4529 366 63.2 MiB 0.10 0.00 8.60394 -175.189 -8.60394 8.60394 0.98 0.00150527 0.00139695 0.0562152 0.0521677 40 3099 37 6.79088e+06 269440 706193. 2443.58 6.77 0.643649 0.58085 26254 175826 -1 2933 19 1285 3617 229287 50185 7.55106 7.55106 -167.861 -7.55106 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0596013 0.0542869 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 9.01 vpr 63.66 MiB 0.03 6808 -1 -1 15 0.39 -1 -1 33332 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 322 354 1 240 87 17 17 289 -1 unnamed_device 24.8 MiB 1.78 1368 6807 1531 4801 475 63.7 MiB 0.12 0.00 8.72233 -187.92 -8.72233 8.72233 0.99 0.00178963 0.00165891 0.0692143 0.064443 38 4005 24 6.79088e+06 309856 678818. 2348.85 3.21 0.365843 0.332376 25966 169698 -1 3199 18 1821 4868 254005 56413 7.59027 7.59027 -180.317 -7.59027 0 0 902133. 3121.57 0.26 0.15 0.24 -1 -1 0.26 0.0672442 0.0613759 156 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 9.75 vpr 62.78 MiB 0.06 6612 -1 -1 11 0.16 -1 -1 32468 -1 -1 13 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 218 250 1 159 77 17 17 289 -1 unnamed_device 23.8 MiB 1.46 834 11324 4496 5941 887 62.8 MiB 0.14 0.00 6.16894 -130.904 -6.16894 6.16894 0.98 0.00115356 0.00107047 0.0837593 0.077707 36 2609 21 6.79088e+06 175136 648988. 2245.63 4.65 0.38517 0.347873 25390 158009 -1 2080 16 977 2435 153889 35331 5.60285 5.60285 -129.111 -5.60285 0 0 828058. 2865.25 0.24 0.09 0.23 -1 -1 0.24 0.0398039 0.0362658 90 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 9.25 vpr 63.10 MiB 0.05 6812 -1 -1 12 0.19 -1 -1 32496 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 244 276 1 189 80 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1138 11948 3630 6263 2055 63.1 MiB 0.16 0.00 7.22906 -153.908 -7.22906 7.22906 0.98 0.0013379 0.00124108 0.0969676 0.0900201 36 3118 43 6.79088e+06 229024 648988. 2245.63 4.13 0.433944 0.393263 25390 158009 -1 2570 28 1230 3234 344760 138250 6.21607 6.21607 -148.66 -6.21607 0 0 828058. 2865.25 0.25 0.19 0.23 -1 -1 0.25 0.0726346 0.0658529 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 9.05 vpr 63.40 MiB 0.05 6944 -1 -1 12 0.35 -1 -1 33088 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 301 333 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1283 9234 2131 6180 923 63.4 MiB 0.15 0.00 7.83424 -161.221 -7.83424 7.83424 0.98 0.00163904 0.00151352 0.0901935 0.0837044 36 3404 37 6.79088e+06 269440 648988. 2245.63 3.99 0.499498 0.453122 25390 158009 -1 2868 18 1330 3771 213104 48415 6.66262 6.66262 -155.651 -6.66262 0 0 828058. 2865.25 0.24 0.13 0.23 -1 -1 0.24 0.0646902 0.0590971 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 14.35 vpr 63.15 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32984 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 278 310 1 205 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1296 12162 3251 6670 2241 63.2 MiB 0.17 0.00 7.48872 -156.2 -7.48872 7.48872 0.98 0.00152188 0.00141378 0.105004 0.0974689 36 3919 48 6.79088e+06 269440 648988. 2245.63 8.84 0.514365 0.466732 25390 158009 -1 2968 31 1406 4450 604171 262883 6.66611 6.66611 -158.421 -6.66611 0 0 828058. 2865.25 0.25 0.29 0.23 -1 -1 0.25 0.0899798 0.0815922 132 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 11.59 vpr 63.55 MiB 0.04 6952 -1 -1 14 0.45 -1 -1 33256 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 333 365 1 245 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1405 6231 1275 4694 262 63.6 MiB 0.12 0.00 8.86727 -181.315 -8.86727 8.86727 1.00 0.00187663 0.00174448 0.0669931 0.0623349 46 3759 40 6.79088e+06 309856 828058. 2865.25 6.10 0.726414 0.6582 27406 200422 -1 3016 18 1566 4898 246052 55033 7.84441 7.84441 -171.043 -7.84441 0 0 1.01997e+06 3529.29 0.30 0.16 0.30 -1 -1 0.30 0.0729381 0.0666828 171 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 9.68 vpr 63.11 MiB 0.05 6896 -1 -1 11 0.27 -1 -1 32428 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 261 293 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 1.50 1067 10883 3235 5860 1788 63.1 MiB 0.15 0.00 6.95332 -140.654 -6.95332 6.95332 0.98 0.00108671 0.000994249 0.0866963 0.0805022 38 3147 29 6.79088e+06 282912 678818. 2348.85 4.30 0.422106 0.382702 25966 169698 -1 2440 16 1174 3438 187932 41657 6.00462 6.00462 -133.125 -6.00462 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0576276 0.0529363 126 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 8.26 vpr 63.01 MiB 0.04 6672 -1 -1 11 0.20 -1 -1 32504 -1 -1 19 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 27 32 217 249 1 155 78 17 17 289 -1 unnamed_device 24.3 MiB 1.01 867 6054 1411 4045 598 63.0 MiB 0.08 0.00 6.65261 -123.186 -6.65261 6.65261 0.98 0.00121022 0.00112526 0.0477275 0.0443866 30 2198 21 6.79088e+06 255968 556674. 1926.21 3.73 0.413687 0.373179 24526 138013 -1 1871 17 837 2389 118691 28308 5.69587 5.69587 -119.491 -5.69587 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0433005 0.039437 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.78 vpr 63.95 MiB 0.04 7052 -1 -1 13 0.42 -1 -1 32832 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 373 405 1 272 94 17 17 289 -1 unnamed_device 24.9 MiB 1.53 1561 9892 2394 6307 1191 64.0 MiB 0.17 0.00 8.32454 -165.585 -8.32454 8.32454 1.02 0.00211137 0.00195504 0.103279 0.0957952 40 4160 26 6.79088e+06 404160 706193. 2443.58 4.04 0.580537 0.528488 26254 175826 -1 3898 18 1982 5919 354244 78984 7.26465 7.26465 -162.843 -7.26465 0 0 926341. 3205.33 0.27 0.19 0.26 -1 -1 0.27 0.0808895 0.0741446 192 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 10.40 vpr 63.30 MiB 0.07 6840 -1 -1 14 0.34 -1 -1 33396 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 31 32 269 301 1 199 83 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1127 9803 2812 4976 2015 63.3 MiB 0.14 0.00 8.44959 -165.997 -8.44959 8.44959 0.98 0.00148727 0.00138013 0.0859152 0.0798681 44 2896 24 6.79088e+06 269440 787024. 2723.27 5.19 0.617904 0.558589 27118 194962 -1 2372 20 1044 2864 146997 34036 7.36316 7.36316 -153.955 -7.36316 0 0 997811. 3452.63 0.30 0.12 0.29 -1 -1 0.30 0.0625719 0.0569078 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 26.83 vpr 62.90 MiB 0.04 6856 -1 -1 12 0.16 -1 -1 32348 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 228 260 1 187 81 17 17 289 -1 unnamed_device 23.9 MiB 1.57 998 12156 3597 6327 2232 62.9 MiB 0.13 0.00 7.48986 -163.034 -7.48986 7.48986 0.98 0.000855085 0.000785959 0.0643013 0.0593025 40 2863 24 6.79088e+06 229024 706193. 2443.58 21.53 0.657189 0.592231 26254 175826 -1 2691 17 1282 3196 239599 53051 6.45897 6.45897 -157.584 -6.45897 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0455715 0.0415422 108 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 11.12 vpr 63.16 MiB 0.05 6988 -1 -1 13 0.28 -1 -1 32780 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 265 297 1 194 85 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1114 13291 3899 6878 2514 63.2 MiB 0.18 0.00 7.73375 -156.711 -7.73375 7.73375 0.98 0.00148776 0.00138222 0.110806 0.102914 38 3286 26 6.79088e+06 282912 678818. 2348.85 5.21 0.450189 0.409067 25966 169698 -1 2577 22 1285 3801 209447 46536 6.54502 6.54502 -147.814 -6.54502 0 0 902133. 3121.57 0.26 0.14 0.24 -1 -1 0.26 0.0668758 0.0607463 127 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 13.42 vpr 63.59 MiB 0.03 7012 -1 -1 13 0.30 -1 -1 33396 -1 -1 25 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 31 32 325 357 1 247 88 17 17 289 -1 unnamed_device 24.7 MiB 2.14 1417 14128 4699 7199 2230 63.6 MiB 0.22 0.00 7.42813 -162.414 -7.42813 7.42813 0.99 0.00179914 0.00166357 0.134584 0.124796 46 3661 29 6.79088e+06 336800 828058. 2865.25 7.15 0.804354 0.730176 27406 200422 -1 3000 19 1742 4870 262891 57989 6.41977 6.41977 -151.928 -6.41977 0 0 1.01997e+06 3529.29 0.30 0.15 0.29 -1 -1 0.30 0.0700768 0.0640667 160 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 10.13 vpr 63.42 MiB 0.02 7016 -1 -1 11 0.24 -1 -1 32816 -1 -1 24 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 30 32 287 319 1 200 86 17 17 289 -1 unnamed_device 24.4 MiB 1.26 1324 10481 2347 6750 1384 63.4 MiB 0.15 0.00 6.90633 -138.839 -6.90633 6.90633 0.98 0.00156868 0.00145648 0.0927485 0.0861603 44 3215 21 6.79088e+06 323328 787024. 2723.27 5.30 0.577784 0.523141 27118 194962 -1 2661 17 1276 4063 215278 47363 5.99343 5.99343 -131.757 -5.99343 0 0 997811. 3452.63 0.30 0.13 0.29 -1 -1 0.30 0.0572719 0.0522178 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 8.07 vpr 63.31 MiB 0.05 6900 -1 -1 15 0.32 -1 -1 33016 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 297 329 1 220 84 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1295 4842 930 3801 111 63.3 MiB 0.09 0.00 9.14479 -188.086 -9.14479 9.14479 0.98 0.00163812 0.00152164 0.0499738 0.0463935 38 3636 43 6.79088e+06 269440 678818. 2348.85 2.70 0.372853 0.337863 25966 169698 -1 2840 17 1377 3919 212537 48236 8.067 8.067 -178.741 -8.067 0 0 902133. 3121.57 0.26 0.13 0.24 -1 -1 0.26 0.0601732 0.0549885 141 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 11.82 vpr 63.45 MiB 0.04 6872 -1 -1 13 0.31 -1 -1 32900 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 311 343 1 229 86 17 17 289 -1 unnamed_device 24.6 MiB 1.55 1415 13127 3697 7096 2334 63.4 MiB 0.20 0.00 8.52282 -182.05 -8.52282 8.52282 1.00 0.00175153 0.00162506 0.127262 0.118133 44 3506 17 6.79088e+06 296384 787024. 2723.27 6.15 0.642853 0.583117 27118 194962 -1 2839 18 1388 4309 233385 51923 7.2647 7.2647 -165.844 -7.2647 0 0 997811. 3452.63 0.29 0.14 0.28 -1 -1 0.29 0.0673823 0.0616233 152 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 7.92 vpr 63.04 MiB 0.02 6600 -1 -1 12 0.22 -1 -1 32256 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1021 11571 3236 6470 1865 63.0 MiB 0.15 0.00 7.64302 -156.881 -7.64302 7.64302 0.98 0.00127679 0.00118632 0.0912204 0.0847763 34 2972 30 6.79088e+06 242496 618332. 2139.56 2.41 0.312191 0.283692 25102 150614 -1 2365 16 1134 2540 158525 36441 6.42326 6.42326 -148.422 -6.42326 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044652 0.0407107 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 26.18 vpr 62.62 MiB 0.02 6720 -1 -1 11 0.15 -1 -1 32444 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 231 263 1 178 79 17 17 289 -1 unnamed_device 24.1 MiB 1.63 1023 6332 1518 4556 258 62.6 MiB 0.09 0.00 6.49713 -143.113 -6.49713 6.49713 0.98 0.00121205 0.00112432 0.0488408 0.0453207 40 2703 27 6.79088e+06 202080 706193. 2443.58 20.90 0.514998 0.463488 26254 175826 -1 2526 20 1126 3011 201277 43412 5.86109 5.86109 -144.559 -5.86109 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0499399 0.0453732 99 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 10.13 vpr 63.46 MiB 0.04 6984 -1 -1 13 0.31 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 31 32 294 326 1 211 84 17 17 289 -1 unnamed_device 24.4 MiB 1.02 1272 10515 2952 6532 1031 63.5 MiB 0.16 0.00 7.82626 -160.34 -7.82626 7.82626 0.99 0.00165295 0.00153571 0.0998996 0.0928127 38 3409 45 6.79088e+06 282912 678818. 2348.85 5.03 0.525051 0.476391 25966 169698 -1 2700 30 1721 5629 516698 198644 7.04627 7.04627 -153.27 -7.04627 0 0 902133. 3121.57 0.26 0.26 0.24 -1 -1 0.26 0.0956775 0.0869029 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.88 vpr 62.68 MiB 0.04 6872 -1 -1 10 0.17 -1 -1 32804 -1 -1 18 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 221 253 1 164 79 17 17 289 -1 unnamed_device 24.1 MiB 1.02 776 7346 1622 5412 312 62.7 MiB 0.10 0.00 6.08278 -120.96 -6.08278 6.08278 0.98 0.00119805 0.00111299 0.0554936 0.0515664 36 2456 27 6.79088e+06 242496 648988. 2245.63 2.30 0.267626 0.242176 25390 158009 -1 1888 18 970 2519 142861 34015 5.48863 5.48863 -120.84 -5.48863 0 0 828058. 2865.25 0.25 0.09 0.22 -1 -1 0.25 0.0450034 0.0408893 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 12.21 vpr 63.01 MiB 0.03 6596 -1 -1 14 0.19 -1 -1 32876 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 240 272 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 3.12 1029 11806 4319 6167 1320 63.0 MiB 0.15 0.00 7.85187 -165.875 -7.85187 7.85187 0.98 0.00128785 0.00119579 0.090461 0.0839917 38 2901 18 6.79088e+06 229024 678818. 2348.85 5.33 0.53886 0.487181 25966 169698 -1 2285 17 1108 2931 166285 38043 6.88188 6.88188 -157.143 -6.88188 0 0 902133. 3121.57 0.26 0.10 0.25 -1 -1 0.26 0.0468079 0.0427029 109 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 11.65 vpr 63.33 MiB 0.05 7028 -1 -1 12 0.30 -1 -1 32920 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 292 324 1 206 85 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1254 14965 4982 7682 2301 63.3 MiB 0.22 0.00 7.5794 -159.485 -7.5794 7.5794 0.99 0.00162488 0.0015093 0.136085 0.126259 36 3762 27 6.79088e+06 296384 648988. 2245.63 6.46 0.504139 0.45837 25390 158009 -1 2822 17 1262 3754 216962 48784 6.58422 6.58422 -149.273 -6.58422 0 0 828058. 2865.25 0.25 0.13 0.19 -1 -1 0.25 0.0608981 0.0556434 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 12.75 vpr 62.85 MiB 0.05 6872 -1 -1 12 0.15 -1 -1 32372 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 2.13 927 11106 4587 6333 186 62.8 MiB 0.13 0.00 6.75629 -144.04 -6.75629 6.75629 0.98 0.00121801 0.00113032 0.0792353 0.0734432 44 2250 22 6.79088e+06 242496 787024. 2723.27 6.86 0.503039 0.453786 27118 194962 -1 1913 15 976 2292 119788 29414 5.95079 5.95079 -135.187 -5.95079 0 0 997811. 3452.63 0.30 0.09 0.29 -1 -1 0.30 0.0401646 0.0367101 102 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 10.97 vpr 63.32 MiB 0.04 7000 -1 -1 12 0.19 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 282 314 1 199 82 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1110 8982 1987 6597 398 63.3 MiB 0.13 0.00 6.96264 -150.328 -6.96264 6.96264 0.99 0.00152887 0.00142038 0.0818029 0.0759935 44 3124 23 6.79088e+06 242496 787024. 2723.27 5.74 0.555247 0.501998 27118 194962 -1 2488 17 1187 3517 182585 41687 6.07958 6.07958 -144.805 -6.07958 0 0 997811. 3452.63 0.29 0.12 0.23 -1 -1 0.29 0.0552026 0.0503084 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 18.35 vpr 63.34 MiB 0.05 7048 -1 -1 13 0.27 -1 -1 32952 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 269 301 1 204 83 17 17 289 -1 unnamed_device 24.4 MiB 1.81 1229 11063 3115 5831 2117 63.3 MiB 0.16 0.00 7.65152 -163.899 -7.65152 7.65152 0.99 0.0015186 0.00141094 0.0984699 0.0915044 36 3589 46 6.79088e+06 269440 648988. 2245.63 12.62 0.683011 0.61773 25390 158009 -1 3007 23 1451 3964 385238 135504 6.38062 6.38062 -153.925 -6.38062 0 0 828058. 2865.25 0.25 0.20 0.23 -1 -1 0.25 0.0712109 0.0647301 133 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 7.57 vpr 62.80 MiB 0.03 6916 -1 -1 11 0.16 -1 -1 32300 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 237 269 1 189 79 17 17 289 -1 unnamed_device 23.9 MiB 1.25 1023 7684 1959 5380 345 62.8 MiB 0.11 0.00 7.18607 -145.746 -7.18607 7.18607 0.99 0.00127205 0.0011814 0.0627 0.0580727 44 2835 21 6.79088e+06 202080 787024. 2723.27 2.58 0.26938 0.244419 27118 194962 -1 2332 16 1123 2900 164224 36632 6.12997 6.12997 -140.155 -6.12997 0 0 997811. 3452.63 0.29 0.10 0.28 -1 -1 0.29 0.0436896 0.0398487 106 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 9.49 vpr 63.05 MiB 0.02 6688 -1 -1 13 0.21 -1 -1 32572 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 259 291 1 189 81 17 17 289 -1 unnamed_device 24.1 MiB 1.68 987 11981 4970 6906 105 63.0 MiB 0.16 0.00 7.69321 -163.299 -7.69321 7.69321 0.98 0.00139867 0.00129772 0.101061 0.0938563 36 3181 41 6.79088e+06 229024 648988. 2245.63 4.06 0.441324 0.399989 25390 158009 -1 2374 17 1205 3157 195073 46104 6.99167 6.99167 -157.583 -6.99167 0 0 828058. 2865.25 0.25 0.12 0.22 -1 -1 0.25 0.051539 0.0469637 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 29.05 vpr 63.11 MiB 0.05 7004 -1 -1 13 0.25 -1 -1 32812 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 277 309 1 206 82 17 17 289 -1 unnamed_device 24.1 MiB 1.18 1213 7558 1688 5341 529 63.1 MiB 0.12 0.00 7.72057 -163.412 -7.72057 7.72057 0.98 0.00154475 0.00143454 0.0695554 0.0646078 40 3346 23 6.79088e+06 242496 706193. 2443.58 23.98 0.712158 0.642238 26254 175826 -1 2947 19 1460 3890 245574 53981 6.86709 6.86709 -157.224 -6.86709 0 0 926341. 3205.33 0.27 0.14 0.26 -1 -1 0.27 0.0604294 0.0550448 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 10.10 vpr 62.97 MiB 0.02 7072 -1 -1 11 0.19 -1 -1 32756 -1 -1 20 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 245 277 1 177 81 17 17 289 -1 unnamed_device 24.1 MiB 1.49 1035 10931 3004 6059 1868 63.0 MiB 0.14 0.00 6.92473 -133.923 -6.92473 6.92473 0.98 0.00133897 0.00124394 0.0877825 0.0815291 44 2555 16 6.79088e+06 269440 787024. 2723.27 4.75 0.472666 0.427518 27118 194962 -1 2083 16 869 2629 138771 30419 5.89932 5.89932 -125.47 -5.89932 0 0 997811. 3452.63 0.29 0.09 0.29 -1 -1 0.29 0.0466283 0.0425207 114 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 23.40 vpr 63.65 MiB 0.04 6840 -1 -1 14 0.31 -1 -1 33412 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 316 348 1 233 85 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1325 15151 4537 8677 1937 63.6 MiB 0.24 0.00 9.1052 -188.078 -9.1052 9.1052 0.98 0.00179231 0.00166574 0.151286 0.140598 36 4098 38 6.79088e+06 282912 648988. 2245.63 17.99 0.890881 0.808071 25390 158009 -1 3370 34 2310 6314 574830 206683 7.85206 7.85206 -178.328 -7.85206 0 0 828058. 2865.25 0.24 0.30 0.23 -1 -1 0.24 0.109934 0.0999479 157 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 13.86 vpr 62.55 MiB 0.02 6832 -1 -1 12 0.16 -1 -1 32440 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 230 262 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 3.97 992 10931 4042 5653 1236 62.5 MiB 0.14 0.00 6.67023 -140.221 -6.67023 6.67023 0.98 0.00123182 0.00114247 0.0807746 0.074931 38 2836 31 6.79088e+06 242496 678818. 2348.85 6.33 0.528375 0.476848 25966 169698 -1 2246 16 1034 2371 137760 30842 5.95423 5.95423 -133.712 -5.95423 0 0 902133. 3121.57 0.26 0.09 0.19 -1 -1 0.26 0.0428382 0.0390763 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 7.94 vpr 63.21 MiB 0.04 6952 -1 -1 13 0.26 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 282 314 1 205 82 17 17 289 -1 unnamed_device 24.2 MiB 1.75 1211 8804 1975 6271 558 63.2 MiB 0.14 0.00 7.80836 -158.945 -7.80836 7.80836 0.99 0.00152713 0.00142274 0.0807773 0.0750702 42 3430 25 6.79088e+06 242496 744469. 2576.02 2.28 0.340756 0.309548 26542 182613 -1 2633 23 1235 3663 294991 100610 7.07777 7.07777 -153.313 -7.07777 0 0 949917. 3286.91 0.28 0.17 0.27 -1 -1 0.28 0.0710805 0.0647212 131 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 10.50 vpr 62.77 MiB 0.03 6700 -1 -1 13 0.18 -1 -1 32708 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 235 267 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.74 871 7606 1961 4633 1012 62.8 MiB 0.10 0.00 7.30487 -159.471 -7.30487 7.30487 0.98 0.0012505 0.00116091 0.0581045 0.0539129 38 2747 43 6.79088e+06 229024 678818. 2348.85 5.14 0.458378 0.413468 25966 169698 -1 2088 17 1021 2506 123397 30730 6.57313 6.57313 -157.693 -6.57313 0 0 902133. 3121.57 0.26 0.09 0.24 -1 -1 0.26 0.045023 0.0411634 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 20.98 vpr 63.45 MiB 0.05 6852 -1 -1 12 0.21 -1 -1 32700 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 265 297 1 190 83 17 17 289 -1 unnamed_device 24.5 MiB 2.27 1117 10343 2798 5496 2049 63.4 MiB 0.15 0.00 7.24652 -157.134 -7.24652 7.24652 0.98 0.00150157 0.00139498 0.0905084 0.0840839 38 2903 19 6.79088e+06 255968 678818. 2348.85 14.88 0.634493 0.572757 25966 169698 -1 2406 16 1093 3085 162552 36583 6.12222 6.12222 -145.372 -6.12222 0 0 902133. 3121.57 0.26 0.11 0.24 -1 -1 0.26 0.0514718 0.0469537 123 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 11.08 vpr 63.81 MiB 0.04 7232 -1 -1 15 0.46 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 344 376 1 257 88 17 17 289 -1 unnamed_device 24.7 MiB 2.20 1655 6328 1359 4323 646 63.8 MiB 0.12 0.00 9.54241 -197.152 -9.54241 9.54241 0.88 0.00199172 0.00184919 0.0727699 0.0676774 44 4246 28 6.79088e+06 323328 787024. 2723.27 4.78 0.419845 0.382053 27118 194962 -1 3496 17 1744 5180 293072 63363 8.3568 8.3568 -185.399 -8.3568 0 0 997811. 3452.63 0.29 0.16 0.29 -1 -1 0.29 0.0727713 0.0667372 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 7.11 vpr 62.17 MiB 0.04 6548 -1 -1 10 0.10 -1 -1 32040 -1 -1 11 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 173 205 1 128 73 17 17 289 -1 unnamed_device 23.6 MiB 1.49 622 9801 4088 5460 253 62.2 MiB 0.10 0.00 5.09125 -114.065 -5.09125 5.09125 0.98 0.000877623 0.000813048 0.0596685 0.0553088 34 1784 22 6.79088e+06 148192 618332. 2139.56 2.16 0.21547 0.194075 25102 150614 -1 1475 13 633 1456 94235 21738 4.64375 4.64375 -110.083 -4.64375 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.0256885 0.0232959 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 8.20 vpr 62.70 MiB 0.04 6784 -1 -1 13 0.18 -1 -1 32552 -1 -1 17 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 30 32 229 261 1 178 79 17 17 289 -1 unnamed_device 24.1 MiB 1.42 935 11402 3156 7279 967 62.7 MiB 0.14 0.00 7.38119 -155.519 -7.38119 7.38119 0.98 0.00125931 0.00116863 0.0878784 0.0815589 36 2591 34 6.79088e+06 229024 648988. 2245.63 3.08 0.383321 0.347668 25390 158009 -1 1998 18 1114 2657 131128 32307 6.19723 6.19723 -143.191 -6.19723 0 0 828058. 2865.25 0.27 0.10 0.23 -1 -1 0.27 0.0472575 0.0430864 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.78 vpr 62.95 MiB 0.02 6828 -1 -1 12 0.21 -1 -1 32492 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 261 293 1 202 81 17 17 289 -1 unnamed_device 24.1 MiB 1.96 1157 11456 3936 5585 1935 62.9 MiB 0.16 0.00 7.34961 -160.47 -7.34961 7.34961 0.98 0.00140191 0.00130206 0.0955153 0.0886576 38 3235 42 6.79088e+06 229024 678818. 2348.85 5.07 0.444755 0.402262 25966 169698 -1 2639 16 1421 3649 199275 46091 6.45548 6.45548 -153.947 -6.45548 0 0 902133. 3121.57 0.26 0.11 0.25 -1 -1 0.26 0.0480813 0.0438712 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 8.48 vpr 62.30 MiB 0.02 6800 -1 -1 9 0.16 -1 -1 32532 -1 -1 20 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 25 32 184 216 1 139 77 17 17 289 -1 unnamed_device 23.6 MiB 1.03 733 10672 3175 6267 1230 62.3 MiB 0.11 0.00 5.43484 -102.938 -5.43484 5.43484 0.98 0.000995451 0.00092097 0.0679992 0.0631409 34 2162 27 6.79088e+06 269440 618332. 2139.56 3.96 0.323176 0.291487 25102 150614 -1 1716 18 745 1984 112311 26099 4.79254 4.79254 -103.267 -4.79254 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0377313 0.0342416 87 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 13.46 vpr 63.30 MiB 0.04 7020 -1 -1 12 0.26 -1 -1 32768 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 302 334 1 235 85 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1367 10873 3115 6058 1700 63.3 MiB 0.17 0.00 7.83392 -167.412 -7.83392 7.83392 0.98 0.00163596 0.00151907 0.100307 0.0932357 44 4021 43 6.79088e+06 282912 787024. 2723.27 7.52 0.697382 0.631437 27118 194962 -1 2967 16 1495 4019 221225 49511 6.79572 6.79572 -156.384 -6.79572 0 0 997811. 3452.63 0.30 0.14 0.29 -1 -1 0.30 0.0612816 0.0563971 144 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.55 vpr 63.52 MiB 0.06 6884 -1 -1 14 0.33 -1 -1 33016 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 295 327 1 216 86 17 17 289 -1 unnamed_device 24.7 MiB 0.99 1276 6701 1514 4692 495 63.5 MiB 0.11 0.00 9.054 -184.189 -9.054 9.054 0.98 0.00168562 0.00155425 0.0647738 0.0601849 36 3855 39 6.79088e+06 309856 648988. 2245.63 3.56 0.426141 0.386336 25390 158009 -1 2989 22 1499 4477 251228 56462 7.97736 7.97736 -176.793 -7.97736 0 0 828058. 2865.25 0.25 0.15 0.22 -1 -1 0.25 0.0749357 0.0682543 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.61 vpr 63.83 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30908 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.7 MiB 1.32 896 11381 2877 7599 905 63.8 MiB 0.16 0.00 4.28691 -143.363 -4.28691 4.28691 0.99 0.00133661 0.00124126 0.069396 0.0643776 30 2726 26 6.87369e+06 517032 556674. 1926.21 1.64 0.247876 0.224806 25186 138497 -1 1965 20 1586 2596 135571 34843 3.8594 3.8594 -142.45 -3.8594 0 0 706193. 2443.58 0.22 0.11 0.20 -1 -1 0.22 0.0524535 0.0474734 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.55 vpr 63.49 MiB 0.05 7272 -1 -1 1 0.05 -1 -1 30640 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.7 MiB 3.31 885 13477 4295 6291 2891 63.5 MiB 0.19 0.00 4.22285 -135.326 -4.22285 4.22285 0.98 0.00125393 0.00116509 0.0936512 0.0870243 32 3006 47 6.87369e+06 321398 586450. 2029.24 1.54 0.302308 0.274526 25474 144626 -1 2218 26 2294 3831 345229 79100 4.1993 4.1993 -147.214 -4.1993 0 0 744469. 2576.02 0.23 0.17 0.21 -1 -1 0.23 0.0622927 0.0562801 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 9.67 vpr 63.52 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30396 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.6 MiB 1.98 948 18428 5133 10477 2818 63.5 MiB 0.21 0.00 3.72926 -129.095 -3.72926 3.72926 1.01 0.00121568 0.00112885 0.099385 0.0920231 34 2606 21 6.87369e+06 503058 618332. 2139.56 3.98 0.48676 0.43932 25762 151098 -1 2031 21 1508 2339 185338 41765 3.5118 3.5118 -132.343 -3.5118 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0496547 0.0448952 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.31 vpr 63.59 MiB 0.04 7288 -1 -1 1 0.04 -1 -1 30524 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.7 MiB 1.45 926 15090 5282 7268 2540 63.6 MiB 0.20 0.00 4.1666 -130.173 -4.1666 4.1666 0.98 0.00112994 0.00105182 0.0956682 0.0890532 34 2471 28 6.87369e+06 321398 618332. 2139.56 2.28 0.326453 0.295898 25762 151098 -1 2025 22 1858 3196 233287 53844 3.9517 3.9517 -138.572 -3.9517 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0479833 0.0433501 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.13 vpr 63.59 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 2.21 1030 14965 5016 7973 1976 63.6 MiB 0.21 0.00 4.2175 -149.17 -4.2175 4.2175 1.01 0.00122438 0.00113856 0.102076 0.094967 34 2926 24 6.87369e+06 293451 618332. 2139.56 2.26 0.364363 0.330608 25762 151098 -1 2525 24 2324 4273 353082 79350 4.11 4.11 -158.573 -4.11 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.056386 0.0510635 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 8.86 vpr 63.71 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30492 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1073 20588 6520 11266 2802 63.7 MiB 0.25 0.00 3.56907 -125.93 -3.56907 3.56907 0.98 0.00126943 0.0011745 0.112622 0.104356 28 2545 21 6.87369e+06 544980 531479. 1839.03 3.97 0.476915 0.431719 24610 126494 -1 2256 22 1681 2727 197401 46860 3.02616 3.02616 -128.576 -3.02616 0 0 648988. 2245.63 0.20 0.13 0.18 -1 -1 0.20 0.0542473 0.0490594 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 8.88 vpr 63.35 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30788 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.4 MiB 1.98 742 12754 4384 6452 1918 63.4 MiB 0.15 0.00 3.56305 -106.515 -3.56305 3.56305 0.98 0.000894808 0.000831032 0.0699182 0.0649568 26 2047 24 6.87369e+06 279477 503264. 1741.40 3.51 0.298454 0.268463 24322 120374 -1 1784 17 1150 1845 148293 34482 3.27486 3.27486 -115.159 -3.27486 0 0 618332. 2139.56 0.20 0.08 0.17 -1 -1 0.20 0.0312377 0.028153 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 8.24 vpr 63.32 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30200 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 1.01 991 14273 4115 7548 2610 63.3 MiB 0.16 0.00 3.50391 -113.72 -3.50391 3.50391 0.98 0.00109266 0.00101795 0.0719187 0.0668818 34 2557 23 6.87369e+06 489084 618332. 2139.56 3.71 0.407651 0.367993 25762 151098 -1 2002 21 1329 2095 135449 33638 3.00726 3.00726 -113.025 -3.00726 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0446549 0.0403923 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 9.17 vpr 63.03 MiB 0.06 7216 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 338 292 1 154 79 17 17 289 -1 unnamed_device 24.0 MiB 2.71 771 7177 1785 4818 574 63.0 MiB 0.10 0.00 3.10152 -107.288 -3.10152 3.10152 0.72 0.00105139 0.000975385 0.0474112 0.0439818 32 2201 48 6.87369e+06 223581 586450. 2029.24 3.55 0.41091 0.368473 25474 144626 -1 1902 18 1034 1660 146139 33515 2.80996 2.80996 -112.579 -2.80996 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.037914 0.0342145 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.62 vpr 63.23 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.81 713 9196 2055 5947 1194 63.2 MiB 0.12 0.00 3.55695 -123.921 -3.55695 3.55695 0.98 0.00104369 0.000970218 0.0583852 0.0542501 34 2466 38 6.87369e+06 223581 618332. 2139.56 2.31 0.306185 0.275932 25762 151098 -1 1664 21 1595 2525 159277 40097 3.06826 3.06826 -124.738 -3.06826 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0428745 0.0387126 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.78 vpr 63.19 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30160 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 3.01 789 13496 3921 8098 1477 63.2 MiB 0.16 0.00 3.56085 -119.59 -3.56085 3.56085 0.98 0.00104726 0.000973367 0.0833814 0.0774492 32 2059 20 6.87369e+06 251529 586450. 2029.24 1.17 0.212603 0.193315 25474 144626 -1 1775 21 1456 2170 175824 40965 3.05126 3.05126 -122.211 -3.05126 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0425995 0.038407 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 10.70 vpr 63.29 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.3 MiB 1.62 835 11484 3090 7822 572 63.3 MiB 0.14 0.00 3.48301 -117.758 -3.48301 3.48301 0.98 0.00104692 0.000970751 0.0575375 0.0531861 28 2358 26 6.87369e+06 447163 531479. 1839.03 5.76 0.373505 0.335433 24610 126494 -1 2136 20 1269 2149 195207 43236 2.88196 2.88196 -123.992 -2.88196 0 0 648988. 2245.63 0.20 0.11 0.14 -1 -1 0.20 0.0409102 0.0368774 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.97 vpr 63.56 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 4.22 957 17427 5091 10321 2015 63.6 MiB 0.22 0.00 3.63579 -124.841 -3.63579 3.63579 0.98 0.00125608 0.00116527 0.0981431 0.0910721 34 2722 24 6.87369e+06 489084 618332. 2139.56 2.15 0.361902 0.328127 25762 151098 -1 2238 21 1948 3410 236748 57078 3.14356 3.14356 -124.704 -3.14356 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.050514 0.0456835 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 9.92 vpr 63.49 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30472 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1042 21016 6526 11897 2593 63.5 MiB 0.26 0.00 4.38115 -150.928 -4.38115 4.38115 0.99 0.00128768 0.00119643 0.117575 0.109157 32 3114 35 6.87369e+06 517032 586450. 2029.24 3.86 0.504196 0.456591 25474 144626 -1 2479 25 2280 3594 291417 66217 3.9064 3.9064 -151.888 -3.9064 0 0 744469. 2576.02 0.23 0.16 0.21 -1 -1 0.23 0.0616923 0.055822 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.88 vpr 63.09 MiB 0.07 7180 -1 -1 1 0.04 -1 -1 30612 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 24.3 MiB 2.18 801 11776 3453 6762 1561 63.1 MiB 0.13 0.00 3.43775 -109.554 -3.43775 3.43775 0.98 0.000910113 0.000845648 0.0648861 0.060362 32 2096 20 6.87369e+06 265503 586450. 2029.24 1.18 0.177237 0.160665 25474 144626 -1 1830 22 1211 2010 172562 39155 2.86896 2.86896 -109.018 -2.86896 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0388813 0.0349658 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 11.96 vpr 63.78 MiB 0.06 7244 -1 -1 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.9 MiB 3.03 1029 14221 5946 7079 1196 63.8 MiB 0.18 0.00 3.65105 -129.633 -3.65105 3.65105 0.98 0.00126787 0.00117808 0.0998464 0.0928381 38 2532 24 6.87369e+06 293451 678818. 2348.85 5.25 0.535486 0.484115 26626 170182 -1 2115 22 2101 3648 248422 62383 3.19656 3.19656 -129.298 -3.19656 0 0 902133. 3121.57 0.26 0.14 0.25 -1 -1 0.26 0.0549057 0.0495846 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.08 vpr 63.54 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.6 MiB 4.29 1063 17238 4632 10836 1770 63.5 MiB 0.20 0.00 3.56385 -127.172 -3.56385 3.56385 1.01 0.00122034 0.00113405 0.0917744 0.0850485 28 2462 24 6.87369e+06 531006 531479. 1839.03 1.25 0.250737 0.227962 24610 126494 -1 2251 20 1566 2394 178389 40080 3.06226 3.06226 -127.71 -3.06226 0 0 648988. 2245.63 0.20 0.11 0.18 -1 -1 0.20 0.0481239 0.0435501 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 9.27 vpr 63.34 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30096 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.6 MiB 2.40 827 13113 3535 8341 1237 63.3 MiB 0.16 0.00 2.94421 -107.149 -2.94421 2.94421 0.98 0.001079 0.00100164 0.0702714 0.065169 30 2065 20 6.87369e+06 405241 556674. 1926.21 3.40 0.405 0.364244 25186 138497 -1 1683 18 1104 1763 100596 24142 1.98452 1.98452 -96.2727 -1.98452 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0387125 0.0350032 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 7.48 vpr 62.71 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30204 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.7 MiB 0.87 546 8876 3650 4795 431 62.7 MiB 0.09 0.00 2.76391 -90.9223 -2.76391 2.76391 0.98 0.000765037 0.000709194 0.0440968 0.0408838 34 1433 21 6.87369e+06 195634 618332. 2139.56 3.24 0.27258 0.243064 25762 151098 -1 1234 22 857 1223 106870 25012 2.05582 2.05582 -85.6028 -2.05582 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0335577 0.0300183 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 6.31 vpr 63.25 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.57 892 12636 4354 6390 1892 63.2 MiB 0.16 0.00 4.18343 -130.726 -4.18343 4.18343 0.98 0.00106118 0.000985335 0.0806143 0.0748586 32 2250 27 6.87369e+06 237555 586450. 2029.24 1.23 0.222948 0.202376 25474 144626 -1 1833 18 1037 1559 135765 29818 3.3895 3.3895 -126.653 -3.3895 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0385399 0.0348046 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.94 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.6 MiB 1.11 890 19124 5701 10377 3046 63.5 MiB 0.23 0.00 4.28899 -141.244 -4.28899 4.28899 0.99 0.00120987 0.00112535 0.102139 0.0948815 34 2751 36 6.87369e+06 503058 618332. 2139.56 2.23 0.385041 0.349435 25762 151098 -1 1987 23 1855 2693 205477 48145 3.9547 3.9547 -141.653 -3.9547 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0530978 0.0480128 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 13.74 vpr 63.76 MiB 0.03 7368 -1 -1 1 0.03 -1 -1 30552 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.9 MiB 2.90 954 19380 5897 10246 3237 63.8 MiB 0.24 0.00 3.83561 -129.445 -3.83561 3.83561 0.98 0.00138686 0.00128937 0.113983 0.105707 28 3201 37 6.87369e+06 558954 531479. 1839.03 7.22 0.499896 0.45143 24610 126494 -1 2584 22 1663 2507 244089 66135 4.3389 4.3389 -146.788 -4.3389 0 0 648988. 2245.63 0.20 0.15 0.18 -1 -1 0.20 0.0598462 0.0540297 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 7.62 vpr 62.52 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30688 -1 -1 16 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.9 MiB 2.01 576 9219 3764 4871 584 62.5 MiB 0.08 0.00 2.74191 -79.4562 -2.74191 2.74191 0.98 0.000668519 0.000618718 0.0413078 0.038241 26 1436 22 6.87369e+06 223581 503264. 1741.40 2.37 0.213468 0.190502 24322 120374 -1 1293 21 774 1183 105813 23701 2.28642 2.28642 -81.7768 -2.28642 0 0 618332. 2139.56 0.20 0.07 0.17 -1 -1 0.20 0.0276268 0.0247537 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 7.27 vpr 63.57 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.7 MiB 1.57 1044 9943 2672 6704 567 63.6 MiB 0.15 0.00 4.1666 -141.968 -4.1666 4.1666 0.99 0.00114315 0.00106413 0.0637979 0.05934 34 2846 29 6.87369e+06 293451 618332. 2139.56 2.10 0.2618 0.237165 25762 151098 -1 2165 21 1828 3059 198551 50142 4.1943 4.1943 -145.909 -4.1943 0 0 787024. 2723.27 0.26 0.12 0.22 -1 -1 0.26 0.0467554 0.0423348 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 7.13 vpr 62.53 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30432 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.9 MiB 0.61 510 12556 3038 8879 639 62.5 MiB 0.11 0.00 2.37678 -85.3657 -2.37678 2.37678 0.98 0.00070852 0.000655834 0.0572894 0.0530549 28 1458 25 6.87369e+06 167686 531479. 1839.03 3.16 0.259032 0.232241 24610 126494 -1 1280 17 733 931 89176 25317 1.86652 1.86652 -86.3013 -1.86652 0 0 648988. 2245.63 0.23 0.06 0.18 -1 -1 0.23 0.0245572 0.0220775 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 63.82 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30592 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.9 MiB 0.90 1077 18660 4798 12102 1760 63.8 MiB 0.23 0.00 4.29809 -149.349 -4.29809 4.29809 1.03 0.00122414 0.00112993 0.100951 0.0937807 32 3065 35 6.87369e+06 503058 586450. 2029.24 1.50 0.277572 0.252846 25474 144626 -1 2492 24 2040 3127 265448 60370 4.0632 4.0632 -155.321 -4.0632 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.05557 0.0501925 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.80 vpr 63.43 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30104 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1035 13556 3460 8646 1450 63.4 MiB 0.17 0.00 3.55285 -121.924 -3.55285 3.55285 0.99 0.00114712 0.0010677 0.0698952 0.0649413 32 2601 23 6.87369e+06 503058 586450. 2029.24 1.21 0.21801 0.19834 25474 144626 -1 2150 20 1536 2474 168085 40228 2.99626 2.99626 -120.292 -2.99626 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0458066 0.0414639 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 9.30 vpr 63.83 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30548 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.8 MiB 1.24 1071 14081 3700 9458 923 63.8 MiB 0.19 0.00 4.2699 -147.959 -4.2699 4.2699 0.98 0.00127982 0.00118932 0.0791804 0.073437 30 2752 24 6.87369e+06 544980 556674. 1926.21 4.48 0.500002 0.450977 25186 138497 -1 2227 21 1759 3020 182508 42543 3.6448 3.6448 -142.825 -3.6448 0 0 706193. 2443.58 0.22 0.12 0.19 -1 -1 0.22 0.052109 0.0471776 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.51 vpr 62.95 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.0 MiB 1.35 741 7346 1842 5043 461 62.9 MiB 0.10 0.00 3.07332 -108.287 -3.07332 3.07332 0.99 0.000976371 0.000906693 0.0449575 0.0417752 32 2205 36 6.87369e+06 209608 586450. 2029.24 1.72 0.234344 0.210953 25474 144626 -1 1895 20 1115 1816 164660 37371 3.20286 3.20286 -117.555 -3.20286 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0386823 0.034864 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.99 vpr 63.17 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30224 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 868 11260 4122 5381 1757 63.2 MiB 0.13 0.00 3.54295 -119.425 -3.54295 3.54295 1.01 0.000986141 0.000916626 0.0667017 0.0619515 32 2249 24 6.87369e+06 251529 586450. 2029.24 1.25 0.1945 0.176292 25474 144626 -1 1756 21 1400 2098 179028 40122 2.94596 2.94596 -117.481 -2.94596 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0403095 0.0363308 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 8.49 vpr 63.18 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.3 MiB 1.32 741 13092 5164 5931 1997 63.2 MiB 0.16 0.00 3.48175 -108.061 -3.48175 3.48175 0.98 0.000928352 0.000862366 0.075439 0.070114 34 1997 24 6.87369e+06 265503 618332. 2139.56 3.64 0.382858 0.344105 25762 151098 -1 1760 20 1271 2156 161172 38201 3.06026 3.06026 -112.751 -3.06026 0 0 787024. 2723.27 0.25 0.10 0.22 -1 -1 0.25 0.0368515 0.0332167 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 7.11 vpr 63.17 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.60 858 14700 5473 6996 2231 63.2 MiB 0.20 0.00 3.58201 -129.055 -3.58201 3.58201 0.98 0.00146053 0.00136134 0.0951959 0.0886448 34 2377 21 6.87369e+06 223581 618332. 2139.56 1.95 0.299079 0.271065 25762 151098 -1 1972 20 1470 2432 195064 43242 3.07626 3.07626 -128.201 -3.07626 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0388907 0.0351066 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.71 vpr 63.24 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30332 -1 -1 32 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.4 MiB 1.07 909 12839 3118 8295 1426 63.2 MiB 0.14 0.00 3.52165 -121.124 -3.52165 3.52165 0.98 0.0010012 0.000930879 0.0621254 0.0576395 32 2377 26 6.87369e+06 447163 586450. 2029.24 1.22 0.195034 0.176667 25474 144626 -1 1929 21 1384 2265 184107 42474 2.96796 2.96796 -119.923 -2.96796 0 0 744469. 2576.02 0.22 0.11 0.19 -1 -1 0.22 0.0410761 0.0370152 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 9.42 vpr 63.27 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30188 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.4 MiB 2.52 732 15003 3853 9045 2105 63.3 MiB 0.17 0.00 2.93321 -94.3568 -2.93321 2.93321 0.99 0.000999686 0.000925852 0.0760927 0.0705476 26 2064 25 6.87369e+06 447163 503264. 1741.40 3.47 0.318732 0.287095 24322 120374 -1 1746 24 1470 2495 199177 46390 2.41642 2.41642 -97.4255 -2.41642 0 0 618332. 2139.56 0.19 0.12 0.17 -1 -1 0.19 0.0456031 0.0409989 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.59 vpr 64.08 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30504 -1 -1 44 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 25.1 MiB 3.78 1323 20411 5678 12347 2386 64.1 MiB 0.28 0.00 4.2699 -148.689 -4.2699 4.2699 0.90 0.00122181 0.00112569 0.113465 0.105426 28 3672 31 6.87369e+06 614849 531479. 1839.03 3.16 0.317177 0.289129 24610 126494 -1 3087 23 2412 4365 424128 110292 4.3826 4.3826 -162.844 -4.3826 0 0 648988. 2245.63 0.21 0.20 0.18 -1 -1 0.21 0.0628534 0.0569193 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.79 vpr 63.71 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30548 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 2.84 1053 18419 4965 10740 2714 63.7 MiB 0.22 0.00 3.69025 -132.499 -3.69025 3.69025 0.98 0.00103314 0.000941814 0.100667 0.093543 32 2735 42 6.87369e+06 544980 586450. 2029.24 1.31 0.287508 0.261337 25474 144626 -1 2141 18 1692 2493 177926 40884 3.02916 3.02916 -128.868 -3.02916 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0463754 0.0420779 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.82 vpr 63.28 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.3 MiB 3.36 873 17134 5030 9795 2309 63.3 MiB 0.19 0.00 3.56907 -120.638 -3.56907 3.56907 0.99 0.00109115 0.00101316 0.0909121 0.0843498 34 1988 23 6.87369e+06 433189 618332. 2139.56 1.87 0.316456 0.285787 25762 151098 -1 1720 19 1092 1744 118105 28122 2.81766 2.81766 -111.111 -2.81766 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0406203 0.0366102 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.03 vpr 63.44 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.6 MiB 2.41 1012 8455 2161 5478 816 63.4 MiB 0.14 0.00 3.59121 -120.623 -3.59121 3.59121 0.98 0.00123508 0.00114818 0.0593121 0.0551384 34 2685 25 6.87369e+06 307425 618332. 2139.56 2.07 0.325429 0.2944 25762 151098 -1 2243 19 1648 2730 210963 48456 3.25006 3.25006 -123.466 -3.25006 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0469939 0.0425943 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.35 vpr 63.68 MiB 0.04 7332 -1 -1 1 0.03 -1 -1 30456 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.7 MiB 5.00 1069 16825 6934 7974 1917 63.7 MiB 0.25 0.00 4.97069 -151.821 -4.97069 4.97069 0.99 0.00137561 0.00127786 0.129341 0.120161 34 2708 26 6.87369e+06 307425 618332. 2139.56 2.62 0.429471 0.389054 25762 151098 -1 2346 20 1575 2608 219010 47769 4.26395 4.26395 -150.909 -4.26395 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0538528 0.0486913 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.27 vpr 63.52 MiB 0.05 7344 -1 -1 1 0.03 -1 -1 30396 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.6 MiB 2.45 992 12547 3655 8033 859 63.5 MiB 0.18 0.00 4.75154 -140.363 -4.75154 4.75154 0.98 0.00127904 0.0011883 0.0887223 0.0824125 34 2618 26 6.87369e+06 307425 618332. 2139.56 2.14 0.365608 0.331258 25762 151098 -1 2056 23 1594 2611 193173 45009 3.81876 3.81876 -136.744 -3.81876 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0565889 0.0511968 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 8.16 vpr 63.60 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 36 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.6 MiB 2.36 1065 19023 5641 10657 2725 63.6 MiB 0.23 0.00 3.57405 -123.706 -3.57405 3.57405 0.98 0.00124624 0.00114642 0.106465 0.098585 34 2588 29 6.87369e+06 503058 618332. 2139.56 2.10 0.379894 0.344464 25762 151098 -1 2084 22 1880 3250 219296 51795 2.94596 2.94596 -119.415 -2.94596 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0534831 0.0484446 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.51 vpr 63.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30696 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65424 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.9 MiB 1.76 1155 19618 5472 12434 1712 63.9 MiB 0.24 0.00 4.1996 -146.035 -4.1996 4.1996 0.72 0.00125968 0.00117048 0.107609 0.0998374 30 2958 23 6.87369e+06 531006 556674. 1926.21 1.36 0.266516 0.242826 25186 138497 -1 2309 19 1570 2428 163554 36586 3.9064 3.9064 -153.734 -3.9064 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0474189 0.0429786 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 11.31 vpr 64.35 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30828 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65896 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.3 MiB 3.00 1304 13356 3354 8810 1192 64.4 MiB 0.21 0.00 4.3641 -151.21 -4.3641 4.3641 0.98 0.00153371 0.00142534 0.0860444 0.0799857 32 3822 31 6.87369e+06 586901 586450. 2029.24 4.51 0.620559 0.560249 25474 144626 -1 2827 29 2623 4317 315879 78799 3.7561 3.7561 -149.468 -3.7561 0 0 744469. 2576.02 0.23 0.20 0.21 -1 -1 0.23 0.0829383 0.0749782 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 7.87 vpr 63.15 MiB 0.04 7064 -1 -1 1 0.04 -1 -1 30572 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.2 MiB 2.19 912 12636 4358 6898 1380 63.1 MiB 0.13 0.00 3.51475 -123.276 -3.51475 3.51475 1.09 0.000682111 0.000627646 0.0524465 0.0483256 32 2415 49 6.87369e+06 237555 586450. 2029.24 2.07 0.27636 0.24862 25474 144626 -1 1991 21 1422 2299 207263 45001 3.09956 3.09956 -125.694 -3.09956 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0414716 0.0373047 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 11.58 vpr 63.64 MiB 0.03 7308 -1 -1 1 0.05 -1 -1 30488 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.7 MiB 2.62 1030 19820 5893 11323 2604 63.6 MiB 0.26 0.00 4.2065 -140.971 -4.2065 4.2065 0.99 0.0012539 0.00116369 0.116624 0.108168 26 3219 42 6.87369e+06 517032 503264. 1741.40 5.39 0.47306 0.428187 24322 120374 -1 2730 25 2123 3382 339982 75260 4.52191 4.52191 -165.528 -4.52191 0 0 618332. 2139.56 0.20 0.18 0.17 -1 -1 0.20 0.0603858 0.0543775 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 9.39 vpr 63.88 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.9 MiB 1.91 1125 15147 4465 9540 1142 63.9 MiB 0.20 0.00 3.50375 -124.908 -3.50375 3.50375 0.99 0.00126234 0.0011737 0.0867753 0.0806532 30 2615 20 6.87369e+06 489084 556674. 1926.21 3.87 0.435668 0.393883 25186 138497 -1 2047 22 1534 2693 140187 33757 2.78966 2.78966 -116.866 -2.78966 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0533377 0.0482919 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 8.27 vpr 63.37 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30432 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 1.79 962 16825 4488 11549 788 63.4 MiB 0.20 0.00 4.1996 -145.34 -4.1996 4.1996 0.99 0.000792292 0.000730706 0.0772803 0.0714827 34 3157 22 6.87369e+06 293451 618332. 2139.56 2.74 0.323392 0.292674 25762 151098 -1 2396 23 2220 3846 270655 67065 4.0367 4.0367 -157.406 -4.0367 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0554433 0.0502304 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.11 vpr 63.72 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 3.42 1065 20980 6969 11401 2610 63.7 MiB 0.25 0.00 3.58505 -126.902 -3.58505 3.58505 0.98 0.00129186 0.001199 0.120098 0.111397 34 2469 20 6.87369e+06 503058 618332. 2139.56 1.99 0.388689 0.352727 25762 151098 -1 2085 25 1827 2874 179951 43711 3.04926 3.04926 -123.282 -3.04926 0 0 787024. 2723.27 0.24 0.13 0.19 -1 -1 0.24 0.0605921 0.0547069 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.88 vpr 63.57 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30320 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.39 1034 16009 4261 10158 1590 63.6 MiB 0.20 0.00 3.64005 -127.969 -3.64005 3.64005 0.99 0.00130798 0.00121875 0.0899586 0.0837631 28 2571 32 6.87369e+06 544980 531479. 1839.03 1.97 0.270869 0.24704 24610 126494 -1 2270 23 1484 2775 199040 48876 3.42516 3.42516 -136.092 -3.42516 0 0 648988. 2245.63 0.20 0.13 0.20 -1 -1 0.20 0.0560464 0.0507892 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.92 vpr 63.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30416 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.7 MiB 2.76 1111 18648 5077 11300 2271 63.7 MiB 0.23 0.00 3.58025 -127.27 -3.58025 3.58025 0.99 0.00130231 0.00120219 0.102272 0.0947779 32 3117 40 6.87369e+06 558954 586450. 2029.24 1.52 0.30224 0.274695 25474 144626 -1 2310 22 2000 3307 284060 64046 3.08856 3.08856 -123.355 -3.08856 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0544409 0.0492729 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 7.31 vpr 63.73 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30744 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.7 MiB 1.02 958 13599 3600 8151 1848 63.7 MiB 0.15 0.00 4.3249 -147.82 -4.3249 4.3249 0.98 0.00121682 0.00113107 0.0716327 0.0664574 34 3022 29 6.87369e+06 544980 618332. 2139.56 2.74 0.342003 0.309904 25762 151098 -1 2251 22 1963 3122 207067 53207 4.0177 4.0177 -153.594 -4.0177 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0519338 0.0469787 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 11.14 vpr 63.66 MiB 0.03 7204 -1 -1 1 0.04 -1 -1 30696 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.5 MiB 2.66 1138 19865 5157 12797 1911 63.7 MiB 0.24 0.00 4.20633 -143.385 -4.20633 4.20633 0.99 0.0012794 0.0011894 0.105072 0.0973586 28 2812 35 6.87369e+06 572927 531479. 1839.03 4.85 0.508266 0.459808 24610 126494 -1 2542 19 1958 3236 232865 56463 4.2903 4.2903 -159.074 -4.2903 0 0 648988. 2245.63 0.28 0.13 0.16 -1 -1 0.28 0.048253 0.043716 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.91 vpr 63.74 MiB 0.05 7464 -1 -1 1 0.04 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 3.67 910 8684 1839 6215 630 63.7 MiB 0.13 0.00 4.22589 -134.122 -4.22589 4.22589 0.99 0.00118157 0.00108266 0.055177 0.0511462 30 2752 25 6.87369e+06 517032 556674. 1926.21 1.79 0.236106 0.213581 25186 138497 -1 2053 20 1379 2449 129700 33281 3.8074 3.8074 -136.498 -3.8074 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0525788 0.047436 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.26 vpr 63.75 MiB 0.02 7416 -1 -1 1 0.04 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 3.15 1073 15709 4453 9637 1619 63.7 MiB 0.23 0.00 4.13359 -143.434 -4.13359 4.13359 0.99 0.00132585 0.00123134 0.115542 0.107372 34 3085 22 6.87369e+06 293451 618332. 2139.56 2.51 0.395158 0.358507 25762 151098 -1 2558 23 2117 3883 303226 70494 3.952 3.952 -150.053 -3.952 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.0590131 0.0533083 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.95 vpr 63.40 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30660 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.6 MiB 1.14 917 13236 3861 8362 1013 63.4 MiB 0.14 0.00 3.51475 -125.811 -3.51475 3.51475 0.98 0.000718446 0.000663127 0.0576793 0.0534071 32 2369 29 6.87369e+06 447163 586450. 2029.24 1.27 0.197503 0.178705 25474 144626 -1 2048 22 1502 2388 195051 44741 3.08226 3.08226 -126.971 -3.08226 0 0 744469. 2576.02 0.25 0.11 0.20 -1 -1 0.25 0.0430929 0.0388216 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.81 vpr 63.34 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 2.92 946 12980 4388 6886 1706 63.3 MiB 0.18 0.00 3.54295 -128.782 -3.54295 3.54295 0.98 0.00113853 0.00105614 0.0888105 0.0824119 32 2549 24 6.87369e+06 223581 586450. 2029.24 1.27 0.236784 0.214961 25474 144626 -1 2196 24 1616 2581 255773 54322 3.07756 3.07756 -130.824 -3.07756 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0521401 0.0469814 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.98 vpr 64.11 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30836 -1 -1 44 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.8 MiB 2.07 1417 17327 4454 11447 1426 64.1 MiB 0.24 0.00 4.99284 -170.997 -4.99284 4.99284 1.01 0.00148336 0.0013812 0.103924 0.0965991 28 4003 47 6.87369e+06 614849 531479. 1839.03 3.25 0.355167 0.322905 24610 126494 -1 3356 21 2538 4405 430464 89497 4.95615 4.95615 -183.784 -4.95615 0 0 648988. 2245.63 0.20 0.19 0.18 -1 -1 0.20 0.0606135 0.054947 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 9.62 vpr 63.70 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.7 MiB 2.65 1065 15831 3840 10210 1781 63.7 MiB 0.20 0.00 3.60769 -128.222 -3.60769 3.60769 0.98 0.0012164 0.00113121 0.087026 0.0808105 30 2367 19 6.87369e+06 489084 556674. 1926.21 3.46 0.485158 0.438477 25186 138497 -1 1991 18 1315 2128 103318 26163 3.01816 3.01816 -127.54 -3.01816 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0437257 0.0396015 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.45 vpr 63.24 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30356 -1 -1 31 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.2 MiB 0.71 821 15633 5296 7678 2659 63.2 MiB 0.17 0.00 3.50375 -115.855 -3.50375 3.50375 0.99 0.000995968 0.000913677 0.0757553 0.0702436 28 2080 22 6.87369e+06 433189 531479. 1839.03 1.33 0.199089 0.180665 24610 126494 -1 1774 22 1379 2147 164166 38367 2.87096 2.87096 -114.479 -2.87096 0 0 648988. 2245.63 0.20 0.10 0.13 -1 -1 0.20 0.0416878 0.03753 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 14.00 vpr 64.02 MiB 0.05 7556 -1 -1 1 0.04 -1 -1 30928 -1 -1 47 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 5.44 1186 22455 6542 12947 2966 64.0 MiB 0.30 0.00 4.91264 -166.988 -4.91264 4.91264 1.00 0.00159703 0.00148405 0.138887 0.12895 34 3183 26 6.87369e+06 656770 618332. 2139.56 4.71 0.578756 0.524655 25762 151098 -1 2568 23 2525 3955 317615 71312 4.59755 4.59755 -170.684 -4.59755 0 0 787024. 2723.27 0.25 0.17 0.22 -1 -1 0.25 0.0702688 0.0636143 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 11.05 vpr 63.64 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30404 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.8 MiB 2.93 985 19868 5842 10383 3643 63.6 MiB 0.22 0.00 4.23469 -143.901 -4.23469 4.23469 1.04 0.00122911 0.00114371 0.103249 0.0959407 34 2627 25 6.87369e+06 558954 618332. 2139.56 4.56 0.434615 0.393705 25762 151098 -1 2037 24 2089 3094 219066 51685 3.8063 3.8063 -146.756 -3.8063 0 0 787024. 2723.27 0.24 0.13 0.18 -1 -1 0.24 0.0562052 0.0508481 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.71 vpr 63.32 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30340 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 0.93 863 11641 2973 7602 1066 63.3 MiB 0.14 0.00 3.61805 -128.853 -3.61805 3.61805 1.01 0.000982111 0.000911159 0.0548498 0.0508847 30 2313 20 6.87369e+06 461137 556674. 1926.21 1.26 0.175365 0.158877 25186 138497 -1 1833 21 1352 2272 138158 32614 2.73936 2.73936 -119.013 -2.73936 0 0 706193. 2443.58 0.22 0.10 0.20 -1 -1 0.22 0.0402703 0.0363233 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.36 vpr 63.87 MiB 0.05 7340 -1 -1 1 0.03 -1 -1 30984 -1 -1 45 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 25.0 MiB 2.60 1252 21169 6025 12385 2759 63.9 MiB 0.30 0.00 4.96574 -169.764 -4.96574 4.96574 0.99 0.00142301 0.00132507 0.12858 0.120004 28 3541 24 6.87369e+06 628823 531479. 1839.03 2.10 0.31302 0.286171 24610 126494 -1 2953 23 2742 4807 408917 92642 4.94815 4.94815 -181.752 -4.94815 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0371538 0.0334546 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.99 vpr 63.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.56 800 11776 2730 8638 408 63.2 MiB 0.14 0.00 3.52575 -126.142 -3.52575 3.52575 0.99 0.000977734 0.000909125 0.0673657 0.0625953 34 2210 22 6.87369e+06 223581 618332. 2139.56 1.93 0.272368 0.246109 25762 151098 -1 1892 21 1583 2561 193558 44327 2.97896 2.97896 -127.198 -2.97896 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0403413 0.0363877 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.84 vpr 63.34 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30200 -1 -1 33 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.4 MiB 2.13 726 10247 2605 6820 822 63.3 MiB 0.12 0.00 3.56001 -114.521 -3.56001 3.56001 0.98 0.000977104 0.000907063 0.0486019 0.0450249 28 1988 22 6.87369e+06 461137 531479. 1839.03 1.27 0.172431 0.155771 24610 126494 -1 1867 24 1488 2382 192221 44782 3.09326 3.09326 -119.776 -3.09326 0 0 648988. 2245.63 0.21 0.13 0.18 -1 -1 0.21 0.0455401 0.0406269 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 14.53 vpr 63.51 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30348 -1 -1 35 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 29 32 393 319 1 185 96 17 17 289 -1 unnamed_device 24.6 MiB 3.09 838 14550 4269 7291 2990 63.5 MiB 0.19 0.00 3.60705 -111.262 -3.60705 3.60705 0.89 0.00121916 0.0011326 0.0841739 0.0781272 28 2679 24 6.87369e+06 489084 531479. 1839.03 8.01 0.492586 0.444196 24610 126494 -1 2154 23 1681 2972 268822 62877 3.42846 3.42846 -120.813 -3.42846 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0535351 0.0483313 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 8.16 vpr 63.50 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30756 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 2.47 855 9385 2020 5887 1478 63.5 MiB 0.13 0.00 4.2388 -145.988 -4.2388 4.2388 0.98 0.00127728 0.00118742 0.0679349 0.0631972 32 3276 23 6.87369e+06 293451 586450. 2029.24 2.10 0.28886 0.261888 25474 144626 -1 2273 23 2228 3361 296493 70074 4.36361 4.36361 -163.712 -4.36361 0 0 744469. 2576.02 0.23 0.15 0.23 -1 -1 0.23 0.0567816 0.0514462 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.17 vpr 63.58 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30672 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.04 1101 18901 5415 11502 1984 63.6 MiB 0.23 0.00 4.27375 -150.325 -4.27375 4.27375 0.98 0.000795755 0.000734811 0.0998887 0.0926706 30 2727 28 6.87369e+06 517032 556674. 1926.21 1.44 0.271954 0.247327 25186 138497 -1 2370 21 1881 3186 205028 46397 3.7811 3.7811 -148.809 -3.7811 0 0 706193. 2443.58 0.22 0.13 0.19 -1 -1 0.22 0.0525194 0.0476007 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.53 vpr 63.39 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30560 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 2.86 834 17191 6478 8946 1767 63.4 MiB 0.19 0.00 3.58505 -126.386 -3.58505 3.58505 0.98 0.00109594 0.00101196 0.087313 0.0809574 34 2120 22 6.87369e+06 461137 618332. 2139.56 1.99 0.262316 0.237695 25762 151098 -1 1822 24 1704 2607 182569 44312 3.05726 3.05726 -124.092 -3.05726 0 0 787024. 2723.27 0.28 0.12 0.22 -1 -1 0.28 0.0512729 0.0462161 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 9.19 vpr 63.34 MiB 0.02 7232 -1 -1 1 0.05 -1 -1 30468 -1 -1 18 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.6 MiB 3.80 853 13381 4420 7135 1826 63.3 MiB 0.17 0.00 3.47075 -119.995 -3.47075 3.47075 0.98 0.001087 0.00100895 0.0859412 0.0797372 34 2229 21 6.87369e+06 251529 618332. 2139.56 1.88 0.307584 0.277668 25762 151098 -1 1877 23 1278 2303 177041 40660 2.95226 2.95226 -116.97 -2.95226 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0484156 0.0436296 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 8.09 vpr 63.48 MiB 0.05 7368 -1 -1 1 0.04 -1 -1 30364 -1 -1 34 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65008 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.6 MiB 2.75 920 16740 4557 9743 2440 63.5 MiB 0.21 0.00 3.58505 -116.136 -3.58505 3.58505 0.98 0.00118945 0.00110532 0.0935231 0.0868411 32 2571 25 6.87369e+06 475111 586450. 2029.24 1.73 0.295045 0.267994 25474 144626 -1 1847 21 1299 2127 133130 34557 3.04626 3.04626 -115.112 -3.04626 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0481826 0.0435128 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.35 vpr 63.46 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30492 -1 -1 35 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.6 MiB 1.47 910 12623 3390 8288 945 63.5 MiB 0.15 0.00 4.19891 -126.139 -4.19891 4.19891 0.99 0.00108108 0.00100565 0.0671783 0.0623734 26 2649 48 6.87369e+06 489084 503264. 1741.40 2.46 0.253862 0.229972 24322 120374 -1 2244 24 1651 2727 249845 55083 4.08 4.08 -139.751 -4.08 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.0466449 0.0419959 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 10.19 vpr 63.42 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.4 MiB 2.89 881 11432 3949 5585 1898 63.4 MiB 0.15 0.00 3.58339 -121.207 -3.58339 3.58339 0.99 0.0010375 0.000963128 0.0712865 0.0662132 36 1986 24 6.87369e+06 251529 648988. 2245.63 3.76 0.399474 0.359127 26050 158493 -1 1809 20 1308 2194 150397 34518 3.10756 3.10756 -122.311 -3.10756 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0408131 0.0368161 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.70 vpr 63.35 MiB 0.04 7168 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.3 MiB 3.25 903 14256 4854 7252 2150 63.4 MiB 0.18 0.00 3.47695 -121.703 -3.47695 3.47695 0.99 0.00111682 0.00103623 0.0933405 0.0866189 34 2230 22 6.87369e+06 237555 618332. 2139.56 1.88 0.327468 0.296298 25762 151098 -1 1875 22 1242 2094 156841 36282 2.94116 2.94116 -119.221 -2.94116 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0470195 0.0423711 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 8.69 vpr 63.56 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.6 MiB 1.06 962 16804 5065 8760 2979 63.6 MiB 0.20 0.00 4.2699 -140.915 -4.2699 4.2699 0.98 0.0011364 0.00105715 0.0850849 0.0791464 30 2908 21 6.87369e+06 517032 556674. 1926.21 4.06 0.416363 0.376546 25186 138497 -1 2038 22 1584 2479 135810 33854 3.7781 3.7781 -139.534 -3.7781 0 0 706193. 2443.58 0.22 0.11 0.19 -1 -1 0.22 0.0493151 0.0447213 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.27 vpr 63.67 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30532 -1 -1 38 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.6 MiB 3.88 1088 19380 5928 11114 2338 63.7 MiB 0.24 0.00 4.1996 -147.862 -4.1996 4.1996 0.99 0.00127947 0.0011892 0.107576 0.0998002 28 3135 29 6.87369e+06 531006 531479. 1839.03 1.78 0.285913 0.26023 24610 126494 -1 2735 23 2182 3880 316428 71700 4.2273 4.2273 -159.495 -4.2273 0 0 648988. 2245.63 0.20 0.16 0.18 -1 -1 0.20 0.0564958 0.0511037 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 14.76 vpr 63.71 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30460 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.78 1134 16551 4231 10536 1784 63.7 MiB 0.21 0.00 4.30289 -150.348 -4.30289 4.30289 0.98 0.00128365 0.00119367 0.0936367 0.0869641 28 3282 21 6.87369e+06 517032 531479. 1839.03 7.43 0.418733 0.379394 24610 126494 -1 2687 24 2293 3944 325962 74444 4.2636 4.2636 -162.686 -4.2636 0 0 648988. 2245.63 0.20 0.17 0.18 -1 -1 0.20 0.060308 0.0545676 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 10.77 vpr 63.50 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.72 1120 16732 4960 9705 2067 63.5 MiB 0.21 0.00 4.18791 -143.549 -4.18791 4.18791 0.98 0.00127748 0.00118619 0.0941212 0.0864762 32 3356 43 6.87369e+06 544980 586450. 2029.24 4.39 0.543998 0.490397 25474 144626 -1 2559 22 1832 3248 284080 65210 3.8987 3.8987 -146.064 -3.8987 0 0 744469. 2576.02 0.24 0.15 0.21 -1 -1 0.24 0.054459 0.0493416 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.17 vpr 63.02 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.37 762 13731 3861 8062 1808 63.0 MiB 0.17 0.00 3.50375 -116.253 -3.50375 3.50375 0.98 0.000980784 0.000911407 0.0795162 0.073895 32 2337 23 6.87369e+06 265503 586450. 2029.24 1.26 0.205582 0.186804 25474 144626 -1 1812 21 1356 2233 190042 43904 3.09326 3.09326 -121.189 -3.09326 0 0 744469. 2576.02 0.27 0.11 0.21 -1 -1 0.27 0.0405386 0.0365224 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 11.01 vpr 63.68 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65204 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.8 MiB 3.45 973 15709 4818 9015 1876 63.7 MiB 0.22 0.00 4.25789 -139.697 -4.25789 4.25789 1.00 0.0012408 0.00115504 0.11097 0.103239 34 2424 23 6.87369e+06 321398 618332. 2139.56 3.88 0.497585 0.450224 25762 151098 -1 2040 20 1814 2786 220825 49111 3.8576 3.8576 -141.361 -3.8576 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0480857 0.0435551 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 9.92 vpr 63.91 MiB 0.04 7400 -1 -1 1 0.03 -1 -1 30880 -1 -1 43 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65448 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 25.0 MiB 4.74 1154 14022 3627 9188 1207 63.9 MiB 0.19 0.00 4.3139 -148.916 -4.3139 4.3139 0.98 0.00140134 0.00130113 0.08079 0.0749731 32 3115 26 6.87369e+06 600875 586450. 2029.24 1.49 0.270197 0.245287 25474 144626 -1 2590 26 2316 3899 503195 156049 3.7891 3.7891 -150.342 -3.7891 0 0 744469. 2576.02 0.23 0.23 0.20 -1 -1 0.23 0.0686422 0.0617799 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.54 vpr 63.57 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.21 1028 18273 6109 9512 2652 63.6 MiB 0.23 0.00 4.21733 -142.23 -4.21733 4.21733 1.02 0.00129898 0.00120682 0.111317 0.103267 28 2854 23 6.87369e+06 461137 531479. 1839.03 1.71 0.278537 0.253655 24610 126494 -1 2433 22 2116 3496 265898 61198 3.9987 3.9987 -150.3 -3.9987 0 0 648988. 2245.63 0.20 0.14 0.18 -1 -1 0.20 0.0551173 0.0498121 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 9.81 vpr 63.43 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30476 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 2.21 935 16921 4888 8942 3091 63.4 MiB 0.23 0.00 3.55591 -115.746 -3.55591 3.55591 0.98 0.00125187 0.00116328 0.10167 0.0943139 34 2436 20 6.87369e+06 447163 618332. 2139.56 3.96 0.489994 0.442444 25762 151098 -1 1957 21 1666 2787 196382 47581 2.97126 2.97126 -114.211 -2.97126 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0511346 0.0462009 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.91 vpr 63.60 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30516 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 4.66 1090 14593 4195 9072 1326 63.6 MiB 0.21 0.00 4.1996 -148.343 -4.1996 4.1996 0.98 0.00128411 0.00119326 0.104178 0.0968872 34 3189 24 6.87369e+06 293451 618332. 2139.56 2.56 0.378695 0.343602 25762 151098 -1 2623 22 2207 3817 326059 73269 4.1633 4.1633 -154.606 -4.1633 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.055862 0.0507079 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.84 vpr 63.56 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30336 -1 -1 36 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.6 MiB 2.06 933 12751 3451 8328 972 63.6 MiB 0.16 0.00 3.59125 -113.631 -3.59125 3.59125 0.98 0.00121345 0.0011174 0.0722171 0.066945 26 2582 25 6.87369e+06 503058 503264. 1741.40 1.30 0.229697 0.208316 24322 120374 -1 2353 21 1775 2884 265760 61879 3.18076 3.18076 -120.91 -3.18076 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.04895 0.0442365 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.47 vpr 63.05 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.06 860 12292 3298 7764 1230 63.1 MiB 0.15 0.00 3.53195 -127.337 -3.53195 3.53195 0.98 0.000991955 0.000922882 0.0738595 0.0685873 34 2333 22 6.87369e+06 223581 618332. 2139.56 1.92 0.278822 0.252023 25762 151098 -1 2052 22 1614 2456 208981 47263 3.18556 3.18556 -132.915 -3.18556 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0428657 0.0386959 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 12.61 vpr 63.59 MiB 0.06 7140 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 4.67 1090 19841 5460 12561 1820 63.6 MiB 0.25 0.00 4.3249 -149.687 -4.3249 4.3249 0.98 0.00130992 0.00121906 0.113901 0.105958 34 2740 24 6.87369e+06 517032 618332. 2139.56 4.22 0.471816 0.427582 25762 151098 -1 2215 22 1936 3085 205750 50153 3.7971 3.7971 -147.678 -3.7971 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0554449 0.0502009 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.58 vpr 63.55 MiB 0.04 7256 -1 -1 1 0.03 -1 -1 30464 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 4.08 1089 15151 6141 8127 883 63.6 MiB 0.22 0.00 4.2388 -152.365 -4.2388 4.2388 0.98 0.0012807 0.00118961 0.108183 0.100531 34 2825 24 6.87369e+06 293451 618332. 2139.56 2.11 0.320388 0.291524 25762 151098 -1 2397 22 2182 3485 285035 62715 4.0317 4.0317 -156.669 -4.0317 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0571025 0.0516678 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.71 vpr 63.40 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30580 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.4 MiB 3.49 885 16708 5068 9384 2256 63.4 MiB 0.18 0.00 3.50501 -121.174 -3.50501 3.50501 0.99 0.00100921 0.000936344 0.0817068 0.075699 34 2095 23 6.87369e+06 419215 618332. 2139.56 1.68 0.259432 0.23408 25762 151098 -1 1797 23 1205 1996 155490 35653 2.92096 2.92096 -114.135 -2.92096 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044451 0.0400046 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 7.38 vpr 62.92 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.32 726 9368 2169 6075 1124 62.9 MiB 0.12 0.00 3.51475 -119.248 -3.51475 3.51475 0.98 0.000951574 0.000885044 0.054351 0.0506083 30 2026 22 6.87369e+06 237555 556674. 1926.21 2.59 0.293003 0.263788 25186 138497 -1 1719 20 1275 2089 119933 27997 3.12156 3.12156 -122.852 -3.12156 0 0 706193. 2443.58 0.22 0.09 0.20 -1 -1 0.22 0.0379222 0.0341999 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.57 vpr 63.55 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30328 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.6 MiB 2.81 1023 18795 5443 10816 2536 63.6 MiB 0.22 0.00 4.29699 -143.771 -4.29699 4.29699 0.98 0.00122478 0.00113785 0.103016 0.0956535 28 2623 21 6.87369e+06 489084 531479. 1839.03 1.24 0.255357 0.232624 24610 126494 -1 2351 23 1758 2638 187245 43291 3.8686 3.8686 -145.237 -3.8686 0 0 648988. 2245.63 0.20 0.12 0.18 -1 -1 0.20 0.053921 0.0487613 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.53 vpr 63.71 MiB 0.04 7444 -1 -1 1 0.03 -1 -1 30320 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.8 MiB 1.21 1098 17191 5138 9984 2069 63.7 MiB 0.22 0.00 4.21185 -141.335 -4.21185 4.21185 0.98 0.00105644 0.000978468 0.100383 0.0930999 28 2834 43 6.87369e+06 461137 531479. 1839.03 1.72 0.303314 0.275539 24610 126494 -1 2368 26 1938 3054 244770 54279 4.3386 4.3386 -154.941 -4.3386 0 0 648988. 2245.63 0.20 0.15 0.18 -1 -1 0.20 0.0617484 0.055751 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 13.46 vpr 64.02 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30496 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65552 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 25.1 MiB 1.08 1421 17642 5571 10308 1763 64.0 MiB 0.25 0.00 4.86064 -164.755 -4.86064 4.86064 0.98 0.00132848 0.00123617 0.0986686 0.0916355 28 3890 33 6.87369e+06 572927 531479. 1839.03 8.73 0.533397 0.483173 24610 126494 -1 3246 23 2363 3817 431920 87801 5.26335 5.26335 -183.738 -5.26335 0 0 648988. 2245.63 0.20 0.19 0.18 -1 -1 0.20 0.0594047 0.0539503 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.89 vpr 63.43 MiB 0.06 7252 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.6 MiB 2.54 1005 13939 3832 8899 1208 63.4 MiB 0.18 0.00 3.60295 -120.353 -3.60295 3.60295 0.98 0.0011803 0.00109468 0.0796454 0.0738379 32 2502 23 6.87369e+06 447163 586450. 2029.24 1.76 0.274025 0.248087 25474 144626 -1 2069 21 1723 2859 201811 47765 3.02726 3.02726 -119.605 -3.02726 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.0479391 0.0432712 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.46 vpr 63.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30624 -1 -1 20 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.1 MiB 0.86 681 12247 4957 6112 1178 63.1 MiB 0.14 0.00 3.57611 -105.524 -3.57611 3.57611 0.98 0.000900382 0.000836817 0.0673526 0.0625954 32 1831 22 6.87369e+06 279477 586450. 2029.24 1.15 0.181596 0.1647 25474 144626 -1 1513 20 1196 1691 148700 33230 2.96826 2.96826 -105.67 -2.96826 0 0 744469. 2576.02 0.23 0.09 0.21 -1 -1 0.23 0.0355114 0.0319726 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 18.36 vpr 64.29 MiB 0.05 7448 -1 -1 1 0.03 -1 -1 30704 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 24.9 MiB 2.55 1290 11856 2585 8478 793 64.3 MiB 0.18 0.00 4.1886 -144.956 -4.1886 4.1886 1.01 0.00152173 0.00141357 0.0774849 0.0719093 28 4355 47 6.87369e+06 586901 531479. 1839.03 12.08 0.533362 0.481573 24610 126494 -1 3220 25 2719 4921 465986 101051 4.1823 4.1823 -156.68 -4.1823 0 0 648988. 2245.63 0.20 0.21 0.18 -1 -1 0.20 0.0696619 0.0629728 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.55 vpr 63.77 MiB 0.04 7460 -1 -1 1 0.04 -1 -1 30592 -1 -1 23 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 455 371 1 198 86 17 17 289 -1 unnamed_device 24.8 MiB 3.78 1008 15584 4068 9789 1727 63.8 MiB 0.21 0.00 4.97514 -152.566 -4.97514 4.97514 0.99 0.00133005 0.00123262 0.115178 0.107003 34 2750 24 6.87369e+06 321398 618332. 2139.56 2.14 0.404038 0.365914 25762 151098 -1 2260 22 1711 2729 222780 51416 4.39715 4.39715 -156.871 -4.39715 0 0 787024. 2723.27 0.24 0.13 0.21 -1 -1 0.24 0.0572857 0.0516976 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.91 vpr 63.45 MiB 0.03 7264 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 355 304 1 161 80 17 17 289 -1 unnamed_device 24.5 MiB 3.52 845 12120 3376 6849 1895 63.4 MiB 0.16 0.00 3.7386 -118.219 -3.7386 3.7386 0.98 0.00110426 0.00102441 0.0814261 0.0755266 34 2245 22 6.87369e+06 223581 618332. 2139.56 1.85 0.310359 0.280349 25762 151098 -1 1982 19 1120 1764 152766 34669 3.17986 3.17986 -121.763 -3.17986 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0413569 0.0372923 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 8.43 vpr 63.36 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1081 19448 5671 11859 1918 63.4 MiB 0.24 0.00 4.20169 -143.405 -4.20169 4.20169 0.81 0.00119085 0.00110729 0.106309 0.0987094 32 3319 42 6.87369e+06 475111 586450. 2029.24 3.95 0.510376 0.461412 25474 144626 -1 2406 24 1706 2468 225661 51345 4.0159 4.0159 -145.454 -4.0159 0 0 744469. 2576.02 0.23 0.13 0.21 -1 -1 0.23 0.0544675 0.0492679 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 10.22 vpr 63.95 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30744 -1 -1 40 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 25.1 MiB 1.88 1009 19865 5999 9806 4060 63.9 MiB 0.25 0.00 4.27909 -139.575 -4.27909 4.27909 0.98 0.00141283 0.00130576 0.119361 0.110849 36 2668 22 6.87369e+06 558954 648988. 2245.63 4.62 0.548278 0.49591 26050 158493 -1 2094 23 2035 3002 173282 44014 3.9127 3.9127 -137.51 -3.9127 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0621032 0.056175 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.68 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30408 -1 -1 36 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.7 MiB 1.80 1081 17873 5123 10262 2488 63.6 MiB 0.22 0.00 3.55039 -117.277 -3.55039 3.55039 0.99 0.00117377 0.00109021 0.096603 0.0897049 32 3037 46 6.87369e+06 503058 586450. 2029.24 2.22 0.340756 0.308983 25474 144626 -1 2331 22 1753 3056 253184 58084 3.09956 3.09956 -116.124 -3.09956 0 0 744469. 2576.02 0.23 0.13 0.21 -1 -1 0.23 0.0502663 0.0454256 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 11.50 vpr 63.92 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30508 -1 -1 46 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65456 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.52 1127 20887 5685 13197 2005 63.9 MiB 0.25 0.00 4.26133 -148.87 -4.26133 4.26133 1.00 0.00128473 0.00119371 0.105014 0.0973901 26 3203 28 6.87369e+06 642796 503264. 1741.40 5.33 0.467468 0.42322 24322 120374 -1 2725 24 2332 3999 348122 78448 4.2903 4.2903 -165.617 -4.2903 0 0 618332. 2139.56 0.19 0.17 0.17 -1 -1 0.19 0.0591552 0.0535539 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 9.79 vpr 63.61 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30616 -1 -1 42 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.4 MiB 2.79 1124 19356 5960 11281 2115 63.6 MiB 0.23 0.00 3.52575 -126.289 -3.52575 3.52575 0.98 0.0012773 0.00118683 0.102712 0.0953415 28 2633 20 6.87369e+06 586901 531479. 1839.03 3.38 0.450055 0.407544 24610 126494 -1 2348 24 1800 2906 204711 46103 3.16556 3.16556 -130.647 -3.16556 0 0 648988. 2245.63 0.20 0.13 0.18 -1 -1 0.20 0.0589785 0.0532588 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.89 vpr 63.18 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30468 -1 -1 19 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.2 MiB 1.64 779 12808 4806 6279 1723 63.2 MiB 0.15 0.00 3.53195 -113.473 -3.53195 3.53195 1.00 0.000954326 0.000886884 0.0735157 0.0683326 34 1759 22 6.87369e+06 265503 618332. 2139.56 1.74 0.272905 0.246351 25762 151098 -1 1492 18 1251 1726 124817 27702 2.83486 2.83486 -111.973 -2.83486 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0253865 0.0227559 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.70 vpr 63.44 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30136 -1 -1 15 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 334 290 1 154 79 17 17 289 -1 unnamed_device 24.5 MiB 2.40 831 13092 4612 6447 2033 63.4 MiB 0.16 0.00 3.7386 -116.045 -3.7386 3.7386 0.99 0.00104722 0.000970512 0.0831079 0.0770436 34 1980 22 6.87369e+06 209608 618332. 2139.56 1.79 0.301276 0.271972 25762 151098 -1 1785 19 1099 1596 133069 28912 3.19986 3.19986 -114.973 -3.19986 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0393108 0.0353979 101 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 14.99 vpr 63.51 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30380 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.6 MiB 1.64 1129 19618 5686 11712 2220 63.5 MiB 0.25 0.00 4.1955 -141.345 -4.1955 4.1955 0.98 0.0011842 0.00110002 0.101231 0.0940266 26 3278 47 6.87369e+06 544980 503264. 1741.40 9.76 0.5136 0.46486 24322 120374 -1 2754 23 2205 3686 376480 77619 4.154 4.154 -156.531 -4.154 0 0 618332. 2139.56 0.19 0.17 0.17 -1 -1 0.19 0.0527007 0.0476944 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.96 vpr 63.14 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30372 -1 -1 32 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 24.1 MiB 3.18 802 17103 5488 9192 2423 63.1 MiB 0.18 0.00 3.47765 -107.239 -3.47765 3.47765 0.99 0.000964264 0.000886797 0.0806903 0.0747063 26 2054 23 6.87369e+06 447163 503264. 1741.40 3.35 0.336412 0.302706 24322 120374 -1 1871 24 1350 2216 190015 43681 3.38116 3.38116 -115.579 -3.38116 0 0 618332. 2139.56 0.19 0.11 0.17 -1 -1 0.19 0.0439784 0.039495 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 9.04 vpr 63.08 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 3.42 751 9884 2209 6799 876 63.1 MiB 0.13 0.00 3.54365 -123.521 -3.54365 3.54365 1.00 0.00103428 0.000960618 0.0620319 0.0576765 34 2392 23 6.87369e+06 223581 618332. 2139.56 2.05 0.266869 0.241084 25762 151098 -1 1827 20 1598 2586 178583 45436 3.36586 3.36586 -133.333 -3.36586 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0422063 0.0381575 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.01 vpr 63.63 MiB 0.05 7404 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65160 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.7 MiB 2.43 1001 17198 4714 10441 2043 63.6 MiB 0.21 0.00 3.61625 -124.149 -3.61625 3.61625 0.98 0.00124108 0.00114201 0.0974477 0.0903077 34 2353 21 6.87369e+06 489084 618332. 2139.56 1.95 0.353142 0.320089 25762 151098 -1 1936 23 1913 2913 191772 44672 2.93196 2.93196 -120.744 -2.93196 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0539271 0.0487448 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 9.52 vpr 63.18 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.90 705 11402 3952 5571 1879 63.2 MiB 0.14 0.00 3.12958 -106.498 -3.12958 3.12958 0.98 0.00100291 0.000931889 0.0700349 0.0650818 30 1783 22 6.87369e+06 223581 556674. 1926.21 3.26 0.386418 0.347375 25186 138497 -1 1461 20 839 1414 82562 20213 2.61736 2.61736 -108.233 -2.61736 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.038915 0.0350368 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.75 vpr 63.66 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.7 MiB 2.56 1015 17256 4774 9685 2797 63.7 MiB 0.20 0.00 3.53695 -121.382 -3.53695 3.53695 0.98 0.00120637 0.00111999 0.0916863 0.0850721 30 2407 22 6.87369e+06 517032 556674. 1926.21 3.68 0.402093 0.36362 25186 138497 -1 1961 17 1055 1700 93911 22381 2.76766 2.76766 -113.117 -2.76766 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0415546 0.0376476 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.06 vpr 63.97 MiB 0.05 7468 -1 -1 1 0.03 -1 -1 30424 -1 -1 39 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65504 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.9 MiB 3.17 920 10574 2369 7004 1201 64.0 MiB 0.15 0.00 3.59921 -120.128 -3.59921 3.59921 0.98 0.0013024 0.00121025 0.0609065 0.0565403 32 2627 24 6.87369e+06 544980 586450. 2029.24 1.30 0.229365 0.207947 25474 144626 -1 1986 24 2076 3056 227596 54813 3.14046 3.14046 -119.415 -3.14046 0 0 744469. 2576.02 0.23 0.14 0.21 -1 -1 0.23 0.0597081 0.0539416 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 63.39 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.4 MiB 2.60 840 13206 3885 7374 1947 63.4 MiB 0.16 0.00 3.10562 -111.258 -3.10562 3.10562 0.99 0.000394406 0.000362557 0.0793101 0.0737863 34 2223 21 6.87369e+06 237555 618332. 2139.56 1.77 0.298519 0.269734 25762 151098 -1 1844 22 1272 2028 151984 35900 3.04656 3.04656 -117.878 -3.04656 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0449452 0.0404973 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.75 vpr 63.34 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.5 MiB 3.02 885 10744 2853 7291 600 63.3 MiB 0.14 0.00 3.52165 -124.831 -3.52165 3.52165 0.94 0.00107893 0.00100119 0.0700015 0.0649864 32 2526 22 6.87369e+06 223581 586450. 2029.24 1.26 0.206194 0.187056 25474 144626 -1 2094 18 1310 2207 202627 44749 3.10126 3.10126 -128.155 -3.10126 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.039002 0.0352455 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.44 vpr 63.62 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30680 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.5 MiB 2.68 1034 13768 3498 9086 1184 63.6 MiB 0.18 0.00 4.29009 -146.616 -4.29009 4.29009 0.98 0.00127011 0.00118023 0.0753858 0.069958 32 3055 45 6.87369e+06 558954 586450. 2029.24 2.19 0.334329 0.302784 25474 144626 -1 2298 20 1948 3071 210899 50121 3.6671 3.6671 -144.752 -3.6671 0 0 744469. 2576.02 0.23 0.12 0.21 -1 -1 0.23 0.0499268 0.0452221 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.28 vpr 63.55 MiB 0.03 7300 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.7 MiB 2.20 889 11111 2716 7727 668 63.6 MiB 0.17 0.00 3.59107 -113.02 -3.59107 3.59107 0.99 0.00116738 0.00108548 0.0745662 0.0692708 26 2719 36 6.87369e+06 475111 503264. 1741.40 1.61 0.250667 0.227445 24322 120374 -1 2221 23 1524 2525 214209 53727 3.29986 3.29986 -121.325 -3.29986 0 0 618332. 2139.56 0.20 0.13 0.17 -1 -1 0.20 0.0517261 0.0467355 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.09 vpr 63.89 MiB 0.03 7368 -1 -1 1 0.03 -1 -1 30752 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 25.0 MiB 4.73 962 19136 5921 10212 3003 63.9 MiB 0.25 0.00 4.29009 -146.603 -4.29009 4.29009 0.98 0.00141277 0.00131179 0.114216 0.106019 34 2901 24 6.87369e+06 558954 618332. 2139.56 2.64 0.416453 0.377221 25762 151098 -1 2215 21 2040 3358 235302 56125 3.8424 3.8424 -149.412 -3.8424 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0572553 0.0516837 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.76 vpr 63.09 MiB 0.04 6888 -1 -1 1 0.02 -1 -1 30476 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.2 MiB 0.99 806 7008 1536 4934 538 63.1 MiB 0.09 0.00 3.09052 -107.057 -3.09052 3.09052 0.98 0.000906969 0.0008435 0.039811 0.0370495 30 1972 22 6.87369e+06 223581 556674. 1926.21 2.50 0.275093 0.247196 25186 138497 -1 1568 19 817 1376 83363 19407 2.68766 2.68766 -109.355 -2.68766 0 0 706193. 2443.58 0.22 0.07 0.19 -1 -1 0.22 0.034224 0.0308266 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.59 vpr 63.80 MiB 0.03 7276 -1 -1 1 0.03 -1 -1 30380 -1 -1 37 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.74 980 17961 5545 9859 2557 63.8 MiB 0.22 0.00 4.28709 -142.511 -4.28709 4.28709 0.99 0.00129797 0.00120548 0.101691 0.0943613 34 2533 23 6.87369e+06 517032 618332. 2139.56 2.26 0.365084 0.330621 25762 151098 -1 2029 19 1532 2253 156241 37496 3.7513 3.7513 -139.187 -3.7513 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0485335 0.0439661 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.47 vpr 63.39 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.6 MiB 4.03 956 12808 4156 7121 1531 63.4 MiB 0.17 0.00 3.59615 -131.562 -3.59615 3.59615 1.00 0.00115933 0.00107519 0.0887314 0.082327 34 2236 22 6.87369e+06 223581 618332. 2139.56 1.89 0.329235 0.297728 25762 151098 -1 1976 22 1593 2330 173023 39911 3.11046 3.11046 -132.551 -3.11046 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0495297 0.0446758 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.83 vpr 63.64 MiB 0.04 7260 -1 -1 1 0.03 -1 -1 30340 -1 -1 39 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.8 MiB 2.65 1032 13358 3327 9257 774 63.6 MiB 0.17 0.00 3.59107 -126.232 -3.59107 3.59107 0.98 0.00127716 0.00118756 0.0738409 0.068531 28 2736 38 6.87369e+06 544980 531479. 1839.03 1.65 0.267488 0.242744 24610 126494 -1 2264 21 1614 2453 191202 44339 3.22186 3.22186 -129.465 -3.22186 0 0 648988. 2245.63 0.20 0.12 0.18 -1 -1 0.20 0.0518717 0.0469541 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.66 vpr 64.10 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30812 -1 -1 47 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.0 MiB 4.17 1138 13943 3305 9918 720 64.1 MiB 0.20 0.00 4.94796 -166.013 -4.94796 4.94796 0.98 0.00154348 0.00143533 0.0848834 0.0787223 32 3644 29 6.87369e+06 656770 586450. 2029.24 1.82 0.283473 0.257377 25474 144626 -1 2766 22 2464 4108 391557 85193 4.68355 4.68355 -174.069 -4.68355 0 0 744469. 2576.02 0.23 0.18 0.21 -1 -1 0.23 0.0654202 0.0592268 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 8.12 vpr 62.83 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30224 -1 -1 14 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 24.0 MiB 2.10 614 9036 2336 6266 434 62.8 MiB 0.09 0.00 2.80201 -90.6781 -2.80201 2.80201 1.01 0.000804468 0.000745936 0.0474138 0.0439828 26 1712 31 6.87369e+06 195634 503264. 1741.40 2.76 0.248918 0.222218 24322 120374 -1 1460 15 678 942 91568 21189 2.23032 2.23032 -95.6045 -2.23032 0 0 618332. 2139.56 0.20 0.05 0.17 -1 -1 0.20 0.0203307 0.0181753 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.77 vpr 63.30 MiB 0.07 7064 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.4 MiB 0.98 761 12120 5037 6663 420 63.3 MiB 0.15 0.00 3.55905 -117.266 -3.55905 3.55905 1.01 0.000982929 0.000913254 0.0729226 0.0677984 32 2013 26 6.87369e+06 251529 586450. 2029.24 1.23 0.205506 0.186485 25474 144626 -1 1619 22 1564 2257 190358 43028 3.17176 3.17176 -119.194 -3.17176 0 0 744469. 2576.02 0.23 0.11 0.21 -1 -1 0.23 0.0422392 0.0380618 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 7.17 vpr 63.34 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30064 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.4 MiB 1.56 871 12464 4691 5640 2133 63.3 MiB 0.16 0.00 3.52575 -126.323 -3.52575 3.52575 0.97 0.00104322 0.000969734 0.073475 0.0682339 34 2670 24 6.87369e+06 223581 618332. 2139.56 2.08 0.292997 0.264766 25762 151098 -1 2210 21 1672 2939 239911 55845 3.24686 3.24686 -132.559 -3.24686 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0425858 0.0384245 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.24 vpr 62.91 MiB 0.03 6980 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 24.0 MiB 0.72 742 15004 4316 8330 2358 62.9 MiB 0.14 0.00 3.44875 -93.4787 -3.44875 3.44875 0.98 0.000838039 0.000778897 0.0614939 0.0568011 30 1607 21 6.87369e+06 517032 556674. 1926.21 1.12 0.164575 0.148595 25186 138497 -1 1382 20 912 1515 78641 19457 2.68766 2.68766 -92.7847 -2.68766 0 0 706193. 2443.58 0.24 0.07 0.19 -1 -1 0.24 0.033506 0.0301232 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.98 vpr 63.69 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 3.08 1048 13105 3502 8476 1127 63.7 MiB 0.20 0.00 4.14459 -143.334 -4.14459 4.14459 0.99 0.0013273 0.00123327 0.0971502 0.0902962 34 2945 23 6.87369e+06 293451 618332. 2139.56 2.19 0.37711 0.341752 25762 151098 -1 2362 21 1932 3545 240880 56872 3.7061 3.7061 -146.327 -3.7061 0 0 787024. 2723.27 0.25 0.13 0.22 -1 -1 0.25 0.0544364 0.0492589 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.15 vpr 63.80 MiB 0.04 7348 -1 -1 1 0.03 -1 -1 30492 -1 -1 40 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65332 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.8 MiB 2.43 970 12635 3084 8691 860 63.8 MiB 0.19 0.00 3.61805 -122.805 -3.61805 3.61805 0.98 0.00128967 0.00119622 0.0757856 0.0700111 34 2382 25 6.87369e+06 558954 618332. 2139.56 2.12 0.353986 0.319834 25762 151098 -1 1988 21 1917 2930 191299 46719 2.92396 2.92396 -118.178 -2.92396 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0529174 0.0478638 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.03 vpr 63.61 MiB 0.06 7160 -1 -1 1 0.03 -1 -1 30776 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.5 MiB 1.99 1423 18363 6491 9531 2341 63.6 MiB 0.25 0.00 5.12584 -175.071 -5.12584 5.12584 0.98 0.00135051 0.00125641 0.12132 0.112796 34 3808 26 6.89349e+06 408721 618332. 2139.56 2.26 0.358766 0.326112 25762 151098 -1 2978 23 2687 3239 245700 54677 4.65275 4.65275 -174.482 -4.65275 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0593716 0.0536845 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.69 vpr 63.59 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 30 32 409 330 1 261 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1164 10291 2498 6711 1082 63.6 MiB 0.15 0.00 5.38747 -162.07 -5.38747 5.38747 0.99 0.00125734 0.00116863 0.066842 0.0621365 36 3222 24 6.89349e+06 408721 648988. 2245.63 2.35 0.334686 0.302454 26050 158493 -1 2615 20 1986 2758 190283 42521 4.42668 4.42668 -152.772 -4.42668 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0494195 0.0447398 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.85 vpr 63.48 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30496 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.6 MiB 2.05 1242 15533 4163 9385 1985 63.5 MiB 0.21 0.00 4.07746 -141.47 -4.07746 4.07746 0.99 0.00121522 0.00112909 0.0982299 0.0912605 34 3089 29 6.89349e+06 352346 618332. 2139.56 2.15 0.366151 0.331701 25762 151098 -1 2441 20 1629 2012 145564 32723 3.5782 3.5782 -138.252 -3.5782 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0477379 0.0432095 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.88 vpr 63.27 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30516 -1 -1 25 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.4 MiB 2.14 970 11615 3398 7414 803 63.3 MiB 0.16 0.00 4.55805 -138.177 -4.55805 4.55805 0.99 0.00112175 0.00104373 0.0712291 0.0662134 34 2467 23 6.89349e+06 352346 618332. 2139.56 2.17 0.307954 0.278762 25762 151098 -1 1938 23 1753 2673 163110 37931 3.70926 3.70926 -132.867 -3.70926 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0496879 0.0449037 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.35 vpr 63.46 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 2.29 1348 11398 3143 6769 1486 63.5 MiB 0.18 0.00 5.03124 -172.569 -5.03124 5.03124 0.99 0.00123511 0.00114945 0.0749962 0.069756 36 3240 30 6.89349e+06 338252 648988. 2245.63 3.42 0.355123 0.322097 26050 158493 -1 2786 21 2213 3835 264350 58997 4.38525 4.38525 -170.358 -4.38525 0 0 828058. 2865.25 0.25 0.14 0.23 -1 -1 0.25 0.0506742 0.0459389 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.95 vpr 63.71 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30460 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.7 MiB 2.13 1504 20359 5925 11930 2504 63.7 MiB 0.26 0.00 4.44565 -148.692 -4.44565 4.44565 0.99 0.0012722 0.00118211 0.107587 0.0998974 34 3568 22 6.89349e+06 577847 618332. 2139.56 2.16 0.375014 0.340284 25762 151098 -1 2913 22 1996 3201 225204 50485 3.50575 3.50575 -139.015 -3.50575 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0544335 0.0492683 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.06 vpr 62.89 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30652 -1 -1 21 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.42 736 14528 4306 9196 1026 62.9 MiB 0.16 0.00 3.83226 -109.478 -3.83226 3.83226 0.98 0.00111867 0.00102938 0.0792554 0.0736363 30 2004 33 6.89349e+06 295971 556674. 1926.21 1.22 0.20817 0.188695 25186 138497 -1 1617 20 1157 1681 96912 23589 3.00146 3.00146 -107.805 -3.00146 0 0 706193. 2443.58 0.22 0.08 0.19 -1 -1 0.22 0.0353535 0.0318243 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.68 vpr 63.21 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30220 -1 -1 35 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.2 MiB 0.98 921 14273 4376 7304 2593 63.2 MiB 0.16 0.00 3.53335 -112.444 -3.53335 3.53335 0.98 0.00107853 0.0010021 0.0705934 0.0655013 34 2570 23 6.89349e+06 493284 618332. 2139.56 2.19 0.297353 0.268763 25762 151098 -1 1982 21 1306 2276 169790 44108 2.64751 2.64751 -106.224 -2.64751 0 0 787024. 2723.27 0.28 0.11 0.22 -1 -1 0.28 0.0441959 0.0399072 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 9.57 vpr 63.35 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30284 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 338 292 1 226 84 17 17 289 -1 unnamed_device 24.5 MiB 1.81 958 7221 1428 5393 400 63.4 MiB 0.10 0.00 3.63689 -118.334 -3.63689 3.63689 0.98 0.00105505 0.000979594 0.0446638 0.0410775 36 2278 23 6.89349e+06 295971 648988. 2245.63 4.41 0.365246 0.326941 26050 158493 -1 1916 19 1326 1607 107721 25942 2.98051 2.98051 -117.062 -2.98051 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.039768 0.0358818 141 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.00 vpr 63.07 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.67 907 7463 1702 5402 359 63.1 MiB 0.11 0.00 3.77475 -131.313 -3.77475 3.77475 0.98 0.00104255 0.000969395 0.0455375 0.0423176 34 2496 25 6.89349e+06 267783 618332. 2139.56 1.93 0.268293 0.241884 25762 151098 -1 1962 21 1593 2076 154827 36229 3.22376 3.22376 -131.542 -3.22376 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0442562 0.0399683 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.58 vpr 63.25 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30192 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.2 MiB 2.06 945 6923 1685 4939 299 63.2 MiB 0.10 0.00 4.3573 -138.042 -4.3573 4.3573 0.98 0.00104395 0.000969725 0.0425455 0.0395318 34 2510 35 6.89349e+06 295971 618332. 2139.56 1.97 0.281204 0.25276 25762 151098 -1 2033 20 1643 2190 156456 35882 3.74735 3.74735 -138.987 -3.74735 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0410313 0.0370062 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 8.17 vpr 63.23 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.4 MiB 1.88 879 15822 5947 6978 2897 63.2 MiB 0.18 0.00 3.8521 -121.987 -3.8521 3.8521 0.98 0.00104539 0.000969684 0.0929902 0.0862642 36 2345 24 6.89349e+06 281877 648988. 2245.63 2.79 0.317708 0.287035 26050 158493 -1 1796 19 1172 1312 94358 22827 3.11391 3.11391 -113.528 -3.11391 0 0 828058. 2865.25 0.25 0.08 0.23 -1 -1 0.25 0.0395823 0.035707 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 10.32 vpr 63.44 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30336 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 386 305 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.46 1132 13751 4297 6849 2605 63.4 MiB 0.18 0.00 4.33609 -144.609 -4.33609 4.33609 0.99 0.00123872 0.00115182 0.089107 0.082816 40 2605 23 6.89349e+06 352346 706193. 2443.58 5.27 0.488307 0.441046 26914 176310 -1 2231 20 1619 2250 220434 47450 3.5608 3.5608 -134.872 -3.5608 0 0 926341. 3205.33 0.27 0.12 0.26 -1 -1 0.27 0.0487566 0.0441022 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.58 vpr 63.41 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30640 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.5 MiB 2.00 1321 17480 4867 10322 2291 63.4 MiB 0.26 0.00 5.11569 -169.051 -5.11569 5.11569 1.03 0.0014463 0.00134009 0.114099 0.106252 34 3544 29 6.89349e+06 394628 618332. 2139.56 2.78 0.361406 0.32864 25762 151098 -1 2774 19 2114 2811 211336 47805 4.56195 4.56195 -168.831 -4.56195 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0489906 0.0444518 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.75 vpr 62.78 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30704 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.8 MiB 1.49 818 11296 2810 7489 997 62.8 MiB 0.12 0.00 3.60615 -110.973 -3.60615 3.60615 0.99 0.000909434 0.000845476 0.060188 0.0559325 34 2085 24 6.89349e+06 295971 618332. 2139.56 1.84 0.254042 0.228791 25762 151098 -1 1780 19 1122 1536 115778 27370 3.14356 3.14356 -111.784 -3.14356 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.034878 0.0314548 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 9.21 vpr 63.48 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30452 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.5 MiB 2.71 1331 17315 6030 8650 2635 63.5 MiB 0.25 0.00 4.31019 -149.022 -4.31019 4.31019 1.01 0.00128307 0.00118349 0.114539 0.10628 34 3707 36 6.89349e+06 352346 618332. 2139.56 2.63 0.413214 0.37451 25762 151098 -1 2920 23 2569 3967 294982 64999 3.80665 3.80665 -144.919 -3.80665 0 0 787024. 2723.27 0.25 0.15 0.22 -1 -1 0.25 0.0551125 0.0499005 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.13 vpr 63.65 MiB 0.04 7236 -1 -1 1 0.03 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.7 MiB 1.24 1195 12959 3577 7748 1634 63.6 MiB 0.16 0.00 3.72345 -132.536 -3.72345 3.72345 1.11 0.000801589 0.000740027 0.058529 0.0540489 34 2857 25 6.89349e+06 352346 618332. 2139.56 2.17 0.322252 0.29068 25762 151098 -1 2336 21 1768 2188 155970 35601 3.15356 3.15356 -127.742 -3.15356 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0503384 0.0455417 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.92 vpr 63.35 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 30124 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.5 MiB 2.26 1016 15395 4898 7558 2939 63.3 MiB 0.19 0.00 3.65519 -124.98 -3.65519 3.65519 0.98 0.00108282 0.00100286 0.0910679 0.0844955 36 3016 45 6.89349e+06 310065 648988. 2245.63 2.06 0.314128 0.284144 26050 158493 -1 2161 17 1573 2069 145745 33287 2.80416 2.80416 -115.683 -2.80416 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0373984 0.0338311 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 6.29 vpr 62.65 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 226 208 1 143 77 17 17 289 -1 unnamed_device 24.2 MiB 1.14 571 8227 1989 5670 568 62.7 MiB 0.08 0.00 3.06366 -95.2969 -3.06366 3.06366 0.99 0.000769012 0.000712765 0.0408288 0.0378502 34 1554 20 6.89349e+06 211408 618332. 2139.56 1.73 0.192409 0.171915 25762 151098 -1 1195 16 655 754 56837 13990 2.11707 2.11707 -84.9586 -2.11707 0 0 787024. 2723.27 0.24 0.05 0.22 -1 -1 0.24 0.0255662 0.0229952 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.26 vpr 63.12 MiB 0.04 7280 -1 -1 1 0.04 -1 -1 30516 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.67 1128 13663 4696 6887 2080 63.1 MiB 0.17 0.00 4.28999 -147.715 -4.28999 4.28999 0.99 0.0010598 0.000984059 0.0808278 0.075001 34 2734 29 6.89349e+06 310065 618332. 2139.56 2.06 0.317686 0.286903 25762 151098 -1 2171 21 1521 2013 135325 31803 3.4245 3.4245 -136.014 -3.4245 0 0 787024. 2723.27 0.25 0.05 0.22 -1 -1 0.25 0.0199996 0.0179579 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.90 vpr 63.38 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30208 -1 -1 40 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1108 20112 5949 11325 2838 63.4 MiB 0.23 0.00 4.59713 -153.571 -4.59713 4.59713 0.99 0.00121286 0.00111808 0.101937 0.0945411 34 2694 22 6.89349e+06 563754 618332. 2139.56 1.99 0.322856 0.292228 25762 151098 -1 2286 21 2025 2882 218618 48135 3.98144 3.98144 -148.484 -3.98144 0 0 787024. 2723.27 0.24 0.13 0.17 -1 -1 0.24 0.0495176 0.0448846 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.26 vpr 63.78 MiB 0.03 7280 -1 -1 1 0.04 -1 -1 30640 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.9 MiB 1.86 1494 19967 6137 11054 2776 63.8 MiB 0.27 0.00 4.36459 -147.604 -4.36459 4.36459 0.99 0.0013857 0.00128798 0.127025 0.117951 36 3447 24 6.89349e+06 436909 648988. 2245.63 2.68 0.422801 0.382612 26050 158493 -1 2814 22 2156 2475 182595 41185 4.08056 4.08056 -146.66 -4.08056 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0591529 0.0533987 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.56 vpr 62.39 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30564 -1 -1 18 26 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.7 MiB 1.31 673 10476 3641 5320 1515 62.4 MiB 0.10 0.00 2.84541 -82.0128 -2.84541 2.84541 0.99 0.000669693 0.000619828 0.0459398 0.0425382 30 1519 18 6.89349e+06 253689 556674. 1926.21 0.92 0.114917 0.103811 25186 138497 -1 1300 14 458 589 49111 10218 1.98531 1.98531 -76.0034 -1.98531 0 0 706193. 2443.58 0.24 0.05 0.21 -1 -1 0.24 0.0205234 0.0185677 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.67 vpr 63.10 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30192 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.1 MiB 1.29 999 9757 2585 6607 565 63.1 MiB 0.14 0.00 4.12784 -138.698 -4.12784 4.12784 0.98 0.00113204 0.00105355 0.0620127 0.057684 30 2932 31 6.89349e+06 295971 556674. 1926.21 1.87 0.224027 0.203536 25186 138497 -1 2151 21 1342 2407 149577 35042 3.75825 3.75825 -145.955 -3.75825 0 0 706193. 2443.58 0.26 0.12 0.17 -1 -1 0.26 0.0489384 0.0441212 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 7.05 vpr 62.40 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.8 MiB 0.51 505 8236 1869 5918 449 62.4 MiB 0.08 0.00 2.24722 -82.618 -2.24722 2.24722 0.98 0.000711493 0.000659683 0.0382591 0.0354579 34 1351 21 6.89349e+06 169126 618332. 2139.56 3.24 0.256387 0.22901 25762 151098 -1 1141 19 707 1028 65953 17172 1.88146 1.88146 -84.6117 -1.88146 0 0 787024. 2723.27 0.26 0.06 0.22 -1 -1 0.26 0.0266524 0.0239493 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 9.14 vpr 63.46 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30724 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.6 MiB 1.36 1083 14147 4068 9141 938 63.5 MiB 0.20 0.00 4.6633 -160.25 -4.6633 4.6633 0.99 0.00121632 0.00113166 0.0900703 0.0838038 34 2875 39 6.89349e+06 352346 618332. 2139.56 4.16 0.522282 0.472356 25762 151098 -1 2161 21 1756 2392 159103 38335 3.84556 3.84556 -151.384 -3.84556 0 0 787024. 2723.27 0.25 0.11 0.19 -1 -1 0.25 0.0497131 0.045021 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 8.83 vpr 63.30 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30120 -1 -1 36 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.88 894 11004 2536 7514 954 63.3 MiB 0.14 0.00 3.4709 -118.467 -3.4709 3.4709 0.98 0.00115217 0.00106255 0.0571512 0.0530344 28 2660 25 6.89349e+06 507378 531479. 1839.03 4.44 0.426004 0.384487 24610 126494 -1 2282 22 1518 2433 150701 38067 2.86981 2.86981 -121.465 -2.86981 0 0 648988. 2245.63 0.24 0.11 0.18 -1 -1 0.24 0.042361 0.0382322 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.05 vpr 63.51 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 2.21 1339 13155 3540 7510 2105 63.5 MiB 0.19 0.00 4.61325 -160.256 -4.61325 4.61325 0.98 0.00128468 0.00118974 0.0872196 0.081074 34 3506 23 6.89349e+06 366440 618332. 2139.56 2.22 0.354114 0.320762 25762 151098 -1 2700 22 2491 3598 244968 55018 3.77346 3.77346 -151.494 -3.77346 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0541645 0.0491166 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 8.11 vpr 63.28 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 24.3 MiB 2.16 861 14256 5425 7077 1754 63.3 MiB 0.17 0.00 3.57625 -122.891 -3.57625 3.57625 0.99 0.000982989 0.00091211 0.0821084 0.0762297 34 2812 39 6.89349e+06 239595 618332. 2139.56 2.43 0.264877 0.239221 25762 151098 -1 1978 22 1614 2362 187733 41950 2.86796 2.86796 -120.002 -2.86796 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0420167 0.0378285 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.50 vpr 62.98 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.81 1065 12331 4521 6770 1040 63.0 MiB 0.15 0.00 4.27029 -139.787 -4.27029 4.27029 1.03 0.000986743 0.000915861 0.0719797 0.0668999 34 2673 23 6.89349e+06 267783 618332. 2139.56 2.11 0.281186 0.253521 25762 151098 -1 2214 21 1555 2455 211368 44077 3.6172 3.6172 -139.777 -3.6172 0 0 787024. 2723.27 0.25 0.12 0.22 -1 -1 0.25 0.0453869 0.0411062 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.94 vpr 62.99 MiB 0.03 7116 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.1 MiB 2.22 765 11106 3048 7362 696 63.0 MiB 0.14 0.00 4.28325 -126.024 -4.28325 4.28325 1.03 0.000919289 0.000853754 0.0608608 0.0565431 30 2277 23 6.89349e+06 295971 556674. 1926.21 1.24 0.180256 0.16323 25186 138497 -1 1697 22 1124 1846 107453 26074 3.55595 3.55595 -122.845 -3.55595 0 0 706193. 2443.58 0.22 0.09 0.19 -1 -1 0.22 0.0393755 0.0354289 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.82 vpr 63.00 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.31 856 14700 5411 7261 2028 63.0 MiB 0.18 0.00 3.66161 -130.921 -3.66161 3.66161 0.98 0.000990862 0.000921703 0.0867485 0.0807477 34 2199 31 6.89349e+06 225501 618332. 2139.56 1.95 0.288675 0.260955 25762 151098 -1 1911 21 1526 2466 190785 40898 3.02436 3.02436 -124.857 -3.02436 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0403479 0.0363884 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 9.11 vpr 63.07 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 24.1 MiB 1.56 976 14322 4714 7465 2143 63.1 MiB 0.18 0.00 3.81397 -130.472 -3.81397 3.81397 0.99 0.00101146 0.000940407 0.0840802 0.0781669 34 2355 47 6.89349e+06 267783 618332. 2139.56 4.07 0.42877 0.386094 25762 151098 -1 1984 19 1199 1751 106965 25800 2.89006 2.89006 -119.888 -2.89006 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0379512 0.0342685 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.09 vpr 63.21 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.74 1053 14724 4750 7690 2284 63.2 MiB 0.18 0.00 3.61135 -116.611 -3.61135 3.61135 0.99 0.000998175 0.00092639 0.0831485 0.0771995 34 2443 32 6.89349e+06 324158 618332. 2139.56 1.83 0.306482 0.276611 25762 151098 -1 2024 17 1157 1544 105081 24188 2.68976 2.68976 -107.899 -2.68976 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.034682 0.031309 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 8.84 vpr 63.70 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.4 MiB 1.84 1309 18247 5425 10282 2540 63.7 MiB 0.27 0.00 4.62495 -157.212 -4.62495 4.62495 0.99 0.00140444 0.00130833 0.127972 0.119207 34 3527 43 6.89349e+06 380534 618332. 2139.56 3.25 0.462463 0.420388 25762 151098 -1 2849 22 2199 3629 314410 65952 4.16326 4.16326 -156.747 -4.16326 0 0 787024. 2723.27 0.24 0.16 0.22 -1 -1 0.24 0.0594553 0.0539185 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 10.94 vpr 63.62 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30644 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1141 14147 3989 7288 2870 63.6 MiB 0.20 0.00 4.18754 -143.488 -4.18754 4.18754 0.98 0.00109842 0.00100916 0.0941576 0.0874929 36 3303 23 6.89349e+06 352346 648988. 2245.63 4.92 0.52014 0.469849 26050 158493 -1 2637 24 2774 3846 302269 66564 3.96065 3.96065 -152.967 -3.96065 0 0 828058. 2865.25 0.26 0.16 0.23 -1 -1 0.26 0.0584132 0.0527895 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.01 vpr 63.23 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30540 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1094 14965 4631 8028 2306 63.2 MiB 0.18 0.00 3.69435 -123.755 -3.69435 3.69435 0.99 0.00109125 0.0010111 0.0901711 0.0836776 34 2569 27 6.89349e+06 310065 618332. 2139.56 2.06 0.325623 0.294207 25762 151098 -1 2176 21 1418 1485 120060 27202 3.07481 3.07481 -119.491 -3.07481 0 0 787024. 2723.27 0.24 0.09 0.23 -1 -1 0.24 0.0442944 0.0399399 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.11 vpr 63.72 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30456 -1 -1 26 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.8 MiB 2.45 1248 13157 3309 8741 1107 63.7 MiB 0.20 0.00 4.45339 -147.016 -4.45339 4.45339 0.98 0.00124723 0.00115903 0.0856149 0.0795723 34 3168 23 6.89349e+06 366440 618332. 2139.56 2.06 0.343522 0.311321 25762 151098 -1 2634 20 1819 2605 205853 57101 3.6 3.6 -140.793 -3.6 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.04895 0.0443433 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 11.26 vpr 63.71 MiB 0.05 7444 -1 -1 1 0.03 -1 -1 30532 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 2.31 1502 16069 5112 8143 2814 63.7 MiB 0.24 0.00 5.11799 -165.069 -5.11799 5.11799 0.98 0.00148153 0.00139024 0.10899 0.101466 36 3806 46 6.89349e+06 436909 648988. 2245.63 5.22 0.586183 0.529073 26050 158493 -1 2837 20 2136 2382 208412 45298 4.60875 4.60875 -161.2 -4.60875 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0540525 0.0488537 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.72 vpr 63.62 MiB 0.05 7376 -1 -1 1 0.03 -1 -1 30348 -1 -1 28 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.6 MiB 2.61 1430 16615 4445 10446 1724 63.6 MiB 0.24 0.00 5.49016 -175.123 -5.49016 5.49016 0.99 0.00126788 0.00117773 0.106695 0.0990679 42 2998 21 6.89349e+06 394628 744469. 2576.02 4.38 0.516171 0.466599 27202 183097 -1 2527 18 1784 2416 157716 37686 4.61124 4.61124 -162.779 -4.61124 0 0 949917. 3286.91 0.26 0.10 0.27 -1 -1 0.26 0.0408607 0.0370624 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 10.16 vpr 63.48 MiB 0.03 7400 -1 -1 1 0.04 -1 -1 30436 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.6 MiB 2.07 1345 14763 4031 8768 1964 63.5 MiB 0.23 0.00 3.73835 -129.663 -3.73835 3.73835 0.98 0.00131125 0.00122222 0.105726 0.0983165 40 2688 21 6.89349e+06 380534 706193. 2443.58 4.32 0.501296 0.453592 26914 176310 -1 2643 21 2144 2994 252190 52777 3.20476 3.20476 -128.412 -3.20476 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0510994 0.0462666 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 8.21 vpr 63.48 MiB 0.03 7256 -1 -1 1 0.03 -1 -1 30512 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 2.23 1277 12127 3340 7626 1161 63.5 MiB 0.18 0.00 4.64285 -160.85 -4.64285 4.64285 0.99 0.00126187 0.00117305 0.0781517 0.0726308 34 3290 35 6.89349e+06 380534 618332. 2139.56 2.41 0.373407 0.338184 25762 151098 -1 2661 21 2146 2877 209355 47173 4.07096 4.07096 -156.999 -4.07096 0 0 787024. 2723.27 0.26 0.13 0.22 -1 -1 0.26 0.0535546 0.0486537 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 12.41 vpr 63.72 MiB 0.04 7440 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.0 MiB 2.61 1586 15215 4372 9081 1762 63.7 MiB 0.27 0.01 5.09938 -172.571 -5.09938 5.09938 0.99 0.00185176 0.00172065 0.113493 0.10554 34 5293 44 6.89349e+06 436909 618332. 2139.56 5.96 0.497229 0.450525 25762 151098 -1 3744 22 3467 5023 479154 101354 4.89939 4.89939 -183.417 -4.89939 0 0 787024. 2723.27 0.24 0.21 0.21 -1 -1 0.24 0.066082 0.0597066 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.96 vpr 63.13 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30628 -1 -1 20 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 24.2 MiB 1.75 830 6023 1193 4490 340 63.1 MiB 0.09 0.00 3.9423 -130.606 -3.9423 3.9423 0.98 0.00100057 0.000929522 0.0360011 0.0334683 34 2121 21 6.89349e+06 281877 618332. 2139.56 1.77 0.243009 0.218538 25762 151098 -1 1789 18 1352 1784 121136 28518 3.11851 3.11851 -122.256 -3.11851 0 0 787024. 2723.27 0.24 0.08 0.24 -1 -1 0.24 0.0363032 0.0327851 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 10.59 vpr 63.45 MiB 0.05 7304 -1 -1 1 0.03 -1 -1 30392 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.7 MiB 2.00 1300 17376 7374 9051 951 63.5 MiB 0.23 0.00 5.04154 -162.723 -5.04154 5.04154 1.00 0.00125704 0.00116872 0.111486 0.103581 36 3224 30 6.89349e+06 380534 648988. 2245.63 4.89 0.503253 0.455416 26050 158493 -1 2374 18 1502 1873 141419 31653 4.13755 4.13755 -147.797 -4.13755 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0455567 0.0413132 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 10.75 vpr 63.51 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.6 MiB 2.54 1335 15391 6333 8071 987 63.5 MiB 0.22 0.00 4.35365 -146.749 -4.35365 4.35365 0.98 0.00125229 0.00116424 0.0979801 0.0909866 36 3505 32 6.89349e+06 380534 648988. 2245.63 4.55 0.385249 0.348882 26050 158493 -1 2785 21 1755 2763 208609 46088 3.5861 3.5861 -137.769 -3.5861 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0515703 0.0466486 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 7.54 vpr 63.16 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.2 MiB 1.49 954 14593 3799 10158 636 63.2 MiB 0.20 0.00 4.3344 -147.889 -4.3344 4.3344 0.99 0.00116537 0.00108425 0.0927002 0.0861993 34 3089 26 6.89349e+06 295971 618332. 2139.56 2.40 0.346037 0.3141 25762 151098 -1 2259 23 2075 3647 241997 57325 4.0429 4.0429 -156.204 -4.0429 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0520643 0.0471101 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 10.19 vpr 63.56 MiB 0.04 7328 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 424 343 1 279 92 17 17 289 -1 unnamed_device 24.5 MiB 1.90 1256 18722 6037 9946 2739 63.6 MiB 0.25 0.00 4.28929 -144.626 -4.28929 4.28929 0.99 0.0012935 0.00120185 0.121128 0.112608 36 3168 26 6.89349e+06 394628 648988. 2245.63 4.61 0.515353 0.466186 26050 158493 -1 2662 20 1705 2025 142589 33541 3.2992 3.2992 -130.28 -3.2992 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.050956 0.0461428 185 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 11.27 vpr 63.50 MiB 0.04 7376 -1 -1 1 0.03 -1 -1 30404 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.6 MiB 2.55 1250 17635 5254 9154 3227 63.5 MiB 0.23 0.00 4.34019 -149.388 -4.34019 4.34019 0.96 0.00125961 0.00116613 0.111569 0.103659 40 2411 23 6.89349e+06 380534 706193. 2443.58 5.05 0.636275 0.574783 26914 176310 -1 2196 24 1784 2736 186416 43409 3.622 3.622 -142.377 -3.622 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0576334 0.0521434 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.19 vpr 63.46 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 30528 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 2.14 1385 9679 2314 6454 911 63.5 MiB 0.15 0.00 3.76725 -134.837 -3.76725 3.76725 0.98 0.00128 0.00118932 0.0638901 0.0593775 34 3443 27 6.89349e+06 380534 618332. 2139.56 2.53 0.343918 0.310997 25762 151098 -1 2873 19 2360 3225 249224 53546 3.27221 3.27221 -135.35 -3.27221 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0484974 0.0439989 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.40 vpr 63.27 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30636 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1185 16468 4573 9508 2387 63.3 MiB 0.22 0.00 4.67735 -160.896 -4.67735 4.67735 0.98 0.00121297 0.00112734 0.105681 0.0982378 34 2954 22 6.89349e+06 338252 618332. 2139.56 2.23 0.361563 0.328198 25762 151098 -1 2294 21 1950 2876 202082 45204 4.02876 4.02876 -156.855 -4.02876 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.049991 0.0452801 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.29 vpr 63.50 MiB 0.02 7260 -1 -1 1 0.04 -1 -1 30588 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.4 MiB 1.55 1202 9883 2469 6353 1061 63.5 MiB 0.15 0.00 4.59905 -158.426 -4.59905 4.59905 0.99 0.00103973 0.000966125 0.0639997 0.0595226 34 3336 42 6.89349e+06 380534 618332. 2139.56 2.21 0.312195 0.282547 25762 151098 -1 2687 21 2219 2796 201461 46877 4.22446 4.22446 -162.952 -4.22446 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0518013 0.0468997 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.96 vpr 63.74 MiB 0.04 7424 -1 -1 1 0.03 -1 -1 30624 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65268 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.8 MiB 1.85 1470 18625 5645 10509 2471 63.7 MiB 0.26 0.00 5.04279 -156.823 -5.04279 5.04279 0.98 0.00134821 0.00125169 0.12082 0.112261 34 3546 43 6.89349e+06 436909 618332. 2139.56 2.44 0.441763 0.399052 25762 151098 -1 2842 19 1811 2146 154808 35448 4.18785 4.18785 -148.269 -4.18785 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.050828 0.0459691 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.01 vpr 63.68 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30592 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.58 1477 9271 2383 5997 891 63.7 MiB 0.16 0.00 4.63225 -158.944 -4.63225 4.63225 0.99 0.00132705 0.00123331 0.0656441 0.0611137 34 4071 47 6.89349e+06 380534 618332. 2139.56 2.80 0.364976 0.329929 25762 151098 -1 3140 20 2394 3500 241561 55660 4.08856 4.08856 -156.525 -4.08856 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.052955 0.0479884 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.01 vpr 62.95 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30584 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 24.0 MiB 1.63 1085 16081 5241 8837 2003 62.9 MiB 0.19 0.00 3.72665 -133.239 -3.72665 3.72665 0.98 0.00101789 0.000945642 0.0906136 0.0841763 34 2415 21 6.89349e+06 295971 618332. 2139.56 1.84 0.301651 0.273076 25762 151098 -1 1950 19 1247 1741 112825 26211 2.87006 2.87006 -123.32 -2.87006 0 0 787024. 2723.27 0.25 0.09 0.22 -1 -1 0.25 0.0396428 0.0358196 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.69 vpr 63.41 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30412 -1 -1 22 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 370 314 1 249 86 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1274 11237 2756 7210 1271 63.4 MiB 0.16 0.00 4.24529 -146.219 -4.24529 4.24529 0.98 0.00114472 0.00106182 0.0708478 0.0657102 34 3143 46 6.89349e+06 310065 618332. 2139.56 2.42 0.354068 0.319035 25762 151098 -1 2456 22 1985 2324 175730 38348 3.42545 3.42545 -138.476 -3.42545 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.048671 0.0439039 153 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 14.06 vpr 63.74 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30796 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.8 MiB 1.96 1533 17347 6035 9228 2084 63.7 MiB 0.28 0.00 5.35299 -181.211 -5.35299 5.35299 0.98 0.00147401 0.00137102 0.123631 0.114993 34 4721 42 6.89349e+06 422815 618332. 2139.56 8.26 0.681625 0.61653 25762 151098 -1 3526 20 2698 3702 281818 62920 5.1519 5.1519 -191.222 -5.1519 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0585167 0.0531201 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.93 vpr 63.35 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30472 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.89 1129 14295 3942 8428 1925 63.4 MiB 0.20 0.00 3.82 -132.539 -3.82 3.82 0.99 0.00119969 0.00111525 0.0921818 0.0856525 34 3149 50 6.89349e+06 324158 618332. 2139.56 2.43 0.407765 0.369281 25762 151098 -1 2406 21 1796 2580 213057 47646 3.63576 3.63576 -139.826 -3.63576 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0509037 0.0462024 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.65 vpr 63.08 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30260 -1 -1 32 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 24.1 MiB 1.27 909 12874 3346 8814 714 63.1 MiB 0.15 0.00 4.39149 -134.806 -4.39149 4.39149 0.98 0.000990242 0.000919719 0.0628959 0.0583442 34 2196 24 6.89349e+06 451003 618332. 2139.56 1.90 0.276637 0.249266 25762 151098 -1 1771 21 1051 1777 107811 27360 3.556 3.556 -127.528 -3.556 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0412605 0.0372304 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.08 vpr 63.81 MiB 0.05 7512 -1 -1 1 0.04 -1 -1 30944 -1 -1 35 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 2.54 1761 16059 4299 10191 1569 63.8 MiB 0.27 0.00 5.69513 -191.49 -5.69513 5.69513 1.05 0.00159811 0.00148583 0.116197 0.108008 34 4649 37 6.89349e+06 493284 618332. 2139.56 3.66 0.493335 0.447507 25762 151098 -1 3594 24 3172 3913 274301 63414 5.66524 5.66524 -202.729 -5.66524 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.0733968 0.0664125 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 63.39 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30616 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.35 1115 15639 5251 8363 2025 63.4 MiB 0.21 0.00 4.42849 -155.095 -4.42849 4.42849 0.98 0.00122866 0.00114341 0.103146 0.0959389 34 2888 50 6.89349e+06 324158 618332. 2139.56 2.64 0.416763 0.377917 25762 151098 -1 2345 22 2306 3172 244262 53303 4.09336 4.09336 -152.474 -4.09336 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.05235 0.0474203 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.42 vpr 63.32 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30396 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.75 847 11641 2851 7878 912 63.3 MiB 0.14 0.00 3.73565 -131.22 -3.73565 3.73565 0.99 0.000986396 0.000915978 0.0544826 0.0506847 30 2193 26 6.89349e+06 465097 556674. 1926.21 1.29 0.181845 0.164554 25186 138497 -1 1797 20 1182 1929 119769 26931 2.71766 2.71766 -118.342 -2.71766 0 0 706193. 2443.58 0.24 0.05 0.20 -1 -1 0.24 0.0213685 0.019151 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 10.74 vpr 63.73 MiB 0.05 7440 -1 -1 1 0.04 -1 -1 30980 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1317 12693 3634 7764 1295 63.7 MiB 0.20 0.00 5.35589 -179.726 -5.35589 5.35589 0.98 0.00142509 0.00132813 0.0899624 0.083813 36 3513 23 6.89349e+06 408721 648988. 2245.63 5.23 0.540993 0.489791 26050 158493 -1 2967 19 2273 3426 282834 58393 4.8012 4.8012 -179.731 -4.8012 0 0 828058. 2865.25 0.25 0.15 0.23 -1 -1 0.25 0.0544077 0.0493462 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 9.07 vpr 63.07 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.35 687 12292 3131 7794 1367 63.1 MiB 0.13 0.00 3.61335 -125.578 -3.61335 3.61335 0.98 0.000989978 0.00092124 0.0728143 0.0677227 36 2171 21 6.89349e+06 225501 648988. 2245.63 4.36 0.371378 0.334468 26050 158493 -1 1680 20 1381 2251 148694 35268 3.12326 3.12326 -127.01 -3.12326 0 0 828058. 2865.25 0.24 0.09 0.12 -1 -1 0.24 0.0385801 0.0347744 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.73 vpr 63.33 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.4 MiB 1.25 800 11281 2617 7555 1109 63.3 MiB 0.13 0.00 3.71935 -120.327 -3.71935 3.71935 0.79 0.0009921 0.000922796 0.0662652 0.0616515 34 2390 30 6.89349e+06 267783 618332. 2139.56 2.16 0.243045 0.219646 25762 151098 -1 1807 23 1412 1901 149913 36631 3.12056 3.12056 -120.206 -3.12056 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.043808 0.0395121 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.64 vpr 63.56 MiB 0.05 7476 -1 -1 1 0.04 -1 -1 30436 -1 -1 31 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1254 13547 3444 8490 1613 63.6 MiB 0.19 0.00 4.15454 -130.214 -4.15454 4.15454 1.00 0.00123689 0.00115088 0.0840893 0.078203 34 2905 22 6.89349e+06 436909 618332. 2139.56 2.01 0.338977 0.306866 25762 151098 -1 2420 23 1859 2468 163511 38191 3.459 3.459 -128.503 -3.459 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.055733 0.0504318 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.23 vpr 63.57 MiB 0.04 7224 -1 -1 1 0.03 -1 -1 30736 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 2.05 1076 9537 2232 6898 407 63.6 MiB 0.15 0.00 5.13146 -169.785 -5.13146 5.13146 0.98 0.00127165 0.00118163 0.0634912 0.0589913 36 2959 22 6.89349e+06 366440 648988. 2245.63 2.58 0.328161 0.296748 26050 158493 -1 2286 22 2249 3178 188602 46004 4.64975 4.64975 -167.55 -4.64975 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.0550288 0.0498761 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.16 vpr 63.90 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30604 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.9 MiB 2.07 1296 18180 5634 10019 2527 63.9 MiB 0.26 0.00 5.12859 -176.097 -5.12859 5.12859 0.98 0.00127936 0.00118922 0.119545 0.111092 34 3512 26 6.89349e+06 366440 618332. 2139.56 2.37 0.398095 0.361382 25762 151098 -1 2807 22 2402 3379 259780 55900 4.43835 4.43835 -171.785 -4.43835 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0561662 0.0509125 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 9.34 vpr 63.34 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30524 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1015 9757 2248 6823 686 63.3 MiB 0.14 0.00 4.30029 -148.521 -4.30029 4.30029 0.98 0.00108286 0.00100476 0.0619571 0.0575448 36 2552 25 6.89349e+06 295971 648988. 2245.63 4.36 0.383567 0.345082 26050 158493 -1 2076 23 1440 1615 117390 26897 3.3494 3.3494 -136.71 -3.3494 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0480721 0.0433597 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.58 vpr 63.33 MiB 0.04 7188 -1 -1 1 0.03 -1 -1 30476 -1 -1 22 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1096 5665 1172 4284 209 63.3 MiB 0.10 0.00 4.25519 -136.378 -4.25519 4.25519 0.99 0.00108829 0.00101001 0.0452644 0.0420419 34 2893 26 6.89349e+06 310065 618332. 2139.56 2.26 0.288102 0.258866 25762 151098 -1 2315 20 1622 2053 162238 35883 3.2632 3.2632 -127.579 -3.2632 0 0 787024. 2723.27 0.26 0.10 0.22 -1 -1 0.26 0.0431373 0.0388968 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.39 vpr 63.45 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30588 -1 -1 29 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 2.29 1163 18043 6463 9066 2514 63.4 MiB 0.24 0.00 3.98631 -131.256 -3.98631 3.98631 1.12 0.0012521 0.00116036 0.113625 0.10599 36 2688 21 6.89349e+06 408721 648988. 2245.63 2.33 0.355097 0.323159 26050 158493 -1 2289 18 1458 2087 141000 31703 3.12951 3.12951 -122.74 -3.12951 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.0430283 0.0389783 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 8.63 vpr 63.17 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 28 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 28 32 332 260 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 1.24 901 12749 3235 8752 762 63.2 MiB 0.16 0.00 4.55505 -133.271 -4.55505 4.55505 0.98 0.00108238 0.00100705 0.0757553 0.070477 34 2528 28 6.89349e+06 366440 618332. 2139.56 3.87 0.43389 0.391566 25762 151098 -1 2014 20 1576 2314 145295 35460 3.90486 3.90486 -133.323 -3.90486 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0427975 0.038674 144 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.76 vpr 63.09 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30348 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 2.16 1085 9443 2576 6116 751 63.1 MiB 0.13 0.00 4.29542 -138.034 -4.29542 4.29542 0.99 0.00103875 0.000964485 0.0570783 0.0529906 36 2474 21 6.89349e+06 295971 648988. 2245.63 2.13 0.261702 0.235799 26050 158493 -1 2109 18 1565 2159 152138 34492 4.05654 4.05654 -142.558 -4.05654 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0377331 0.0340385 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.55 vpr 63.46 MiB 0.04 7288 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.6 MiB 1.68 1214 10129 2604 6568 957 63.5 MiB 0.14 0.00 3.7829 -130.041 -3.7829 3.7829 0.99 0.00113287 0.00105242 0.0642723 0.0596476 34 3197 35 6.89349e+06 295971 618332. 2139.56 2.28 0.321938 0.290083 25762 151098 -1 2423 22 1857 2180 154026 36456 3.01561 3.01561 -119.84 -3.01561 0 0 787024. 2723.27 0.27 0.11 0.21 -1 -1 0.27 0.0473347 0.0426921 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 7.07 vpr 63.44 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30200 -1 -1 37 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.87 1028 15180 4436 8407 2337 63.4 MiB 0.19 0.00 4.35993 -144.85 -4.35993 4.35993 0.98 0.00113529 0.00105646 0.0770177 0.0716416 28 3228 25 6.89349e+06 521472 531479. 1839.03 2.69 0.221315 0.201335 24610 126494 -1 2473 20 1787 2963 239561 52372 4.0067 4.0067 -150.069 -4.0067 0 0 648988. 2245.63 0.21 0.12 0.19 -1 -1 0.21 0.0447655 0.0405535 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.51 vpr 63.52 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30616 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1305 12351 3315 7817 1219 63.5 MiB 0.18 0.00 4.94724 -169.098 -4.94724 4.94724 0.98 0.00122027 0.0011287 0.0814287 0.0756923 34 3371 40 6.89349e+06 366440 618332. 2139.56 2.40 0.38805 0.351325 25762 151098 -1 2719 23 1943 2582 177929 42483 4.48365 4.48365 -165.166 -4.48365 0 0 787024. 2723.27 0.27 0.13 0.21 -1 -1 0.27 0.0576775 0.0521341 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.11 vpr 63.80 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30548 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.8 MiB 1.95 1432 15366 4335 9387 1644 63.8 MiB 0.22 0.00 5.00868 -172.431 -5.00868 5.00868 0.98 0.00129871 0.00120669 0.102259 0.0949194 34 3633 29 6.89349e+06 366440 618332. 2139.56 2.54 0.331836 0.301355 25762 151098 -1 2830 23 2541 3623 272831 60026 4.65479 4.65479 -171.973 -4.65479 0 0 787024. 2723.27 0.24 0.15 0.20 -1 -1 0.24 0.0571137 0.0516851 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.61 vpr 63.56 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.5 MiB 2.70 1315 8455 1941 6044 470 63.6 MiB 0.14 0.00 4.23794 -144.857 -4.23794 4.23794 0.99 0.00127335 0.00118484 0.0558005 0.0518898 34 4039 45 6.89349e+06 380534 618332. 2139.56 3.30 0.36988 0.334185 25762 151098 -1 2943 22 2065 3015 293643 62230 3.73005 3.73005 -144.273 -3.73005 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0537466 0.0486389 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.53 vpr 62.96 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.0 MiB 1.89 822 13556 3700 7881 1975 63.0 MiB 0.16 0.00 3.95826 -124.717 -3.95826 3.95826 1.02 0.000688835 0.000635279 0.0724522 0.0672646 34 2344 20 6.89349e+06 267783 618332. 2139.56 2.08 0.274947 0.248174 25762 151098 -1 1968 23 1339 1865 147245 33120 3.3165 3.3165 -122.046 -3.3165 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0435234 0.0392492 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.90 vpr 63.35 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30500 -1 -1 26 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.4 MiB 2.25 1213 9253 2556 5823 874 63.3 MiB 0.14 0.00 4.87058 -156.054 -4.87058 4.87058 1.00 0.00121371 0.00112775 0.060712 0.0563636 34 3042 24 6.89349e+06 366440 618332. 2139.56 2.10 0.32069 0.289465 25762 151098 -1 2557 21 2174 3009 227953 50322 4.44765 4.44765 -158.355 -4.44765 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0500207 0.0452923 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.89 vpr 63.86 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30896 -1 -1 30 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.68 1479 11170 3037 7343 790 63.9 MiB 0.17 0.00 4.57601 -155.886 -4.57601 4.57601 0.99 0.00138276 0.00128323 0.0778031 0.0723149 34 4023 39 6.89349e+06 422815 618332. 2139.56 2.63 0.350066 0.315834 25762 151098 -1 3026 22 2129 2171 174474 39968 4.18485 4.18485 -159.068 -4.18485 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0593123 0.0535374 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.76 vpr 63.67 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.85 1357 18515 5570 10360 2585 63.7 MiB 0.25 0.00 5.04454 -166.93 -5.04454 5.04454 0.98 0.00129566 0.00120346 0.119341 0.11086 34 3587 24 6.89349e+06 408721 618332. 2139.56 2.29 0.348762 0.316878 25762 151098 -1 2730 20 2172 2752 178093 42585 4.75925 4.75925 -170.719 -4.75925 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.051254 0.0463152 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.39 vpr 63.47 MiB 0.04 7264 -1 -1 1 0.03 -1 -1 30536 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64996 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 2.40 1272 11145 3099 7385 661 63.5 MiB 0.17 0.00 4.33029 -138.243 -4.33029 4.33029 1.00 0.00125005 0.00116212 0.071888 0.0667727 34 3380 30 6.89349e+06 394628 618332. 2139.56 2.46 0.348708 0.315068 25762 151098 -1 2565 22 2099 2992 209047 50292 3.8257 3.8257 -137.142 -3.8257 0 0 787024. 2723.27 0.24 0.13 0.17 -1 -1 0.24 0.0536024 0.0485546 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.65 vpr 63.58 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30524 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 2.16 1381 17577 5400 9797 2380 63.6 MiB 0.25 0.00 5.10907 -172.718 -5.10907 5.10907 0.99 0.00127931 0.00118939 0.11425 0.106045 34 3521 28 6.89349e+06 366440 618332. 2139.56 2.79 0.396774 0.359949 25762 151098 -1 2796 20 2210 3114 232015 49651 4.45255 4.45255 -167.863 -4.45255 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0506542 0.0458946 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 10.47 vpr 63.50 MiB 0.04 7372 -1 -1 1 0.04 -1 -1 30432 -1 -1 30 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.5 MiB 2.44 1289 17431 5289 9749 2393 63.5 MiB 0.23 0.00 4.47765 -137.075 -4.47765 4.47765 0.98 0.00120295 0.00111841 0.105573 0.0980815 36 2843 29 6.89349e+06 422815 648988. 2245.63 4.41 0.478977 0.432815 26050 158493 -1 2448 16 1438 1964 134502 29649 3.545 3.545 -123.546 -3.545 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0397514 0.0360541 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 6.38 vpr 62.91 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 0.84 883 14872 4496 9235 1141 62.9 MiB 0.18 0.00 3.60415 -130.285 -3.60415 3.60415 1.00 0.000988579 0.000919314 0.0867778 0.0806484 34 2348 23 6.89349e+06 225501 618332. 2139.56 2.02 0.292334 0.264617 25762 151098 -1 1945 23 1556 2537 191916 43831 2.90086 2.90086 -126.44 -2.90086 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0432531 0.0389858 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 10.34 vpr 63.54 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.5 MiB 1.81 1311 16411 5462 8005 2944 63.5 MiB 0.23 0.00 5.31517 -177.727 -5.31517 5.31517 0.98 0.00129269 0.00120286 0.106917 0.0994117 36 3434 24 6.89349e+06 380534 648988. 2245.63 4.86 0.515081 0.466369 26050 158493 -1 2723 21 2234 3055 227335 50266 4.61675 4.61675 -172.667 -4.61675 0 0 828058. 2865.25 0.25 0.13 0.23 -1 -1 0.25 0.052898 0.0479679 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.28 vpr 63.60 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.6 MiB 2.50 1301 10979 2667 7606 706 63.6 MiB 0.17 0.00 5.01095 -168.936 -5.01095 5.01095 0.98 0.00122757 0.0011353 0.0744507 0.0691723 34 3883 46 6.89349e+06 352346 618332. 2139.56 3.12 0.340249 0.307194 25762 151098 -1 3072 23 2814 3924 386709 79001 4.66705 4.66705 -172.835 -4.66705 0 0 787024. 2723.27 0.24 0.17 0.22 -1 -1 0.24 0.0577831 0.0523732 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.25 vpr 63.13 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30428 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.82 973 13043 3975 6991 2077 63.1 MiB 0.16 0.00 3.58222 -118.01 -3.58222 3.58222 0.99 0.00101974 0.000947287 0.0759456 0.0705352 34 2419 24 6.89349e+06 267783 618332. 2139.56 1.93 0.290042 0.26184 25762 151098 -1 1965 19 1055 1281 102329 22550 2.9678 2.9678 -113.76 -2.9678 0 0 787024. 2723.27 0.25 0.09 0.22 -1 -1 0.25 0.0417681 0.0375963 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 7.50 vpr 62.88 MiB 0.04 6888 -1 -1 1 0.02 -1 -1 30428 -1 -1 17 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.06 719 6444 1413 4474 557 62.9 MiB 0.09 0.00 3.59935 -121.473 -3.59935 3.59935 0.98 0.000953522 0.000887068 0.0381584 0.0354646 28 2152 26 6.89349e+06 239595 531479. 1839.03 3.07 0.320867 0.287779 24610 126494 -1 2035 19 1357 2117 169950 37974 3.15296 3.15296 -129.57 -3.15296 0 0 648988. 2245.63 0.20 0.10 0.18 -1 -1 0.20 0.0362284 0.0326842 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.65 vpr 63.62 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.7 MiB 1.63 1298 18107 5148 10871 2088 63.6 MiB 0.24 0.00 4.34669 -144.598 -4.34669 4.34669 0.98 0.0012149 0.001129 0.114394 0.106302 34 2889 26 6.89349e+06 352346 618332. 2139.56 2.39 0.378383 0.343005 25762 151098 -1 2326 20 1673 2098 149009 34006 3.6032 3.6032 -138.998 -3.6032 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0476672 0.0431552 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.34 vpr 63.49 MiB 0.04 7420 -1 -1 1 0.03 -1 -1 30508 -1 -1 26 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 406 330 1 263 90 17 17 289 -1 unnamed_device 24.5 MiB 2.01 1266 15567 5192 7236 3139 63.5 MiB 0.22 0.00 5.08869 -159.08 -5.08869 5.08869 1.04 0.0012549 0.00116268 0.106011 0.0981254 34 3594 24 6.89349e+06 366440 618332. 2139.56 2.64 0.375868 0.340231 25762 151098 -1 2679 18 1829 2171 186378 41444 4.55255 4.55255 -160.941 -4.55255 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0456107 0.04133 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.83 vpr 63.54 MiB 0.03 7396 -1 -1 1 0.04 -1 -1 30496 -1 -1 41 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.6 MiB 0.95 1297 11961 2982 7937 1042 63.5 MiB 0.17 0.00 4.87442 -165.154 -4.87442 4.87442 0.98 0.00133888 0.00124377 0.0679379 0.063152 34 3447 27 6.89349e+06 577847 618332. 2139.56 2.34 0.358238 0.325004 25762 151098 -1 2784 21 2109 3564 250014 57141 4.46129 4.46129 -165.606 -4.46129 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0548799 0.0498481 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.95 vpr 63.21 MiB 0.05 7280 -1 -1 1 0.04 -1 -1 30560 -1 -1 27 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.3 MiB 2.17 1092 10979 2817 6746 1416 63.2 MiB 0.16 0.00 3.839 -121.777 -3.839 3.839 0.98 0.00117392 0.00109112 0.0684721 0.0636329 34 2750 24 6.89349e+06 380534 618332. 2139.56 2.25 0.319967 0.289185 25762 151098 -1 2212 19 1890 2694 189676 42972 3.08851 3.08851 -116.565 -3.08851 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0441884 0.040014 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.71 vpr 62.96 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30644 -1 -1 22 27 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.1 MiB 1.41 891 13031 4385 6839 1807 63.0 MiB 0.14 0.00 4.27455 -123.837 -4.27455 4.27455 0.98 0.000906663 0.000842176 0.069567 0.0646088 34 1905 20 6.89349e+06 310065 618332. 2139.56 1.79 0.260947 0.235538 25762 151098 -1 1690 23 1263 1864 143780 31545 3.6923 3.6923 -119.882 -3.6923 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0397868 0.0357684 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.89 vpr 64.41 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30720 -1 -1 32 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 493 378 1 323 96 17 17 289 -1 unnamed_device 25.1 MiB 2.41 1698 16521 4103 10154 2264 64.4 MiB 0.27 0.00 5.18181 -174.668 -5.18181 5.18181 0.98 0.0015254 0.0014194 0.118444 0.110203 34 4824 48 6.89349e+06 451003 618332. 2139.56 3.69 0.505552 0.457941 25762 151098 -1 3407 21 2531 3608 271884 58881 4.72025 4.72025 -168.233 -4.72025 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.0626991 0.0568102 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.79 vpr 63.73 MiB 0.05 7424 -1 -1 1 0.03 -1 -1 30516 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.9 MiB 2.47 1472 15004 3471 10071 1462 63.7 MiB 0.22 0.00 5.05307 -164.793 -5.05307 5.05307 0.75 0.00136948 0.00127244 0.0996708 0.0925388 36 3349 24 6.89349e+06 436909 648988. 2245.63 2.90 0.392755 0.355359 26050 158493 -1 2823 20 2123 2466 182409 41176 4.52455 4.52455 -166.142 -4.52455 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0554139 0.050114 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 10.29 vpr 63.37 MiB 0.03 7288 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 355 304 1 244 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 1086 15895 5952 7404 2539 63.4 MiB 0.20 0.00 4.35779 -139.935 -4.35779 4.35779 0.98 0.00110535 0.00102575 0.0970721 0.0900923 36 2929 38 6.89349e+06 295971 648988. 2245.63 5.00 0.448162 0.404028 26050 158493 -1 2240 19 1655 1916 161006 35242 3.6363 3.6363 -139.706 -3.6363 0 0 828058. 2865.25 0.25 0.10 0.23 -1 -1 0.25 0.042602 0.0384969 149 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.94 vpr 63.37 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30484 -1 -1 23 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 2.02 1129 14295 4007 8660 1628 63.4 MiB 0.20 0.00 4.63878 -154.018 -4.63878 4.63878 0.98 0.00115753 0.00107319 0.0912801 0.084818 34 3049 33 6.89349e+06 324158 618332. 2139.56 2.37 0.362546 0.328444 25762 151098 -1 2310 19 1294 1813 134206 33161 3.87676 3.87676 -148.22 -3.87676 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.044757 0.0405495 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.89 vpr 63.51 MiB 0.04 7408 -1 -1 1 0.03 -1 -1 30752 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 443 336 1 280 94 17 17 289 -1 unnamed_device 24.7 MiB 1.86 1343 18838 5810 10490 2538 63.5 MiB 0.29 0.00 4.61515 -155.312 -4.61515 4.61515 0.99 0.0014035 0.00130685 0.127521 0.118701 34 3458 25 6.89349e+06 436909 618332. 2139.56 2.28 0.429169 0.38964 25762 151098 -1 2648 21 2215 3071 207930 47158 3.95986 3.95986 -150.572 -3.95986 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0577189 0.0522891 195 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.19 vpr 63.36 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 28 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.4 MiB 2.14 1242 16773 5664 8452 2657 63.4 MiB 0.22 0.00 4.37249 -137.399 -4.37249 4.37249 0.98 0.00109806 0.00101343 0.100904 0.0937775 36 2997 29 6.89349e+06 394628 648988. 2245.63 2.47 0.365724 0.331611 26050 158493 -1 2532 18 1518 2385 178199 37698 3.6895 3.6895 -134.571 -3.6895 0 0 828058. 2865.25 0.25 0.11 0.23 -1 -1 0.25 0.0428586 0.0388159 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.09 vpr 63.75 MiB 0.06 7240 -1 -1 1 0.03 -1 -1 30540 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1384 17066 6142 9147 1777 63.8 MiB 0.25 0.00 5.13217 -171.938 -5.13217 5.13217 0.98 0.00128333 0.00119331 0.109122 0.10141 34 3511 25 6.89349e+06 394628 618332. 2139.56 2.66 0.390034 0.354116 25762 151098 -1 2747 23 2259 3080 260903 55766 4.27385 4.27385 -162.769 -4.27385 0 0 787024. 2723.27 0.24 0.14 0.22 -1 -1 0.24 0.0567912 0.0514543 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.95 vpr 63.48 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 2.00 1428 17431 4990 10284 2157 63.5 MiB 0.24 0.00 3.82792 -135.136 -3.82792 3.82792 0.99 0.00127812 0.0011882 0.112389 0.104467 34 3391 29 6.89349e+06 380534 618332. 2139.56 2.30 0.394329 0.357726 25762 151098 -1 2924 21 2224 3061 234431 52543 3.17656 3.17656 -134.009 -3.17656 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0532376 0.0482549 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.61 vpr 62.92 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.29 801 14322 5270 6630 2422 62.9 MiB 0.16 0.00 3.809 -119.904 -3.809 3.809 0.98 0.00096486 0.000897464 0.0799562 0.0743444 34 1980 27 6.89349e+06 295971 618332. 2139.56 1.85 0.286365 0.258647 25762 151098 -1 1671 21 1552 2041 148453 33340 3.02985 3.02985 -113.565 -3.02985 0 0 787024. 2723.27 0.24 0.09 0.22 -1 -1 0.24 0.0392352 0.0353461 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.72 vpr 63.28 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 334 290 1 222 84 17 17 289 -1 unnamed_device 24.5 MiB 1.79 1028 8502 1925 6217 360 63.3 MiB 0.12 0.00 4.34059 -128.583 -4.34059 4.34059 0.99 0.00104372 0.000968428 0.051098 0.0474007 34 2941 47 6.89349e+06 281877 618332. 2139.56 2.42 0.312892 0.280907 25762 151098 -1 2175 24 1909 2260 181733 41908 3.53925 3.53925 -123.24 -3.53925 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0475874 0.0428282 135 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.39 vpr 63.40 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30536 -1 -1 24 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.6 MiB 1.34 1184 15255 6384 8070 801 63.4 MiB 0.21 0.00 4.58005 -151.573 -4.58005 4.58005 1.01 0.00119599 0.00111267 0.09739 0.0906053 36 2862 20 6.89349e+06 338252 648988. 2245.63 2.37 0.344733 0.312857 26050 158493 -1 2237 20 1733 2508 175432 38753 3.98186 3.98186 -150.23 -3.98186 0 0 828058. 2865.25 0.26 0.11 0.23 -1 -1 0.26 0.0469617 0.0425978 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.99 vpr 63.23 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30404 -1 -1 21 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 958 13610 5420 5754 2436 63.2 MiB 0.16 0.00 3.4949 -108.08 -3.4949 3.4949 0.98 0.00096291 0.000894684 0.0762002 0.0708264 36 2121 21 6.89349e+06 295971 648988. 2245.63 4.15 0.354422 0.318742 26050 158493 -1 1902 17 1132 1326 100584 22699 2.93591 2.93591 -108.789 -2.93591 0 0 828058. 2865.25 0.25 0.07 0.23 -1 -1 0.25 0.0332284 0.0299643 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.60 vpr 63.44 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30328 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.5 MiB 1.81 991 12186 3867 6660 1659 63.4 MiB 0.15 0.00 3.839 -135.491 -3.839 3.839 0.98 0.00104358 0.000969345 0.0736062 0.0683866 34 2579 27 6.89349e+06 253689 618332. 2139.56 2.27 0.302493 0.273505 25762 151098 -1 2124 21 1745 2448 209685 43159 3.22191 3.22191 -129.637 -3.22191 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0425214 0.0383512 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.43 vpr 63.26 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30412 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.2 MiB 1.88 1211 12351 3377 8033 941 63.3 MiB 0.17 0.00 4.27594 -141.751 -4.27594 4.27594 1.00 0.00122464 0.00113774 0.0797672 0.0741486 34 3018 20 6.89349e+06 380534 618332. 2139.56 1.95 0.282987 0.256944 25762 151098 -1 2561 21 2080 2835 217706 49382 3.7316 3.7316 -143.183 -3.7316 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0503215 0.0455381 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.41 vpr 63.10 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 308 262 1 197 84 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1059 8685 2032 5995 658 63.1 MiB 0.11 0.00 3.20612 -110.242 -3.20612 3.20612 0.98 0.000997831 0.000926496 0.0491706 0.045682 34 2452 44 6.89349e+06 295971 618332. 2139.56 2.39 0.295122 0.265095 25762 151098 -1 2110 17 1036 1278 97203 22203 2.93621 2.93621 -110.268 -2.93621 0 0 787024. 2723.27 0.24 0.07 0.22 -1 -1 0.24 0.0342932 0.0309498 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.64 vpr 63.35 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30516 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.5 MiB 1.75 1275 17711 6428 9355 1928 63.4 MiB 0.24 0.00 4.24029 -141.492 -4.24029 4.24029 0.98 0.00121376 0.00112786 0.111885 0.103885 34 3020 20 6.89349e+06 352346 618332. 2139.56 2.25 0.36095 0.327665 25762 151098 -1 2509 20 1641 2336 208041 42693 3.5641 3.5641 -135.855 -3.5641 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0478838 0.043329 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.41 vpr 63.75 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30388 -1 -1 31 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65280 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.7 MiB 2.37 1343 17134 5604 8974 2556 63.8 MiB 0.24 0.00 5.0297 -160.896 -5.0297 5.0297 0.98 0.0013106 0.00121454 0.108325 0.100581 34 3704 27 6.89349e+06 436909 618332. 2139.56 2.34 0.332953 0.302477 25762 151098 -1 2894 18 2223 3162 244232 52929 4.16609 4.16609 -155.69 -4.16609 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0491524 0.0445738 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.05 vpr 63.28 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1150 11245 3098 7003 1144 63.3 MiB 0.15 0.00 3.53115 -123.341 -3.53115 3.53115 0.98 0.00105851 0.000982949 0.0666862 0.0618951 34 3022 27 6.89349e+06 295971 618332. 2139.56 2.13 0.29692 0.26777 25762 151098 -1 2451 19 1509 2046 151970 33695 3.26926 3.26926 -123.448 -3.26926 0 0 787024. 2723.27 0.26 0.10 0.22 -1 -1 0.26 0.0401867 0.036286 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 9.24 vpr 63.43 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30092 -1 -1 19 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 283 1 218 83 17 17 289 -1 unnamed_device 24.6 MiB 1.39 960 9803 2241 6661 901 63.4 MiB 0.13 0.00 3.817 -127.178 -3.817 3.817 0.98 0.00108044 0.00100335 0.0612998 0.056913 36 2337 23 6.89349e+06 267783 648988. 2245.63 4.37 0.388321 0.34916 26050 158493 -1 1923 21 1480 1767 110592 27779 3.05446 3.05446 -122.319 -3.05446 0 0 828058. 2865.25 0.25 0.09 0.23 -1 -1 0.25 0.0443378 0.0399871 138 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.41 vpr 63.52 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30820 -1 -1 27 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.61 1238 13147 2986 8190 1971 63.5 MiB 0.18 0.00 4.60895 -158.911 -4.60895 4.60895 0.99 0.00126974 0.00117965 0.0852012 0.079136 34 3303 22 6.89349e+06 380534 618332. 2139.56 2.18 0.292681 0.265696 25762 151098 -1 2615 20 2148 2635 201100 44763 3.85946 3.85946 -152.611 -3.85946 0 0 787024. 2723.27 0.24 0.12 0.22 -1 -1 0.24 0.0499151 0.0452364 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.55 vpr 63.34 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30496 -1 -1 26 29 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.4 MiB 1.86 1165 15639 4840 8583 2216 63.3 MiB 0.21 0.00 3.69045 -118.464 -3.69045 3.69045 0.99 0.00116695 0.00108503 0.0982606 0.0913436 30 2493 21 6.89349e+06 366440 556674. 1926.21 1.17 0.244183 0.222455 25186 138497 -1 2048 22 1565 2117 122502 28169 2.97676 2.97676 -113.932 -2.97676 0 0 706193. 2443.58 0.22 0.10 0.19 -1 -1 0.22 0.0499546 0.0451269 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.74 vpr 63.84 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.8 MiB 1.94 1517 16893 4853 9389 2651 63.8 MiB 0.24 0.00 4.95684 -167.658 -4.95684 4.95684 0.99 0.0014126 0.00131337 0.117483 0.109202 40 3129 21 6.89349e+06 408721 706193. 2443.58 5.06 0.642281 0.579889 26914 176310 -1 2894 20 2497 2922 242421 51725 4.35225 4.35225 -160.857 -4.35225 0 0 926341. 3205.33 0.27 0.13 0.26 -1 -1 0.27 0.0553313 0.0500149 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 7.64 vpr 62.77 MiB 0.03 6928 -1 -1 1 0.03 -1 -1 30308 -1 -1 16 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.0 MiB 0.83 798 6670 1580 4567 523 62.8 MiB 0.09 0.00 2.99217 -104.93 -2.99217 2.99217 0.99 0.000908753 0.00084514 0.0380544 0.0354173 32 2188 30 6.89349e+06 225501 586450. 2029.24 3.42 0.286219 0.256876 25474 144626 -1 1722 23 1169 1938 151235 35034 2.70061 2.70061 -112.542 -2.70061 0 0 744469. 2576.02 0.23 0.10 0.21 -1 -1 0.23 0.0400015 0.0359681 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.69 vpr 63.51 MiB 0.03 7320 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.5 MiB 2.31 1436 17687 5331 10067 2289 63.5 MiB 0.25 0.00 5.59526 -182.613 -5.59526 5.59526 0.99 0.00129734 0.00120558 0.113646 0.105513 34 3497 28 6.89349e+06 394628 618332. 2139.56 2.71 0.402231 0.364638 25762 151098 -1 2916 24 2502 3263 277011 59151 5.13454 5.13454 -182.206 -5.13454 0 0 787024. 2723.27 0.24 0.15 0.22 -1 -1 0.24 0.059455 0.0537447 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.92 vpr 63.45 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30244 -1 -1 24 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.5 MiB 2.11 1228 17248 5165 9655 2428 63.4 MiB 0.23 0.00 4.94918 -162.793 -4.94918 4.94918 0.99 0.00120307 0.0011201 0.10951 0.101917 36 3177 34 6.89349e+06 338252 648988. 2245.63 3.14 0.381072 0.345483 26050 158493 -1 2630 21 2532 3172 247012 54427 4.04924 4.04924 -157.808 -4.04924 0 0 828058. 2865.25 0.26 0.13 0.22 -1 -1 0.26 0.0474457 0.0428653 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.86 vpr 63.59 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 30396 -1 -1 25 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1223 15335 4617 8313 2405 63.6 MiB 0.21 0.00 3.74935 -130.887 -3.74935 3.74935 0.99 0.00126697 0.00117748 0.100978 0.0938818 34 3058 23 6.89349e+06 352346 618332. 2139.56 2.34 0.372257 0.337879 25762 151098 -1 2544 18 1656 2222 173820 38048 3.2337 3.2337 -129.976 -3.2337 0 0 787024. 2723.27 0.24 0.11 0.22 -1 -1 0.24 0.0462134 0.0418871 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.30 vpr 63.95 MiB 0.04 7428 -1 -1 1 0.03 -1 -1 30828 -1 -1 33 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.8 MiB 1.89 1555 21409 7403 11274 2732 63.9 MiB 0.33 0.00 5.15944 -175.489 -5.15944 5.15944 0.99 0.00153997 0.0014323 0.153017 0.142345 36 3759 40 6.89349e+06 465097 648988. 2245.63 3.60 0.531079 0.482909 26050 158493 -1 3154 22 2807 3273 268319 57600 4.90035 4.90035 -176.904 -4.90035 0 0 828058. 2865.25 0.25 0.16 0.23 -1 -1 0.25 0.0678204 0.061395 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.10 vpr 62.93 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30080 -1 -1 16 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 24.1 MiB 1.14 857 12860 4315 6531 2014 62.9 MiB 0.12 0.00 3.11018 -96.6789 -3.11018 3.11018 0.99 0.000806675 0.000747282 0.0641298 0.059417 34 1818 23 6.89349e+06 225501 618332. 2139.56 1.63 0.232364 0.208429 25762 151098 -1 1591 20 764 791 67420 15210 2.32206 2.32206 -92.3009 -2.32206 0 0 787024. 2723.27 0.24 0.06 0.22 -1 -1 0.24 0.03179 0.0284641 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.74 vpr 63.37 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 21 30 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 24.4 MiB 1.43 936 13763 4424 7248 2091 63.4 MiB 0.16 0.00 4.23979 -138.455 -4.23979 4.23979 0.98 0.000984164 0.000914646 0.0775691 0.0721167 34 2117 18 6.89349e+06 295971 618332. 2139.56 1.83 0.276055 0.249656 25762 151098 -1 1759 20 1558 2320 162158 36344 3.31965 3.31965 -127.139 -3.31965 0 0 787024. 2723.27 0.24 0.10 0.22 -1 -1 0.24 0.0387513 0.0349499 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.38 vpr 63.14 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 18 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.2 MiB 2.21 1009 8448 2021 6048 379 63.1 MiB 0.13 0.00 4.33609 -148.866 -4.33609 4.33609 0.99 0.00104443 0.000970073 0.0519871 0.0482963 36 2763 22 6.89349e+06 253689 648988. 2245.63 2.59 0.270404 0.243637 26050 158493 -1 2330 21 1713 2925 207000 45724 3.608 3.608 -146.041 -3.608 0 0 828058. 2865.25 0.25 0.12 0.23 -1 -1 0.25 0.0424235 0.0382097 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.37 vpr 62.72 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 25 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.23 638 13031 3446 7568 2017 62.7 MiB 0.14 0.00 3.8441 -98.0419 -3.8441 3.8441 0.99 0.000844109 0.000785253 0.064442 0.0599038 34 1771 19 6.89349e+06 338252 618332. 2139.56 1.73 0.235855 0.212237 25762 151098 -1 1491 22 1039 1406 94582 22863 3.22801 3.22801 -99.5094 -3.22801 0 0 787024. 2723.27 0.24 0.08 0.22 -1 -1 0.24 0.0357122 0.0319998 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.73 vpr 63.95 MiB 0.03 7324 -1 -1 1 0.04 -1 -1 30544 -1 -1 28 32 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 25.1 MiB 2.55 1455 17273 5876 8561 2836 63.9 MiB 0.25 0.00 4.52275 -153.489 -4.52275 4.52275 1.00 0.00132768 0.00123357 0.114234 0.106157 36 3884 27 6.89349e+06 394628 648988. 2245.63 2.45 0.340699 0.309515 26050 158493 -1 3186 21 2679 3869 307077 65612 3.82666 3.82666 -150.714 -3.82666 0 0 828058. 2865.25 0.25 0.15 0.23 -1 -1 0.25 0.0552286 0.0499979 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.44 vpr 63.54 MiB 0.04 7404 -1 -1 1 0.03 -1 -1 30340 -1 -1 27 31 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.5 MiB 2.37 1331 13758 3863 8023 1872 63.5 MiB 0.20 0.00 4.9912 -162.029 -4.9912 4.9912 0.99 0.00126616 0.00117331 0.0913566 0.0848934 34 3369 24 6.89349e+06 380534 618332. 2139.56 2.44 0.370303 0.335258 25762 151098 -1 2745 20 2169 3067 228082 52797 4.30709 4.30709 -159.639 -4.30709 0 0 787024. 2723.27 0.24 0.13 0.22 -1 -1 0.24 0.0512687 0.0464537 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/open_cores_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/open_cores_frac/config/golden_results.txt index c5b5ebb54c5..fa1e6a13164 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/open_cores_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/open_cores_frac/config/golden_results.txt @@ -1,11 +1,11 @@ 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 -k6_frac_2ripple_N8_22nm.xml Md5Core.v common 3071.05 vpr 837.18 MiB 22.37 119180 -1 -1 1 4.74 -1 -1 169412 -1 -1 3139 641 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 857276 641 128 63843 53443 1 24192 3908 67 67 4489 clb auto 382.4 MiB 1057.08 244103 4465413 1743098 2633538 88777 837.2 MiB 197.31 1.55 7.16959 -24015.2 -7.16959 7.16959 47.59 0.0957601 0.0820333 15.1755 12.7597 96 347186 37 1.40629e+08 4.54399e+07 2.70729e+07 6030.93 1662.06 74.2765 61.8948 614530 7429687 -1 313678 21 109635 151312 17050882 2845895 7.12366 7.12366 -25140.4 -7.12366 0 0 3.38438e+07 7539.28 14.39 9.14 7.32 -1 -1 14.39 4.96666 4.28338 23304 3440 12624 36 0 0 -k6_frac_2ripple_N8_22nm.xml cordic.v common 10.29 vpr 65.46 MiB 0.08 9260 -1 -1 4 0.17 -1 -1 33316 -1 -1 30 54 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67036 54 51 517 516 1 320 135 9 9 81 clb auto 27.2 MiB 3.84 1925 10169 2110 7187 872 65.5 MiB 0.19 0.01 3.65525 -193.256 -3.65525 3.65525 0.21 0.00161819 0.00148608 0.0527834 0.0486686 60 4604 47 1.45065e+06 434271 242836. 2997.97 4.31 0.649901 0.576076 7944 58396 -1 3746 22 2122 7615 406677 93853 3.90585 3.90585 -216.485 -3.90585 0 0 304930. 3764.57 0.08 0.20 0.08 -1 -1 0.08 0.0762854 0.0691156 224 291 60 18 54 18 -k6_frac_2uripple_N8_22nm.xml Md5Core.v common 1323.81 vpr 849.11 MiB 23.03 119076 -1 -1 1 4.81 -1 -1 169252 -1 -1 3137 641 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 869492 641 128 63843 53443 1 24162 3906 67 67 4489 clb auto 378.7 MiB 814.33 246555 4400870 1717471 2581223 102176 849.1 MiB 199.79 1.71 7.67463 -24131.1 -7.67463 7.67463 46.82 0.0973892 0.0836908 14.8646 12.591 96 348385 43 1.41393e+08 4.61639e+07 2.70729e+07 6030.93 155.19 49.5689 41.914 614530 7429687 -1 312818 21 100645 140775 14687171 2467940 7.64804 7.64804 -25183.7 -7.64804 0 0 3.38438e+07 7539.28 15.02 9.14 7.20 -1 -1 15.02 5.16058 4.48928 23293 3440 12624 36 0 0 -k6_frac_2uripple_N8_22nm.xml cordic.v common 5.08 vpr 65.41 MiB 0.06 9408 -1 -1 4 0.18 -1 -1 33400 -1 -1 31 54 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66984 54 51 517 516 1 319 136 9 9 81 clb auto 27.1 MiB 0.35 1959 13049 2841 9034 1174 65.4 MiB 0.22 0.01 3.51963 -186.848 -3.51963 3.51963 0.20 0.00143586 0.0013165 0.0602159 0.0552727 60 4348 28 1.45905e+06 456186 242836. 2997.97 2.50 0.464916 0.412703 7944 58396 -1 3694 25 2247 8301 527854 138588 3.9499 3.9499 -216.527 -3.9499 0 0 304930. 3764.57 0.08 0.24 0.09 -1 -1 0.08 0.0837515 0.0756159 228 291 60 18 54 18 -k6_frac_N8_22nm.xml Md5Core.v common 1350.43 vpr 863.52 MiB 23.32 133828 -1 -1 27 15.12 -1 -1 139268 -1 -1 3463 641 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 884248 641 128 52347 52475 1 23591 4232 70 70 4900 clb auto 327.3 MiB 921.45 266765 4452442 1689163 2698186 65093 863.5 MiB 103.17 0.90 12.7079 -34264.4 -12.7079 12.7079 50.77 0.101538 0.0874487 13.7176 11.51 86 397996 31 1.54829e+08 4.66535e+07 2.70735e+07 5525.20 154.26 44.6444 37.7726 628950 7366715 -1 367127 18 111797 234181 19162034 3460691 13.9609 13.9609 -36868.2 -13.9609 0 0 3.39433e+07 6927.21 14.47 10.17 6.95 -1 -1 14.47 4.78879 4.18946 24699 15098 -1 -1 -1 -1 -k6_frac_N8_22nm.xml cordic.v common 5.88 vpr 64.41 MiB 0.08 9196 -1 -1 11 0.28 -1 -1 33240 -1 -1 33 54 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65960 54 51 469 520 1 310 138 9 9 81 clb auto 26.2 MiB 0.24 2194 10106 1833 7584 689 64.4 MiB 0.17 0.01 5.51798 -218.247 -5.51798 5.51798 0.21 0.00153298 0.00138943 0.0509634 0.0467091 70 4451 20 1.41552e+06 444576 280165. 3458.82 3.35 0.613263 0.543308 8364 68055 -1 4080 17 1772 7264 406592 94063 5.89388 5.89388 -237.497 -5.89388 0 0 353496. 4364.14 0.10 0.19 0.10 -1 -1 0.10 0.070048 0.063762 263 359 -1 -1 -1 -1 -k6_frac_ripple_N8_22nm.xml Md5Core.v common 1425.64 vpr 989.89 MiB 23.17 119152 -1 -1 1 4.86 -1 -1 169256 -1 -1 3940 641 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1013648 641 128 63843 53443 1 22926 4709 75 75 5625 clb auto 353.7 MiB 762.47 268669 5685941 2041649 3386606 257686 989.9 MiB 335.97 2.31 5.46524 -22121.6 -5.46524 5.46524 60.19 0.101807 0.0821552 14.9307 12.2649 78 369977 40 1.79437e+08 5.50544e+07 2.85911e+07 5082.87 154.43 48.0684 40.1479 711502 7779045 -1 346249 18 108630 184387 17659025 3207675 4.99846 4.99846 -22210.5 -4.99846 0 0 3.58571e+07 6374.60 15.38 8.81 7.26 -1 -1 15.38 4.20478 3.63026 29971 3440 12624 36 0 0 -k6_frac_ripple_N8_22nm.xml cordic.v common 7.41 vpr 64.73 MiB 0.06 9300 -1 -1 4 0.16 -1 -1 33448 -1 -1 32 54 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66288 54 51 517 516 1 314 137 9 9 81 clb auto 26.3 MiB 1.93 1999 10727 1897 7670 1160 64.7 MiB 0.21 0.01 4.01101 -196.091 -4.01101 4.01101 0.21 0.00154899 0.0014164 0.0510545 0.0467833 60 4265 32 1.43308e+06 447163 242836. 2997.97 3.32 0.625881 0.553692 7944 58396 -1 3592 17 1851 6286 309781 74323 3.75916 3.75916 -206.053 -3.75916 0 0 304930. 3764.57 0.08 0.16 0.08 -1 -1 0.08 0.0615846 0.0560457 236 291 60 18 54 18 -k6_frac_uripple_N8_22nm.xml Md5Core.v common 1069.19 vpr 985.44 MiB 22.68 119048 -1 -1 1 4.91 -1 -1 169404 -1 -1 4033 641 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1009088 641 128 63843 53443 1 24099 4802 76 76 5776 clb auto 344.7 MiB 438.70 280808 5836082 2138529 3464927 232626 985.4 MiB 305.43 2.41 6.31248 -23808.8 -6.31248 6.31248 59.75 0.0979072 0.0841672 14.5073 11.9762 70 374166 41 1.87279e+08 5.68377e+07 2.68464e+07 4647.92 153.71 49.2855 41.115 698892 7188818 -1 343215 21 97722 137371 13395012 2397880 5.64409 5.64409 -23694.1 -5.64409 0 0 3.38185e+07 5855.01 14.90 9.02 6.78 -1 -1 14.90 4.90112 4.229 30637 3440 12624 36 0 0 -k6_frac_uripple_N8_22nm.xml cordic.v common 4.65 vpr 64.73 MiB 0.05 9440 -1 -1 4 0.19 -1 -1 33388 -1 -1 34 54 0 0 success v8.0.0-10581-gcdfc1c601-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-09T21:17:41 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66288 54 51 517 516 1 308 139 9 9 81 clb auto 26.3 MiB 0.54 1994 10191 1970 7228 993 64.7 MiB 0.19 0.01 4.04116 -188.177 -4.04116 4.04116 0.21 0.00145109 0.00133095 0.046763 0.0428733 58 4276 36 1.43728e+06 479191 237595. 2933.27 1.93 0.429461 0.380467 7864 57025 -1 3769 19 1847 7228 381369 93239 3.7364 3.7364 -208.443 -3.7364 0 0 298762. 3688.42 0.08 0.18 0.08 -1 -1 0.08 0.0700705 0.0640572 253 291 60 18 54 18 +k6_frac_2ripple_N8_22nm.xml Md5Core.v common 1345.54 vpr 843.61 MiB 19.63 119156 -1 -1 1 4.60 -1 -1 169172 -1 -1 3158 641 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 863860 641 128 63843 53443 1 23908 3927 67 67 4489 clb auto 333.0 MiB 941.47 238707 4308618 1653800 2561467 93351 843.6 MiB 113.38 1.02 7.62466 -26238.2 -7.62466 7.62466 38.80 0.0900086 0.0781522 12.8973 10.8798 94 348495 43 1.40629e+08 4.5715e+07 2.66495e+07 5936.62 150.85 46.5822 39.074 610042 7319579 -1 311881 17 109690 149750 16562445 2801122 6.6934 6.6934 -24791.4 -6.6934 0 0 3.32742e+07 7412.38 14.55 8.41 6.36 -1 -1 14.55 4.14356 3.60079 23344 3442 12624 36 0 0 +k6_frac_2ripple_N8_22nm.xml cordic.v common 8.48 vpr 64.71 MiB 0.08 9264 -1 -1 4 0.67 -1 -1 32964 -1 -1 30 54 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66264 54 51 517 516 1 317 135 9 9 81 clb auto 26.0 MiB 3.70 1928 12591 2777 8745 1069 64.7 MiB 0.14 0.00 4.22749 -230.57 -4.22749 4.22749 0.17 0.00141093 0.00129827 0.0575671 0.0532357 58 4528 48 1.45065e+06 434271 237595. 2933.27 1.94 0.466668 0.405335 7864 57025 -1 3678 22 2146 7902 424283 100359 3.88422 3.88422 -214.982 -3.88422 0 0 298762. 3688.42 0.06 0.18 0.07 -1 -1 0.06 0.0681518 0.0603634 223 295 60 18 54 18 +k6_frac_2uripple_N8_22nm.xml Md5Core.v common 1078.50 vpr 824.74 MiB 19.19 119160 -1 -1 1 4.32 -1 -1 169116 -1 -1 3164 641 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 844532 641 128 63843 53443 1 23903 3933 67 67 4489 clb auto 325.8 MiB 725.52 236753 4379445 1690051 2596186 93208 824.7 MiB 92.80 0.77 7.40731 -25921.7 -7.40731 7.40731 38.55 0.0817046 0.0702754 12.4206 10.4665 94 336057 42 1.41393e+08 4.65612e+07 2.66495e+07 5936.62 125.43 41.24 34.5853 610042 7319579 -1 304945 16 105315 145559 15279873 2577115 6.2474 6.2474 -24272.2 -6.2474 0 0 3.32742e+07 7412.38 12.66 7.72 6.34 -1 -1 12.66 3.82185 3.32566 23332 3442 12624 36 0 0 +k6_frac_2uripple_N8_22nm.xml cordic.v common 4.58 vpr 64.71 MiB 0.10 9248 -1 -1 4 0.67 -1 -1 32908 -1 -1 31 54 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66260 54 51 517 516 1 322 136 9 9 81 clb auto 26.0 MiB 0.32 1855 10955 2337 7732 886 64.7 MiB 0.12 0.00 4.14249 -227.55 -4.14249 4.14249 0.17 0.00138708 0.00127662 0.049497 0.0457647 60 4035 30 1.45905e+06 456186 242836. 2997.97 1.47 0.347941 0.302314 7944 58396 -1 3327 18 1973 6844 325272 81930 3.74077 3.74077 -210.366 -3.74077 0 0 304930. 3764.57 0.07 0.14 0.07 -1 -1 0.07 0.0558437 0.0496984 227 295 60 18 54 18 +k6_frac_N8_22nm.xml Md5Core.v common 1232.05 vpr 861.79 MiB 18.39 133792 -1 -1 27 15.07 -1 -1 139148 -1 -1 3438 641 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 882472 641 128 52347 52475 1 23739 4207 70 70 4900 clb auto 279.5 MiB 756.19 255287 4315476 1661008 2584916 69552 855.8 MiB 55.93 0.45 15.3287 -39294.9 -15.3287 15.3287 41.71 0.0836165 0.0720047 11.6572 9.72775 90 377297 35 1.54829e+08 4.63167e+07 2.82429e+07 5763.86 264.70 56.8895 47.4295 638746 7615755 -1 353369 19 110041 232156 17925116 3249677 13.664 13.664 -36226.3 -13.664 0 0 3.48442e+07 7111.06 15.25 10.12 6.75 -1 -1 15.25 4.78713 4.16617 24673 15098 -1 -1 -1 -1 +k6_frac_N8_22nm.xml cordic.v common 6.46 vpr 64.57 MiB 0.07 9144 -1 -1 11 0.71 -1 -1 32832 -1 -1 34 54 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66120 54 51 469 520 1 309 139 9 9 81 clb auto 25.4 MiB 0.22 2174 8396 1359 6431 606 64.6 MiB 0.10 0.00 6.18892 -253.076 -6.18892 6.18892 0.17 0.00148504 0.00137147 0.0408609 0.0378237 64 4974 36 1.41552e+06 458048 257695. 3181.41 3.49 0.665842 0.574693 8044 62425 -1 4274 16 1979 7908 463358 108363 5.6854 5.6854 -236.355 -5.6854 0 0 325495. 4018.46 0.07 0.16 0.08 -1 -1 0.07 0.0545932 0.0486561 260 359 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml Md5Core.v common 1505.87 vpr 940.51 MiB 18.52 119108 -1 -1 1 4.45 -1 -1 169136 -1 -1 3939 641 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 963080 641 128 63843 53443 1 22927 4708 75 75 5625 clb auto 305.9 MiB 883.44 247966 5684356 2056083 3381895 246378 940.5 MiB 196.60 1.29 8.34964 -24574.8 -8.34964 8.34964 52.46 0.0937 0.0766502 13.4951 11.1191 80 342149 48 1.79437e+08 5.50405e+07 2.91229e+07 5177.40 271.91 57.9694 48.0698 717126 7920329 -1 325246 23 104183 175560 15728014 2904682 5.77787 5.77787 -21906 -5.77787 0 0 3.65283e+07 6493.92 13.62 8.30 6.56 -1 -1 13.62 4.37971 3.70517 29971 3442 12624 36 0 0 +k6_frac_ripple_N8_22nm.xml cordic.v common 6.28 vpr 64.21 MiB 0.10 9368 -1 -1 4 0.67 -1 -1 32960 -1 -1 32 54 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65748 54 51 517 516 1 308 137 9 9 81 clb auto 25.5 MiB 1.79 1973 8256 1458 6016 782 64.2 MiB 0.10 0.00 4.53631 -225.368 -4.53631 4.53631 0.17 0.0013957 0.00128956 0.0377693 0.034954 58 4378 29 1.43308e+06 447163 237595. 2933.27 1.75 0.39112 0.338338 7864 57025 -1 3755 20 1946 7125 408241 97925 3.83476 3.83476 -204.238 -3.83476 0 0 298762. 3688.42 0.07 0.16 0.07 -1 -1 0.07 0.0595007 0.0525933 235 295 60 18 54 18 +k6_frac_uripple_N8_22nm.xml Md5Core.v common 982.08 vpr 949.34 MiB 19.21 119216 -1 -1 1 4.29 -1 -1 169148 -1 -1 4035 641 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 972120 641 128 63843 53443 1 23951 4804 76 76 5776 clb auto 298.1 MiB 444.87 279860 5758360 2092735 3370157 295468 949.3 MiB 155.35 1.08 9.03188 -27023.3 -9.03188 9.03188 53.40 0.0797474 0.0683203 12.4205 10.4126 74 366559 30 1.87279e+08 5.68659e+07 2.80207e+07 4851.23 229.52 50.1288 41.5608 710444 7492861 -1 338755 20 85472 118774 11490599 2020589 7.0444 7.0444 -24245.9 -7.0444 0 0 3.48777e+07 6038.39 13.16 7.09 6.21 -1 -1 13.16 4.01472 3.43224 30624 3442 12624 36 0 0 +k6_frac_uripple_N8_22nm.xml cordic.v common 4.79 vpr 64.06 MiB 0.10 9168 -1 -1 4 0.67 -1 -1 33056 -1 -1 34 54 0 0 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65600 54 51 517 516 1 312 139 9 9 81 clb auto 25.4 MiB 0.60 1998 7319 1124 5518 677 64.1 MiB 0.09 0.00 4.76334 -234.438 -4.76334 4.76334 0.17 0.00141492 0.00129496 0.0342431 0.0317551 58 4035 26 1.43728e+06 479191 237595. 2933.27 1.43 0.331668 0.287909 7864 57025 -1 3625 18 1765 6255 317707 78027 3.8948 3.8948 -205.264 -3.8948 0 0 298762. 3688.42 0.06 0.14 0.07 -1 -1 0.06 0.0568345 0.050492 249 295 60 18 54 18 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc/config/golden_results.txt index 3396dd64680..4c1d5cbd7fa 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 6.10 vpr 63.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65132 14 8 926 934 0 489 100 11 11 121 clb auto 25.8 MiB 0.98 4624 63.6 MiB 0.20 0.00 4.26299 -29.8803 -4.26299 nan 0.34 0.00193889 0.00163529 0.0909955 0.0803343 52 7374 32 4.36541e+06 4.20373e+06 379421. 3135.71 2.74 0.894853 0.780585 6891 18 2883 12687 402786 77626 4.95623 nan -34.8296 -4.95623 0 0 499620. 4129.09 0.17 0.30 0.171045 0.156958 - k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 8.42 vpr 65.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 38 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67248 38 3 1113 1116 0 660 141 12 12 144 clb auto 28.1 MiB 1.68 7360 65.7 MiB 0.32 0.01 4.67484 -13.8729 -4.67484 nan 0.40 0.00278857 0.00235967 0.126195 0.110714 70 11995 30 5.3894e+06 5.3894e+06 622128. 4320.33 3.63 0.934458 0.806524 11242 16 4359 22022 744895 124336 5.52801 nan -15.9288 -5.52801 0 0 779596. 5413.86 0.26 0.40 0.182003 0.16665 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 6.74 vpr 63.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65172 9 19 897 916 0 559 109 11 11 121 clb auto 26.0 MiB 1.31 6044 63.6 MiB 0.22 0.01 4.36384 -69.9319 -4.36384 nan 0.32 0.0020165 0.00172919 0.0879827 0.0778257 68 9881 44 4.36541e+06 4.36541e+06 499620. 4129.09 2.98 0.798626 0.693521 8928 18 3789 18638 603967 108683 5.18778 nan -82.1838 -5.18778 0 0 618530. 5111.82 0.19 0.33 0.153639 0.140985 - k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 8.28 vpr 65.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 229 197 1364 1561 1 539 497 16 16 256 io auto 27.2 MiB 1.03 4408 65.1 MiB 0.77 0.01 2.54656 -621.9 -2.54656 2.54656 0.88 0.0028051 0.00253446 0.268509 0.241402 38 7549 19 1.05632e+07 3.82647e+06 667532. 2607.55 2.99 1.10562 1.00098 6905 13 1621 4094 200528 44954 3.07855 3.07855 -714.837 -3.07855 0 0 843755. 3295.92 0.35 0.21 0.144234 0.134808 - k6_frac_N10_40nm.xml clma.pre-vpr.blif common 42.46 vpr 89.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 306 62 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91432 62 82 3672 3754 1 2349 450 20 20 400 clb auto 52.2 MiB 4.59 28983 89.3 MiB 2.95 0.04 7.29692 -314.171 -7.29692 7.29692 1.61 0.0113629 0.00959956 0.982735 0.84349 92 46477 33 1.74617e+07 1.64916e+07 2.37849e+06 5946.23 24.94 5.30489 4.49675 42472 16 14643 63904 2407512 372290 8.04747 8.04747 -346.575 -8.04747 0 0 3.01539e+06 7538.48 1.36 1.51 0.742695 0.672713 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 9.73 vpr 62.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64000 256 245 954 1199 0 581 552 18 18 324 io auto 24.5 MiB 0.41 4850 62.5 MiB 0.60 0.01 3.56098 -645.978 -3.56098 nan 1.21 0.0026513 0.002422 0.188129 0.173011 36 9247 49 1.37969e+07 2.74859e+06 824466. 2544.65 4.61 1.08128 1.00072 8049 17 2411 5137 284651 65331 4.22789 nan -800.894 -4.22789 0 0 1.01518e+06 3133.28 0.45 0.24 0.138928 0.131135 - k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 5.04 vpr 63.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 64 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65012 64 39 1371 1410 1 542 169 11 11 121 clb auto 25.9 MiB 0.62 3539 63.5 MiB 0.26 0.01 4.72499 -920.021 -4.72499 4.72499 0.34 0.00221774 0.00190626 0.113861 0.0994764 46 6362 27 4.36541e+06 3.557e+06 343362. 2837.71 2.05 0.677393 0.592709 5193 14 1995 5499 161167 33878 5.7263 5.7263 -1100.93 -5.7263 0 0 440296. 3638.81 0.15 0.19 0.142165 0.13055 - k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 8.58 vpr 65.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 229 197 1362 1559 1 566 497 16 16 256 io auto 27.6 MiB 1.15 4692 65.3 MiB 0.75 0.01 2.61898 -604.221 -2.61898 2.61898 0.88 0.00313524 0.0028236 0.250799 0.225596 38 8277 13 1.05632e+07 3.82647e+06 667532. 2607.55 3.12 1.07432 0.971949 7547 12 1828 4992 263970 57657 3.1914 3.1914 -729.755 -3.1914 0 0 843755. 3295.92 0.35 0.23 0.150983 0.14192 - k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 15.19 vpr 77.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 166 131 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79248 131 114 3421 3535 1 1164 411 15 15 225 clb auto 40.1 MiB 3.41 10211 77.4 MiB 1.30 0.02 6.53242 -3829.38 -6.53242 6.53242 0.76 0.00704713 0.00604684 0.521317 0.450637 62 17376 34 9.10809e+06 8.9464e+06 909814. 4043.62 5.72 2.15062 1.85659 15358 15 5042 21232 740906 125232 7.53327 7.53327 -4462.93 -7.53327 0 0 1.12687e+06 5008.33 0.42 0.60 0.402157 0.366687 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 37.74 vpr 81.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83888 10 10 2659 2669 0 1393 308 19 19 361 clb auto 45.3 MiB 4.73 26284 81.9 MiB 1.58 0.02 5.85481 -57.6187 -5.85481 nan 1.34 0.00839796 0.00704329 0.573606 0.491961 92 43610 37 1.55754e+07 1.55215e+07 2.13123e+06 5903.67 22.76 4.35345 3.72008 40138 19 9880 62056 2908703 358426 6.44782 nan -63.4736 -6.44782 0 0 2.70169e+06 7483.90 1.22 1.59 0.648998 0.585473 - k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 5.43 vpr 62.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63556 8 63 761 824 0 435 133 10 10 100 clb auto 24.4 MiB 0.88 3931 62.1 MiB 0.21 0.01 3.49851 -158.405 -3.49851 nan 0.27 0.00178643 0.00152944 0.0823636 0.0727072 58 6824 44 3.44922e+06 3.34143e+06 342720. 3427.20 2.38 0.612812 0.531324 6025 16 2874 12604 426083 80663 4.18734 nan -188.901 -4.18734 0 0 435638. 4356.38 0.15 0.25 0.123045 0.112975 - k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 17.96 vpr 77.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 172 20 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79288 20 116 3175 3291 1 1268 308 16 16 256 clb auto 40.7 MiB 2.90 14208 77.4 MiB 1.29 0.02 7.4636 -3962.61 -7.4636 7.4636 0.86 0.00675188 0.00599758 0.537552 0.473824 74 23930 27 1.05632e+07 9.26977e+06 1.22133e+06 4770.81 8.23 2.32526 2.03303 21885 17 6397 26110 1261061 202034 9.00945 9.00945 -4651.19 -9.00945 0 0 1.52915e+06 5973.24 0.60 0.80 0.475754 0.432309 - k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 6.19 vpr 62.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 14 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64100 14 14 828 842 0 472 100 11 11 121 clb auto 24.8 MiB 1.08 4477 62.6 MiB 0.18 0.01 3.97781 -53.2842 -3.97781 nan 0.34 0.00204554 0.00173648 0.0767547 0.0681645 50 7431 46 4.36541e+06 3.88037e+06 367716. 3038.97 2.75 0.667944 0.579629 6716 17 3068 13491 432709 79146 5.04883 nan -62.9623 -5.04883 0 0 472432. 3904.40 0.17 0.27 0.142323 0.129982 - k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 34.82 vpr 82.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 271 16 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84600 16 40 2839 2879 0 1511 327 19 19 361 clb auto 45.9 MiB 3.83 23697 82.6 MiB 1.59 0.03 6.06928 -216.338 -6.06928 nan 1.44 0.00825599 0.00674821 0.569945 0.487717 86 40064 49 1.55754e+07 1.46053e+07 2.00874e+06 5564.38 20.90 4.57512 3.88369 35670 18 9500 51498 2046618 301201 6.81763 nan -242.91 -6.81763 0 0 2.53507e+06 7022.34 1.09 1.27 0.578591 0.521143 - k6_frac_N10_40nm.xml s298.pre-vpr.blif common 4.68 vpr 61.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 4 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63224 4 6 726 732 1 380 74 10 10 100 clb auto 24.1 MiB 0.83 3567 61.7 MiB 0.12 0.00 5.42994 -44.6881 -5.42994 5.42994 0.26 0.00140678 0.0011628 0.0543146 0.0480159 50 5412 21 3.44922e+06 3.44922e+06 295697. 2956.97 1.95 0.592 0.515094 5008 17 2235 9486 303768 54879 6.03327 6.03327 -52.0359 -6.03327 0 0 379824. 3798.24 0.13 0.22 0.132651 0.122077 - k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 19.67 vpr 86.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 250 29 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89068 29 106 4782 4888 1 2018 385 18 18 324 clb auto 50.4 MiB 2.98 13367 87.0 MiB 1.85 0.02 4.41744 -3218.16 -4.41744 4.41744 1.17 0.00920776 0.00777137 0.768221 0.65416 52 21404 42 1.37969e+07 1.34735e+07 1.12378e+06 3468.47 8.23 3.56963 3.04018 19652 14 6853 19004 673661 132004 5.22925 5.22925 -3717.86 -5.22925 0 0 1.48031e+06 4568.86 0.63 0.74 0.565359 0.513704 - k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 19.62 vpr 85.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 227 38 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87788 38 304 4422 4726 1 2038 569 18 18 324 clb auto 48.7 MiB 3.02 13521 85.7 MiB 2.28 0.03 4.05195 -2683.77 -4.05195 4.05195 1.20 0.00879333 0.00742335 0.808497 0.691272 60 24051 35 1.37969e+07 1.22339e+07 1.30451e+06 4026.26 7.55 3.20625 2.77774 20556 15 6775 18084 642960 132900 4.99494 4.99494 -3097.71 -4.99494 0 0 1.63833e+06 5056.57 0.71 0.73 0.5748 0.525818 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 8.25 vpr 64.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 41 35 1006 1041 0 599 161 12 12 144 clb auto 26.8 MiB 1.38 6438 64.4 MiB 0.34 0.01 4.0708 -120.211 -4.0708 nan 0.41 0.00219697 0.00184625 0.121666 0.106253 62 11443 45 5.3894e+06 4.58099e+06 554770. 3852.57 3.85 0.762399 0.659067 9944 18 4437 22108 750725 132959 4.90358 nan -142.839 -4.90358 0 0 687181. 4772.09 0.24 0.41 0.18492 0.169236 - k6_frac_N10_40nm.xml spla.pre-vpr.blif common 20.16 vpr 76.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 213 16 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78344 16 46 2232 2278 0 1178 275 17 17 289 clb auto 39.0 MiB 2.90 15794 76.5 MiB 1.09 0.02 5.54336 -181.648 -5.54336 nan 0.99 0.00598087 0.00504309 0.403037 0.348209 74 24706 23 1.21262e+07 1.14794e+07 1.39325e+06 4820.95 10.01 2.33549 1.99923 24409 18 6831 37414 1494297 224108 6.57019 nan -215.648 -6.57019 0 0 1.74421e+06 6035.33 0.70 0.96 0.460856 0.418293 - k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 4.66 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 52 -1 -1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 52 122 1461 1583 1 476 237 10 10 100 clb auto 26.3 MiB 0.68 2554 64.3 MiB 0.32 0.01 4.219 -1029.64 -4.219 4.219 0.27 0.00206969 0.00175768 0.11901 0.102795 48 5030 29 3.44922e+06 3.39532e+06 287248. 2872.48 1.82 0.75586 0.656448 4257 15 1421 3507 132476 31837 4.81288 4.81288 -1171.84 -4.81288 0 0 366588. 3665.88 0.12 0.15 0.116404 0.106982 +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_40nm.xml alu4.pre-vpr.blif common 6.44 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65860 14 8 926 934 0 490 100 11 11 121 clb auto 24.8 MiB 0.91 4540 5436 746 4365 325 64.3 MiB 0.22 0.01 4.4958 -31.528 -4.4958 nan 0.32 0.00518513 0.00476183 0.142243 0.131594 52 7157 39 4.36541e+06 4.20373e+06 379421. 3135.71 3.12 1.54305 1.41039 12531 77429 -1 6624 17 3168 14393 437125 83566 4.8594 nan -34.0978 -4.8594 0 0 499620. 4129.09 0.12 0.35 0.11 -1 -1 0.12 0.217292 0.201716 +k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 10.42 vpr 66.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 38 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67776 38 3 1113 1116 0 662 144 13 13 169 clb auto 26.6 MiB 1.57 7370 11454 1699 8583 1172 66.2 MiB 0.36 0.01 5.6032 -16.0295 -5.6032 nan 0.48 0.00608264 0.00556782 0.216301 0.199813 66 12625 26 6.52117e+06 5.55108e+06 710325. 4203.11 5.48 1.80568 1.65233 19379 142405 -1 11924 18 4624 23024 803122 126844 5.75407 nan -16.4608 -5.75407 0 0 879032. 5201.38 0.21 0.49 0.22 -1 -1 0.21 0.268726 0.249892 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 8.36 vpr 64.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65900 9 19 897 916 0 556 110 12 12 144 clb auto 24.8 MiB 1.43 6155 6948 1152 5347 449 64.4 MiB 0.19 0.00 4.85584 -79.8781 -4.85584 nan 0.40 0.00184535 0.00164299 0.102414 0.0941394 64 10771 28 5.3894e+06 4.41931e+06 575115. 3993.85 4.15 1.4005 1.27741 16224 115365 -1 9685 19 3941 19896 705511 115372 5.17072 nan -84.2996 -5.17072 0 0 716128. 4973.11 0.16 0.44 0.18 -1 -1 0.16 0.238518 0.221526 +k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 9.13 vpr 65.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67428 229 197 1364 1561 1 539 497 16 16 256 io auto 26.3 MiB 0.80 3888 151956 45040 98819 8097 65.8 MiB 1.02 0.01 3.01736 -656.133 -3.01736 3.01736 0.79 0.00693433 0.00645616 0.560233 0.521561 38 7443 37 1.05632e+07 3.82647e+06 667532. 2607.55 3.90 2.38635 2.22107 25328 137766 -1 6882 14 1605 4348 206877 47610 3.0708 3.0708 -728.475 -3.0708 0 0 843755. 3295.92 0.23 0.33 0.19 -1 -1 0.23 0.246405 0.231441 +k6_frac_N10_40nm.xml clma.pre-vpr.blif common 43.74 vpr 89.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 62 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91560 62 82 3672 3754 1 2344 451 20 20 400 clb auto 45.4 MiB 4.13 29194 126595 33709 86071 6815 89.4 MiB 3.36 0.04 7.83344 -342.752 -7.83344 7.83344 1.33 0.0213741 0.0195703 1.719 1.5557 92 46721 44 1.74617e+07 1.65455e+07 2.37849e+06 5946.23 27.30 8.57955 7.81451 54288 506964 -1 42503 16 14653 63396 2356990 367690 8.12752 8.12752 -355.073 -8.12752 0 0 3.01539e+06 7538.48 0.77 1.55 0.89 -1 -1 0.77 0.838641 0.780724 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 9.42 vpr 62.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 256 245 954 1199 0 578 552 18 18 324 io auto 23.8 MiB 0.31 4966 131806 34568 89483 7755 63.0 MiB 0.74 0.01 3.70962 -712.314 -3.70962 nan 1.04 0.00594369 0.00563587 0.363143 0.344074 36 9086 34 1.37969e+07 2.74859e+06 824466. 2544.65 4.56 1.92823 1.82519 31748 166456 -1 8145 16 2076 4578 247499 55677 4.28288 nan -799.816 -4.28288 0 0 1.01518e+06 3133.28 0.29 0.31 0.23 -1 -1 0.29 0.217585 0.206808 +k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 5.00 vpr 64.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 65 64 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66216 64 39 1371 1410 1 542 168 11 11 121 clb auto 25.5 MiB 0.49 3387 16373 2957 12425 991 64.7 MiB 0.34 0.01 5.33717 -1012.06 -5.33717 5.33717 0.32 0.00551817 0.00506527 0.217367 0.199664 46 5978 20 4.36541e+06 3.50311e+06 343362. 2837.71 2.08 1.1317 1.03145 12051 69045 -1 5146 15 1964 5478 158754 33013 5.81148 5.81148 -1104.11 -5.81148 0 0 440296. 3638.81 0.10 0.26 0.10 -1 -1 0.10 0.200354 0.185353 +k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 13.46 vpr 65.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 70 229 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67568 229 197 1362 1559 1 570 496 16 16 256 io auto 26.5 MiB 0.92 4585 165304 49025 107137 9142 66.0 MiB 1.16 0.01 3.10283 -686.218 -3.10283 3.10283 0.79 0.00699037 0.00652345 0.625484 0.582292 34 9041 35 1.05632e+07 3.77258e+06 613832. 2397.78 8.06 2.83688 2.63826 24564 122629 -1 7970 15 1915 4990 281238 63267 3.70768 3.70768 -756.66 -3.70768 0 0 751777. 2936.63 0.21 0.34 0.16 -1 -1 0.21 0.251507 0.236434 +k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 17.29 vpr 77.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 161 131 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79476 131 114 3421 3535 1 1168 406 15 15 225 clb auto 36.6 MiB 3.44 10160 93530 25863 63124 4543 77.6 MiB 1.56 0.03 7.58521 -4229.27 -7.58521 7.58521 0.68 0.0138984 0.0126526 0.918589 0.834313 62 17318 36 9.10809e+06 8.67693e+06 909814. 4043.62 7.54 3.71593 3.36668 25483 182909 -1 15258 16 4942 20250 696601 116792 7.60811 7.60811 -4446.67 -7.60811 0 0 1.12687e+06 5008.33 0.28 0.83 0.28 -1 -1 0.28 0.583151 0.53906 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 35.62 vpr 82.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 285 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84088 10 10 2659 2669 0 1401 305 19 19 361 clb auto 39.7 MiB 4.60 25941 47501 11839 33920 1742 82.1 MiB 1.52 0.03 6.51363 -63.125 -6.51363 nan 1.17 0.0157341 0.0141831 0.83148 0.756912 90 44429 42 1.55754e+07 1.53598e+07 2.09179e+06 5794.43 21.60 5.96882 5.41082 48131 439069 -1 39612 19 10083 62912 2759594 360291 6.79856 nan -65.1978 -6.79856 0 0 2.60973e+06 7229.16 0.67 1.62 0.76 -1 -1 0.67 0.745469 0.690374 +k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 7.56 vpr 62.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 8 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 8 63 761 824 0 435 134 10 10 100 clb auto 23.9 MiB 0.77 4014 9710 1704 7314 692 62.9 MiB 0.24 0.01 3.75572 -169.726 -3.75572 nan 0.26 0.00438026 0.00402231 0.141675 0.131165 62 6635 29 3.44922e+06 3.39532e+06 366588. 3665.88 4.67 1.75528 1.60347 10808 71624 -1 6116 15 2439 10242 331401 61427 4.36433 nan -187.408 -4.36433 0 0 454102. 4541.02 0.10 0.28 0.11 -1 -1 0.10 0.172871 0.16095 +k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 26.15 vpr 77.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 169 20 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79684 20 116 3175 3291 1 1343 305 15 15 225 clb auto 36.5 MiB 3.27 14309 61865 15386 41962 4517 77.8 MiB 1.49 0.02 8.94586 -4514.97 -8.94586 8.94586 0.68 0.0134898 0.0123163 0.87824 0.800532 84 23545 27 9.10809e+06 9.10809e+06 1.17394e+06 5217.51 16.37 6.08334 5.54376 28843 248089 -1 20679 14 6058 24388 1043623 169310 9.40485 9.40485 -4707.1 -9.40485 0 0 1.49163e+06 6629.45 0.36 0.82 0.42 -1 -1 0.36 0.500912 0.465209 +k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 9.15 vpr 63.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 14 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 14 14 828 842 0 475 99 11 11 121 clb auto 24.2 MiB 0.94 4503 7167 1163 5436 568 63.4 MiB 0.26 0.01 4.27418 -57.174 -4.27418 nan 0.32 0.00472358 0.00433107 0.172208 0.159272 56 7808 29 4.36541e+06 3.82647e+06 409660. 3385.62 5.76 2.01702 1.8439 12771 81981 -1 7041 18 3260 15213 511376 89461 4.64181 nan -60.1449 -4.64181 0 0 523260. 4324.46 0.12 0.38 0.12 -1 -1 0.12 0.216152 0.200533 +k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 34.81 vpr 83.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 272 16 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85508 16 40 2839 2879 0 1511 328 19 19 361 clb auto 40.3 MiB 3.55 23474 61348 15718 43195 2435 83.5 MiB 1.97 0.04 6.39129 -239.535 -6.39129 nan 1.17 0.0254599 0.0231519 1.08545 0.976329 86 38675 34 1.55754e+07 1.46592e+07 2.00874e+06 5564.38 21.61 7.15454 6.48634 47411 425437 -1 35089 17 9872 54697 2130011 304209 6.65044 nan -240.312 -6.65044 0 0 2.53507e+06 7022.34 0.63 1.41 0.72 -1 -1 0.63 0.713978 0.662817 +k6_frac_N10_40nm.xml s298.pre-vpr.blif common 5.24 vpr 62.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 4 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 4 6 726 732 1 398 73 10 10 100 clb auto 23.4 MiB 0.75 3666 3417 417 2860 140 62.6 MiB 0.17 0.01 6.02354 -48.3456 -6.02354 6.02354 0.26 0.00429322 0.00396998 0.118634 0.11015 50 5820 31 3.44922e+06 3.39532e+06 295697. 2956.97 2.57 1.18638 1.08766 10016 58256 -1 5144 15 2315 9199 280618 50632 6.26562 6.26562 -52.0008 -6.26562 0 0 379824. 3798.24 0.09 0.25 0.08 -1 -1 0.09 0.165811 0.154414 +k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 21.22 vpr 87.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 249 29 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89440 29 106 4782 4888 1 2019 384 18 18 324 clb auto 45.1 MiB 2.48 13216 107799 27485 70375 9939 87.3 MiB 2.46 0.03 5.18654 -3584.37 -5.18654 5.18654 1.04 0.0178091 0.0161001 1.48747 1.34204 52 21960 50 1.37969e+07 1.34196e+07 1.12378e+06 3468.47 9.91 5.91807 5.35079 35300 236012 -1 19626 15 6767 19136 685005 132226 5.32162 5.32162 -3691.42 -5.32162 0 0 1.48031e+06 4568.86 0.38 0.91 0.35 -1 -1 0.38 0.699513 0.646655 +k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 21.61 vpr 85.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 226 38 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88016 38 304 4422 4726 1 2052 568 18 18 324 clb auto 43.6 MiB 2.58 13975 176893 52423 113746 10724 86.0 MiB 2.68 0.04 4.9343 -2945.33 -4.9343 4.9343 1.03 0.0181836 0.0162915 1.45232 1.30905 60 25004 43 1.37969e+07 1.218e+07 1.30451e+06 4026.26 9.76 5.30916 4.81556 36916 268072 -1 20989 21 6867 18700 649546 132224 5.09646 5.09646 -3105.32 -5.09646 0 0 1.63833e+06 5056.57 0.43 1.12 0.41 -1 -1 0.43 0.898158 0.830258 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 11.48 vpr 65.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66792 41 35 1006 1041 0 604 160 12 12 144 clb auto 25.8 MiB 1.25 6526 13180 2280 9516 1384 65.2 MiB 0.34 0.01 4.5556 -135.416 -4.5556 nan 0.40 0.00567464 0.00519319 0.194713 0.180099 64 11365 46 5.3894e+06 4.5271e+06 575115. 3993.85 7.24 2.30466 2.10936 16224 115365 -1 10143 18 4137 19881 679868 115960 4.93645 nan -144.738 -4.93645 0 0 716128. 4973.11 0.16 0.46 0.18 -1 -1 0.16 0.25103 0.233257 +k6_frac_N10_40nm.xml spla.pre-vpr.blif common 21.57 vpr 77.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 216 16 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79132 16 46 2232 2278 0 1170 278 17 17 289 clb auto 35.6 MiB 2.77 15884 45628 10574 32142 2912 77.3 MiB 1.36 0.02 5.95671 -204.452 -5.95671 nan 0.91 0.0133587 0.0121199 0.775594 0.707225 74 25546 32 1.21262e+07 1.16411e+07 1.39325e+06 4820.95 11.37 4.19873 3.8273 35379 286977 -1 24647 19 7675 42760 1737904 249467 6.14143 nan -217.643 -6.14143 0 0 1.74421e+06 6035.33 0.44 1.20 0.46 -1 -1 0.44 0.621038 0.575028 +k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 4.92 vpr 65.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 61 52 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66784 52 122 1461 1583 1 474 235 10 10 100 clb auto 26.2 MiB 0.55 2490 35711 8852 25144 1715 65.2 MiB 0.47 0.01 4.73051 -1125.66 -4.73051 4.73051 0.26 0.00536421 0.00491253 0.285644 0.261717 46 4691 25 3.44922e+06 3.28753e+06 276332. 2763.32 2.04 1.3096 1.19377 9816 55112 -1 4036 15 1411 3526 118896 27892 5.08546 5.08546 -1209.63 -5.08546 0 0 354105. 3541.05 0.08 0.24 0.08 -1 -1 0.08 0.196653 0.181847 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vtr_reg_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vtr_reg_fpu_hard_block_arch/config/golden_results.txt index dc1f4f52657..f5251301604 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vtr_reg_fpu_hard_block_arch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vtr_reg_fpu_hard_block_arch/config/golden_results.txt @@ -1,17 +1,9 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 num_fpu -hard_fpu_arch_timing.xml bfly.v common 15.74 vpr 61.95 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30756 -1 -1 0 193 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62556 193 64 833 649 1 353 260 24 24 576 io auto 22.4 MiB 3.76 5255 64922 27286 37304 332 61.1 MiB 0.55 0.01 2.985 -1386.3 -2.985 2.985 0.00 0.00327313 0.00302354 0.275883 0.255989 7367 20.9290 1933 5.49148 501 663 303988 65486 1.06129e+06 103149 1.28794e+06 2236.02 4 31350 258969 -1 2.985 2.985 -1374.46 -2.985 -40.8482 -0.0851 0.34 -1 -1 61.1 MiB 0.11 0.335011 0.312469 61.1 MiB -1 0.45 3 -hard_fpu_arch_timing.xml bgm.v common 6.33 vpr 66.21 MiB 0.09 9036 -1 -1 1 0.07 -1 -1 31584 -1 -1 0 257 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67216 257 32 1281 693 1 864 298 38 38 1444 block_FPU auto 26.3 MiB 1.32 17278 98803 43856 54485 462 65.6 MiB 1.30 0.01 2.985 -3198.18 -2.985 2.985 0.00 0.00648294 0.00604563 0.658802 0.614748 23677 27.4357 6102 7.07068 1531 2127 1282965 269825 2.90196e+06 309448 3.35777e+06 2325.33 6 79768 674274 -1 2.985 2.985 -3380.92 -2.985 -43.8209 -0.0851 0.82 -1 -1 65.6 MiB 0.37 0.79625 0.746728 65.6 MiB -1 1.35 9 -hard_fpu_arch_timing.xml dscg.v common 15.04 vpr 61.91 MiB 0.05 7252 -1 -1 1 0.04 -1 -1 31044 -1 -1 0 129 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62996 129 64 769 585 1 513 198 32 32 1024 block_FPU auto 22.3 MiB 7.74 7618 43398 17681 25427 290 61.5 MiB 0.49 0.01 2.985 -1446.64 -2.985 2.985 0.00 0.00317221 0.00292427 0.249856 0.231004 11265 22.0020 2929 5.72070 856 1108 582281 130616 2.063e+06 171916 2.37490e+06 2319.23 6 57140 479124 -1 2.985 2.985 -1533.8 -2.985 -21.8252 -0.0851 0.58 -1 -1 61.5 MiB 0.17 0.316854 0.294567 61.5 MiB -1 0.90 5 -hard_fpu_arch_timing.xml fir.v common 22.56 vpr 62.33 MiB 0.07 7436 -1 -1 1 0.06 -1 -1 31472 -1 -1 35 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 161 32 993 808 1 529 232 30 30 900 block_FPU auto 23.1 MiB 60.85 7270 61464 25278 34443 1743 62.0 MiB 0.58 0.01 2.985 -1397.95 -2.985 2.985 0.00 0.00321873 0.00293589 0.290315 0.26549 10071 19.0739 2665 5.04735 891 1056 508330 108854 1.6779e+06 217760 2.03108e+06 2256.75 6 48532 406344 -1 2.985 2.985 -1471.61 -2.985 -39.8608 -0.0851 0.51 -1 -1 62.0 MiB 0.16 0.359561 0.330696 62.0 MiB -1 0.79 4 -hard_fpu_arch_timing.xml mm3.v common 7.76 vpr 60.26 MiB 0.04 6652 -1 -1 1 0.04 -1 -1 30596 -1 -1 0 193 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61264 193 32 545 422 1 289 227 21 21 441 io auto 21.1 MiB 2.35 3480 45207 19008 25799 400 59.8 MiB 0.30 0.00 2.985 -824.702 -2.985 2.985 0.00 0.00227454 0.00212456 0.154221 0.144205 4551 15.8021 1192 4.13889 400 400 194592 43581 809148 68766.3 979092. 2220.16 4 24050 197379 -1 2.985 2.985 -811.598 -2.985 -21.7856 -0.0851 0.28 -1 -1 59.8 MiB 0.07 0.192031 0.180175 59.8 MiB -1 0.34 2 -hard_fpu_arch_timing.xml ode.v common 65.98 vpr 64.29 MiB 0.06 7976 -1 -1 1 0.10 -1 -1 33848 -1 -1 142 130 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65620 130 72 1194 1103 1 571 346 19 19 361 io auto 25.1 MiB 63.56 4860 104750 34659 65821 4270 64.1 MiB 0.70 0.01 2.985 -1401.51 -2.985 2.985 0.00 0.0033169 0.00299411 0.296086 0.267129 6962 12.2140 1826 3.20351 1305 1400 438021 89099 653279 394260 795482. 2203.55 9 19802 160939 -1 2.985 2.985 -1411.7 -2.985 -52.7624 -0.0851 0.24 -1 -1 64.1 MiB 0.17 0.383271 0.347794 64.1 MiB -1 0.29 2 -hard_fpu_arch_timing.xml syn2.v common 5.27 vpr 61.55 MiB 0.06 7112 -1 -1 1 0.04 -1 -1 30848 -1 -1 0 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62176 161 128 641 490 1 475 293 30 30 900 block_FPU auto 22.0 MiB 2.14 7788 82913 36084 46392 437 60.7 MiB 0.69 0.01 2.985 -1564.05 -2.985 2.985 0.00 0.00375827 0.00352787 0.328229 0.308504 10286 21.7004 2724 5.74684 792 992 508821 108959 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -1586.47 -2.985 -16.4184 -0.0851 0.51 -1 -1 60.7 MiB 0.16 0.397583 0.375105 60.7 MiB -1 0.74 4 -hard_fpu_arch_timing.xml syn7.v common 12.65 vpr 112.07 MiB 0.13 9844 -1 -1 1 0.08 -1 -1 32532 -1 -1 0 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114616 161 128 1921 499 1 1728 310 54 54 2916 block_FPU auto 36.0 MiB 4.74 48155 121878 59300 62053 525 111.9 MiB 3.67 0.04 2.985 -8259.7 -2.985 2.985 0.00 0.014325 0.0134063 1.6815 1.5807 64724 37.4777 16502 9.55530 4378 7607 4529695 925937 6.08571e+06 722046 6.89978e+06 2366.18 8 161598 1383069 -1 2.985 2.985 -8812.77 -2.985 -32.7635 -0.0851 1.65 -1 -1 111.9 MiB 1.21 2.04981 1.93553 111.9 MiB -1 3.01 21 - hard_fpu_arch_timing.xml bfly.v common 15.74 vpr 61.95 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30756 -1 -1 0 193 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62556 193 64 833 649 1 353 260 24 24 576 io auto 22.4 MiB 3.76 5255 64922 27286 37304 332 61.1 MiB 0.55 0.01 2.985 -1386.3 -2.985 2.985 0.00 0.00327313 0.00302354 0.275883 0.255989 7367 20.9290 1933 5.49148 501 663 303988 65486 1.06129e+06 103149 1.28794e+06 2236.02 4 31350 258969 -1 2.985 2.985 -1374.46 -2.985 -40.8482 -0.0851 0.34 -1 -1 61.1 MiB 0.11 0.335011 0.312469 61.1 MiB -1 0.45 3 - hard_fpu_arch_timing.xml bgm.v common 6.33 vpr 66.21 MiB 0.09 9036 -1 -1 1 0.07 -1 -1 31584 -1 -1 0 257 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67216 257 32 1281 693 1 864 298 38 38 1444 block_FPU auto 26.3 MiB 1.32 17278 98803 43856 54485 462 65.6 MiB 1.30 0.01 2.985 -3198.18 -2.985 2.985 0.00 0.00648294 0.00604563 0.658802 0.614748 23677 27.4357 6102 7.07068 1531 2127 1282965 269825 2.90196e+06 309448 3.35777e+06 2325.33 6 79768 674274 -1 2.985 2.985 -3380.92 -2.985 -43.8209 -0.0851 0.82 -1 -1 65.6 MiB 0.37 0.79625 0.746728 65.6 MiB -1 1.35 9 - hard_fpu_arch_timing.xml dscg.v common 15.04 vpr 61.91 MiB 0.05 7252 -1 -1 1 0.04 -1 -1 31044 -1 -1 0 129 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62996 129 64 769 585 1 513 198 32 32 1024 block_FPU auto 22.3 MiB 7.74 7618 43398 17681 25427 290 61.5 MiB 0.49 0.01 2.985 -1446.64 -2.985 2.985 0.00 0.00317221 0.00292427 0.249856 0.231004 11265 22.0020 2929 5.72070 856 1108 582281 130616 2.063e+06 171916 2.37490e+06 2319.23 6 57140 479124 -1 2.985 2.985 -1533.8 -2.985 -21.8252 -0.0851 0.58 -1 -1 61.5 MiB 0.17 0.316854 0.294567 61.5 MiB -1 0.90 5 - hard_fpu_arch_timing.xml fir.v common 22.56 vpr 62.33 MiB 0.07 7436 -1 -1 1 0.06 -1 -1 31472 -1 -1 35 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 161 32 993 808 1 529 232 30 30 900 block_FPU auto 23.1 MiB 60.85 7270 61464 25278 34443 1743 62.0 MiB 0.58 0.01 2.985 -1397.95 -2.985 2.985 0.00 0.00321873 0.00293589 0.290315 0.26549 10071 19.0739 2665 5.04735 891 1056 508330 108854 1.6779e+06 217760 2.03108e+06 2256.75 6 48532 406344 -1 2.985 2.985 -1471.61 -2.985 -39.8608 -0.0851 0.51 -1 -1 62.0 MiB 0.16 0.359561 0.330696 62.0 MiB -1 0.79 4 - hard_fpu_arch_timing.xml mm3.v common 7.76 vpr 60.26 MiB 0.04 6652 -1 -1 1 0.04 -1 -1 30596 -1 -1 0 193 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61264 193 32 545 422 1 289 227 21 21 441 io auto 21.1 MiB 2.35 3480 45207 19008 25799 400 59.8 MiB 0.30 0.00 2.985 -824.702 -2.985 2.985 0.00 0.00227454 0.00212456 0.154221 0.144205 4551 15.8021 1192 4.13889 400 400 194592 43581 809148 68766.3 979092. 2220.16 4 24050 197379 -1 2.985 2.985 -811.598 -2.985 -21.7856 -0.0851 0.28 -1 -1 59.8 MiB 0.07 0.192031 0.180175 59.8 MiB -1 0.34 2 - hard_fpu_arch_timing.xml ode.v common 65.98 vpr 64.29 MiB 0.06 7976 -1 -1 1 0.10 -1 -1 33848 -1 -1 142 130 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65620 130 72 1194 1103 1 571 346 19 19 361 io auto 25.1 MiB 63.56 4860 104750 34659 65821 4270 64.1 MiB 0.70 0.01 2.985 -1401.51 -2.985 2.985 0.00 0.0033169 0.00299411 0.296086 0.267129 6962 12.2140 1826 3.20351 1305 1400 438021 89099 653279 394260 795482. 2203.55 9 19802 160939 -1 2.985 2.985 -1411.7 -2.985 -52.7624 -0.0851 0.24 -1 -1 64.1 MiB 0.17 0.383271 0.347794 64.1 MiB -1 0.29 2 - hard_fpu_arch_timing.xml syn2.v common 5.27 vpr 61.55 MiB 0.06 7112 -1 -1 1 0.04 -1 -1 30848 -1 -1 0 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62176 161 128 641 490 1 475 293 30 30 900 block_FPU auto 22.0 MiB 2.14 7788 82913 36084 46392 437 60.7 MiB 0.69 0.01 2.985 -1564.05 -2.985 2.985 0.00 0.00375827 0.00352787 0.328229 0.308504 10286 21.7004 2724 5.74684 792 992 508821 108959 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -1586.47 -2.985 -16.4184 -0.0851 0.51 -1 -1 60.7 MiB 0.16 0.397583 0.375105 60.7 MiB -1 0.74 4 - hard_fpu_arch_timing.xml syn7.v common 12.65 vpr 112.07 MiB 0.13 9844 -1 -1 1 0.08 -1 -1 32532 -1 -1 0 161 -1 -1 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114616 161 128 1921 499 1 1728 310 54 54 2916 block_FPU auto 36.0 MiB 4.74 48155 121878 59300 62053 525 111.9 MiB 3.67 0.04 2.985 -8259.7 -2.985 2.985 0.00 0.014325 0.0134063 1.6815 1.5807 64724 37.4777 16502 9.55530 4378 7607 4529695 925937 6.08571e+06 722046 6.89978e+06 2366.18 8 161598 1383069 -1 2.985 2.985 -8812.77 -2.985 -32.7635 -0.0851 1.65 -1 -1 111.9 MiB 1.21 2.04981 1.93553 111.9 MiB -1 3.01 21 +hard_fpu_arch_timing.xml bfly.v common 6.14 vpr 62.38 MiB 0.04 7212 -1 -1 1 0.05 -1 -1 31024 -1 -1 0 193 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 193 64 833 649 1 353 260 24 24 576 io auto 23.4 MiB 3.45 5270 64093 26913 36818 362 62.4 MiB 0.81 0.01 2.985 -1388.77 -2.985 2.985 0.00 0.00780093 0.00749265 0.620138 0.595835 7269 20.6506 1911 5.42898 502 663 292581 62228 1.06129e+06 103149 1.28794e+06 2236.02 4 31350 258969 -1 2.985 2.985 -1374.24 -2.985 -40.8482 -0.0851 0.57 -1 -1 62.4 MiB 0.17 0.727974 0.700185 62.4 MiB -1 0.45 3 +hard_fpu_arch_timing.xml bgm.v common 7.32 vpr 66.50 MiB 0.09 8960 -1 -1 1 0.06 -1 -1 31548 -1 -1 0 257 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68092 257 32 1281 693 1 861 298 38 38 1444 block_FPU auto 27.5 MiB 1.16 16522 99798 44225 55105 468 66.5 MiB 2.09 0.02 2.985 -3185.75 -2.985 2.985 0.00 0.0163994 0.0158581 1.68623 1.6313 22762 26.4674 5833 6.78256 1476 2064 1080688 230994 2.90196e+06 309448 3.35777e+06 2325.33 6 79768 674274 -1 2.985 2.985 -3345.27 -2.985 -44.0704 -0.0851 1.36 -1 -1 66.5 MiB 0.55 1.97993 1.91753 66.5 MiB -1 1.25 9 +hard_fpu_arch_timing.xml dscg.v common 9.89 vpr 62.29 MiB 0.05 7196 -1 -1 1 0.06 -1 -1 31120 -1 -1 0 129 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 129 64 769 585 1 438 197 30 30 900 block_FPU auto 23.5 MiB 6.56 6049 46610 19774 26513 323 62.3 MiB 0.78 0.01 2.985 -1429.54 -2.985 2.985 0.00 0.00752857 0.00722714 0.624964 0.600088 8579 19.6316 2232 5.10755 679 809 410931 90713 1.6779e+06 137533 2.03108e+06 2256.75 4 48532 406344 -1 2.985 2.985 -1485.8 -2.985 -28.1681 -0.0851 0.84 -1 -1 62.3 MiB 0.19 0.729083 0.700795 62.3 MiB -1 0.73 4 +hard_fpu_arch_timing.xml fir.v common 57.40 vpr 62.87 MiB 0.06 7616 -1 -1 1 0.06 -1 -1 31352 -1 -1 28 161 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 161 32 993 808 1 515 225 30 30 900 block_FPU auto 23.7 MiB 53.91 6735 58365 23997 33194 1174 62.9 MiB 0.83 0.01 2.985 -1375.04 -2.985 2.985 0.00 0.00723697 0.00689036 0.632448 0.602154 9598 18.6732 2539 4.93969 850 1033 535877 116345 1.6779e+06 201714 2.03108e+06 2256.75 7 48532 406344 -1 2.985 2.985 -1451.27 -2.985 -40.9671 -0.0851 0.85 -1 -1 62.9 MiB 0.26 0.773667 0.737616 62.9 MiB -1 0.73 4 +hard_fpu_arch_timing.xml mm3.v common 3.90 vpr 60.56 MiB 0.04 6828 -1 -1 1 0.04 -1 -1 30604 -1 -1 0 193 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62012 193 32 545 422 1 289 227 21 21 441 io auto 22.0 MiB 1.92 3480 45207 19008 25799 400 60.6 MiB 0.45 0.01 2.985 -824.702 -2.985 2.985 0.00 0.00499164 0.00480908 0.336809 0.324626 4551 15.8021 1192 4.13889 400 400 194592 43581 809148 68766.3 979092. 2220.16 4 24050 197379 -1 2.985 2.985 -811.598 -2.985 -21.7856 -0.0851 0.43 -1 -1 60.6 MiB 0.11 0.404833 0.390442 60.6 MiB -1 0.34 2 +hard_fpu_arch_timing.xml ode.v common 56.49 vpr 64.68 MiB 0.06 8012 -1 -1 1 0.10 -1 -1 34068 -1 -1 135 130 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66228 130 72 1194 1103 1 573 339 19 19 361 io auto 25.2 MiB 53.93 4794 91276 29206 58307 3763 64.7 MiB 0.80 0.01 2.985 -1385.68 -2.985 2.985 0.00 0.0067648 0.00635986 0.538663 0.506206 6805 11.8969 1780 3.11189 1273 1397 405829 81804 653279 378215 795482. 2203.55 9 19802 160939 -1 2.985 2.985 -1384.18 -2.985 -52.6319 -0.0851 0.36 -1 -1 64.7 MiB 0.24 0.695262 0.654681 64.7 MiB -1 0.27 2 +hard_fpu_arch_timing.xml syn2.v common 5.41 vpr 61.97 MiB 0.06 7400 -1 -1 1 0.04 -1 -1 30732 -1 -1 0 161 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63456 161 128 641 490 1 475 293 30 30 900 block_FPU auto 23.2 MiB 1.84 7788 82913 36084 46392 437 62.0 MiB 0.98 0.01 2.985 -1564.05 -2.985 2.985 0.00 0.00836211 0.00808883 0.729693 0.705711 10286 21.7004 2724 5.74684 792 992 508821 108959 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -1586.47 -2.985 -16.4184 -0.0851 0.85 -1 -1 62.0 MiB 0.24 0.860584 0.83302 62.0 MiB -1 0.73 4 +hard_fpu_arch_timing.xml syn7.v common 16.79 vpr 112.52 MiB 0.13 9896 -1 -1 1 0.08 -1 -1 32560 -1 -1 0 161 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 115216 161 128 1921 499 1 1728 310 54 54 2916 block_FPU auto 37.0 MiB 2.60 46119 121878 61470 59985 423 112.5 MiB 5.38 0.04 2.985 -8198.94 -2.985 2.985 0.00 0.0373253 0.0362774 4.41941 4.29869 62568 36.2293 15926 9.22177 4142 7176 4439104 909795 6.08571e+06 722046 6.89978e+06 2366.18 7 161598 1383069 -1 2.985 2.985 -8701.55 -2.985 -33.0188 -0.0851 2.79 -1 -1 112.5 MiB 1.75 5.1621 5.02634 112.5 MiB -1 2.86 21 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..c1dc0afb50f 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 14.52 vpr 67.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 477 14 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68932 14 8 1536 1544 0 1088 499 24 24 576 clb auto 27.1 MiB 0.35 13713 125113 37636 85702 1775 67.3 MiB 0.82 0.01 14.0421 -101.788 -14.0421 nan 0.88 0.00340676 0.00297335 0.220724 0.194701 28 19990 27 1.452e+07 1.431e+07 -1 -1 8.80 1.43324 1.22449 21174 279108 -1 19228 18 7062 27087 2139856 196285 17.1451 nan -119.753 -17.1451 0 0 -1 -1 0.36 0.64 0.11 -1 -1 0.36 0.169385 0.148762 +k4_n4_v7_bidir.xml apex2.blif common 19.55 vpr 69.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 598 38 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71412 38 3 1916 1919 0 1508 639 27 27 729 clb auto 29.5 MiB 0.46 20032 176703 52353 120171 4179 69.7 MiB 1.17 0.02 17.5139 -50.2777 -17.5139 nan 1.14 0.00428497 0.00372011 0.294754 0.259072 31 29578 36 1.875e+07 1.794e+07 -1 -1 11.86 1.65593 1.41284 28210 394495 -1 28636 22 10688 37557 3476301 294242 20.8295 nan -58.5593 -20.8295 0 0 -1 -1 0.53 0.86 0.22 -1 -1 0.53 0.210655 0.183088 +k4_n4_v7_bidir.xml apex4.blif common 15.42 vpr 64.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 410 9 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66300 9 19 1271 1290 0 989 438 23 23 529 clb auto 25.2 MiB 0.29 13508 95172 26074 67665 1433 64.7 MiB 0.66 0.01 13.1269 -216.571 -13.1269 nan 0.80 0.00325679 0.00287804 0.181063 0.1619 31 20275 34 1.323e+07 1.23e+07 -1 -1 10.27 1.09839 0.94276 20514 283063 -1 18947 16 6713 24480 2299733 193456 16.0497 nan -259.266 -16.0497 0 0 -1 -1 0.37 0.53 0.16 -1 -1 0.37 0.115239 0.101806 +k4_n4_v7_bidir.xml bigkey.blif common 19.25 vpr 69.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71664 229 197 2152 2349 1 1587 882 29 29 841 io auto 29.8 MiB 0.36 12720 440594 137247 291517 11830 70.0 MiB 2.20 0.02 8.05109 -1841.77 -8.05109 8.05109 1.37 0.00584226 0.00532726 0.627252 0.568287 18 20694 46 2.187e+07 1.368e+07 -1 -1 10.54 2.27102 2.02291 25794 279159 -1 18007 20 8342 23483 1514225 162064 9.13231 9.13231 -2338.69 -9.13231 0 0 -1 -1 0.39 0.62 0.17 -1 -1 0.39 0.262696 0.236148 +k4_n4_v7_bidir.xml clma.blif common 121.07 vpr 199.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2521 62 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 204792 62 82 8460 8542 1 6346 2665 53 53 2809 clb auto 74.7 MiB 2.08 106112 1720282 687942 1019943 12397 191.2 MiB 12.49 0.13 27.7798 -1475.05 -27.7798 27.7798 5.56 0.0213278 0.0174452 2.08533 1.73374 39 139827 30 7.803e+07 7.563e+07 -1 -1 73.63 7.92547 6.52265 121914 1953961 -1 145653 37 50338 174644 40465788 3496071 37.5154 37.5154 -1994.17 -37.5154 0 0 -1 -1 3.11 8.46 1.14 -1 -1 3.11 1.52051 1.28682 +k4_n4_v7_bidir.xml des.blif common 21.28 vpr 73.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75544 256 245 1847 2092 0 1443 950 34 34 1156 io auto 28.4 MiB 0.43 15858 337046 106006 219615 11425 73.8 MiB 1.65 0.02 13.6482 -2283.71 -13.6482 nan 1.99 0.00648598 0.00594296 0.497615 0.45766 18 23829 44 3.072e+07 1.347e+07 -1 -1 10.92 2.22724 2.02508 35364 387024 -1 21475 27 8540 28313 2203704 220439 16.6899 nan -2838.96 -16.6899 0 0 -1 -1 0.56 0.81 0.23 -1 -1 0.56 0.355272 0.325334 +k4_n4_v7_bidir.xml diffeq.blif common 11.18 vpr 67.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 415 64 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69348 64 39 1935 1974 1 1102 518 23 23 529 clb auto 28.1 MiB 0.20 9992 137732 37830 95961 3941 67.7 MiB 0.64 0.01 13.4033 -2671.54 -13.4033 13.4033 0.70 0.00195077 0.00171362 0.173386 0.151149 24 14332 21 1.323e+07 1.245e+07 -1 -1 6.54 1.33161 1.13731 18402 227975 -1 13634 22 6342 21307 1309693 133684 15.9009 15.9009 -3236.59 -15.9009 0 0 -1 -1 0.30 0.48 0.13 -1 -1 0.30 0.194956 0.169766 +k4_n4_v7_bidir.xml dsip.blif common 17.59 vpr 67.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69036 229 197 1815 2012 1 1190 816 29 29 841 io auto 27.7 MiB 0.36 11545 347617 108721 229249 9647 67.4 MiB 1.72 0.02 7.21771 -1868.83 -7.21771 7.21771 1.36 0.00518736 0.00474124 0.503797 0.459535 18 18641 50 2.187e+07 1.17e+07 -1 -1 9.53 1.95931 1.76098 25794 279159 -1 15915 19 6571 20190 1355499 141050 8.71824 8.71824 -2334.27 -8.71824 0 0 -1 -1 0.39 0.52 0.17 -1 -1 0.39 0.217752 0.196801 +k4_n4_v7_bidir.xml elliptic.blif common 54.70 vpr 91.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1000 131 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93304 131 114 4855 4969 1 2139 1245 34 34 1156 clb auto 44.4 MiB 0.79 31454 550235 189587 353717 6931 90.2 MiB 3.41 0.04 23.2801 -11982.4 -23.2801 23.2801 2.01 0.010141 0.00905418 0.925631 0.794487 29 50282 41 3.072e+07 3e+07 -1 -1 39.20 4.20246 3.55627 43448 604980 -1 46002 25 13205 58637 9554007 846071 38.8565 38.8565 -19809.8 -38.8565 0 0 -1 -1 0.86 2.29 0.35 -1 -1 0.86 0.557354 0.484129 +k4_n4_v7_bidir.xml ex1010.blif common 70.23 vpr 117.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1507 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 120424 10 10 4608 4618 0 3617 1527 41 41 1681 clb auto 48.8 MiB 1.07 44970 713436 251975 459721 1740 117.6 MiB 5.30 0.06 23.5124 -229.462 -23.5124 nan 3.51 0.00978634 0.00856467 0.959665 0.808442 28 68638 30 4.563e+07 4.521e+07 -1 -1 48.39 4.23166 3.50982 61362 838935 -1 63940 21 25222 100656 7392341 708511 28.5457 nan -270.488 -28.5457 0 0 -1 -1 1.24 2.14 0.48 -1 -1 1.24 0.496082 0.429934 +k4_n4_v7_bidir.xml ex5p.blif common 10.49 vpr 63.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 342 8 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 8 63 1072 1135 0 906 413 21 21 441 clb auto 24.4 MiB 0.27 11449 84948 23521 59664 1763 63.8 MiB 0.57 0.01 12.8622 -575.489 -12.8622 nan 0.65 0.00267296 0.002391 0.164293 0.14837 35 17128 25 1.083e+07 1.026e+07 -1 -1 5.53 0.944809 0.816405 18442 269153 -1 17835 36 8694 28272 4470817 400190 22.7431 nan -871.031 -22.7431 0 0 -1 -1 0.35 0.94 0.15 -1 -1 0.35 0.197932 0.171417 +k4_n4_v7_bidir.xml frisc.blif common 42.28 vpr 94.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1051 20 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96376 20 116 4445 4561 1 2326 1187 35 35 1225 clb auto 43.5 MiB 0.91 37678 522593 180255 332319 10019 91.3 MiB 3.70 0.04 26.7351 -13400.3 -26.7351 26.7351 2.13 0.0113884 0.0102634 1.05553 0.917006 35 54338 28 3.267e+07 3.153e+07 -1 -1 23.99 3.89706 3.31921 50922 772933 -1 56811 45 18725 83358 16216109 1534592 31.802 31.802 -18151.6 -31.802 0 0 -1 -1 1.14 3.93 0.43 -1 -1 1.14 0.946928 0.809332 +k4_n4_v7_bidir.xml misex3.blif common 18.39 vpr 65.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 431 14 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67280 14 14 1411 1425 0 1079 459 23 23 529 clb auto 26.1 MiB 0.35 13374 101292 28145 71403 1744 65.7 MiB 0.68 0.01 13.1746 -165.157 -13.1746 nan 0.79 0.00308017 0.00269815 0.185612 0.164664 29 21582 50 1.323e+07 1.293e+07 -1 -1 12.84 1.39305 1.18429 19986 270173 -1 20352 22 8774 29285 3704651 332778 24.3868 nan -237.829 -24.3868 0 0 -1 -1 0.36 0.79 0.18 -1 -1 0.36 0.159923 0.139167 +k4_n4_v7_bidir.xml pdc.blif common 88.58 vpr 128.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1534 16 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 131112 16 40 4591 4631 0 3629 1590 42 42 1764 clb auto 50.1 MiB 1.37 69656 771498 279852 487559 4087 122.3 MiB 5.40 0.06 21.5017 -765.92 -21.5017 nan 3.47 0.0110651 0.0091201 1.01798 0.855527 43 105542 40 4.8e+07 4.602e+07 -1 -1 63.87 4.74992 3.94718 82004 1356368 -1 93688 22 24061 102167 12513613 966499 27.3055 nan -968.887 -27.3055 0 0 -1 -1 2.14 3.03 0.81 -1 -1 2.14 0.568607 0.48931 +k4_n4_v7_bidir.xml s298.blif common 21.48 vpr 70.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 560 4 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71860 4 6 1942 1948 1 1191 570 26 26 676 clb auto 29.6 MiB 0.36 14088 144652 40631 103074 947 70.2 MiB 0.98 0.02 22.0836 -173.078 -22.0836 22.0836 1.07 0.00435166 0.00383058 0.306341 0.272726 24 20876 31 1.728e+07 1.68e+07 -1 -1 14.65 1.76351 1.50458 23472 293888 -1 19701 18 6999 36928 2660713 235221 25.651 25.651 -206.277 -25.651 0 0 -1 -1 0.40 0.74 0.17 -1 -1 0.40 0.196059 0.171883 +k4_n4_v7_bidir.xml s38417.blif common 63.45 vpr 143.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1733 29 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 146728 29 106 7534 7640 1 4762 1868 44 44 1936 clb auto 62.1 MiB 1.31 45565 1025279 365918 643209 16152 143.3 MiB 7.30 0.08 18.085 -10617.5 -18.085 18.085 3.56 0.0169315 0.0140952 1.55735 1.31338 24 61471 26 5.292e+07 5.199e+07 -1 -1 37.57 6.21572 5.16313 66744 864380 -1 58433 19 27083 89331 5592291 571595 20.8628 20.8628 -13144.4 -20.8628 0 0 -1 -1 1.32 2.02 0.50 -1 -1 1.32 0.732256 0.629929 +k4_n4_v7_bidir.xml s38584.1.blif common 50.46 vpr 141.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1648 38 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 145080 38 304 7475 7779 1 4417 1990 43 43 1849 clb auto 61.7 MiB 1.26 43646 1140582 418967 699450 22165 140.5 MiB 7.38 0.09 12.4934 -8495.56 -12.4934 12.4934 3.38 0.0150067 0.0131606 1.52739 1.2773 24 56870 27 5.043e+07 4.944e+07 -1 -1 25.70 5.12306 4.27883 63762 824815 -1 53639 17 21182 66620 4051433 421817 14.8518 14.8518 -10248.4 -14.8518 0 0 -1 -1 1.27 1.59 0.47 -1 -1 1.27 0.665362 0.586368 +k4_n4_v7_bidir.xml seq.blif common 28.14 vpr 68.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 542 41 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70256 41 35 1791 1826 0 1384 618 26 26 676 clb auto 28.5 MiB 0.42 18072 171633 50023 117007 4603 68.6 MiB 1.09 0.02 13.9875 -383.03 -13.9875 nan 1.05 0.00406674 0.0035441 0.282529 0.248892 29 29664 48 1.728e+07 1.626e+07 -1 -1 20.69 1.70004 1.45141 25496 348308 -1 26718 36 10628 36259 4935084 432315 17.9011 nan -503.215 -17.9011 0 0 -1 -1 0.47 1.19 0.20 -1 -1 0.47 0.29385 0.254283 +k4_n4_v7_bidir.xml spla.blif common 60.14 vpr 102.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1235 16 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105324 16 46 3706 3752 0 2877 1297 38 38 1444 clb auto 42.6 MiB 1.00 47749 581037 208352 367672 5013 99.7 MiB 4.02 0.05 20.3447 -680.522 -20.3447 nan 2.66 0.00897328 0.00752369 0.782658 0.666952 39 70670 41 3.888e+07 3.705e+07 -1 -1 37.32 3.53579 2.9591 62858 992060 -1 76144 39 24431 104085 28248602 3041950 35.5685 nan -1147.95 -35.5685 0 0 -1 -1 1.54 6.13 0.58 -1 -1 1.54 0.802614 0.68267 +k4_n4_v7_bidir.xml tseng.blif common 6.88 vpr 63.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 277 52 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 52 122 1483 1605 1 737 451 19 19 361 clb auto 24.7 MiB 0.22 5974 102403 26155 72807 3441 63.9 MiB 0.62 0.01 12.4944 -2327.14 -12.4944 12.4944 0.52 0.0032612 0.00294195 0.216871 0.194716 20 10097 45 8.67e+06 8.31e+06 -1 -1 2.98 0.752553 0.656309 11514 125901 -1 9941 31 5221 17602 1464836 167257 18.1334 18.1334 -3640.61 -18.1334 0 0 -1 -1 0.16 0.48 0.07 -1 -1 0.16 0.199281 0.174008 +k4_n4_v7_l1_bidir.xml alu4.blif common 16.87 vpr 67.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 477 14 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68924 14 8 1536 1544 0 1088 499 24 24 576 clb auto 27.0 MiB 0.36 13984 140937 45113 93822 2002 67.3 MiB 0.92 0.01 19.0754 -137.015 -19.0754 nan 1.41 0.00317104 0.00278685 0.248821 0.219987 21 15543 38 1.452e+07 1.431e+07 -1 -1 9.28 1.07423 0.920056 39160 271852 -1 13921 16 7054 27883 1712984 292201 19.0623 nan -136.352 -19.0623 0 0 -1 -1 0.45 0.64 0.21 -1 -1 0.45 0.136875 0.120433 +k4_n4_v7_l1_bidir.xml apex2.blif common 51.18 vpr 71.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 598 38 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73176 38 3 1916 1919 0 1508 639 27 27 729 clb auto 29.3 MiB 0.46 20368 198711 63540 130621 4550 71.0 MiB 1.37 0.02 19.5349 -56.7155 -19.5349 nan 1.90 0.00499172 0.00433287 0.356682 0.312799 25 22646 41 1.875e+07 1.794e+07 -1 -1 40.82 1.72562 1.46927 55250 396047 -1 20496 14 9800 35327 3055493 423988 19.5858 nan -57.7976 -19.5858 0 0 -1 -1 0.70 0.99 0.30 -1 -1 0.70 0.174437 0.154972 +k4_n4_v7_l1_bidir.xml apex4.blif common 69.35 vpr 64.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 410 9 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66464 9 19 1271 1290 0 989 438 23 23 529 clb auto 25.4 MiB 0.30 13593 111792 33269 76922 1601 64.9 MiB 0.78 0.01 17.4441 -280.025 -17.4441 nan 1.27 0.00308454 0.00270303 0.211618 0.188442 24 16307 44 1.323e+07 1.23e+07 -1 -1 62.47 1.11099 0.948655 39522 283015 -1 14011 17 7335 26794 2589120 339808 17.324 nan -281.605 -17.324 0 0 -1 -1 0.47 0.71 0.21 -1 -1 0.47 0.122417 0.107876 +k4_n4_v7_l1_bidir.xml bigkey.blif common 20.31 vpr 78.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80860 229 197 2152 2349 1 1587 882 29 29 841 io auto 29.8 MiB 0.34 12928 449050 142972 294362 11716 78.5 MiB 2.25 0.03 10.9343 -2508.89 -10.9343 10.9343 2.25 0.00619758 0.00563126 0.659335 0.597307 13 13251 38 2.187e+07 1.368e+07 -1 -1 9.18 1.92903 1.72083 39906 235943 -1 11958 14 7356 20700 1195443 240334 11.7389 11.7389 -2706.25 -11.7389 0 0 -1 -1 0.42 0.55 0.18 -1 -1 0.42 0.186548 0.168126 +k4_n4_v7_l1_bidir.xml clma.blif common 295.38 vpr 251.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2521 62 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 257156 62 82 8460 8542 1 6346 2665 53 53 2809 clb auto 74.9 MiB 2.10 103093 1868034 747801 1104381 15852 216.8 MiB 13.21 0.13 39.2492 -2176.87 -39.2492 39.2492 8.76 0.020248 0.0169531 2.18974 1.83464 32 104222 33 7.803e+07 7.563e+07 -1 -1 238.47 8.89424 7.31525 274482 2081397 -1 100635 17 42461 160041 22532310 4050975 39.0294 39.0294 -2247.27 -39.0294 0 0 -1 -1 4.07 6.31 1.61 -1 -1 4.07 0.829679 0.720616 +k4_n4_v7_l1_bidir.xml des.blif common 28.48 vpr 92.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94616 256 245 1847 2092 0 1443 950 34 34 1156 io auto 28.5 MiB 0.43 15906 393062 127116 252345 13601 92.3 MiB 1.89 0.02 20.3995 -3028.52 -20.3995 nan 3.28 0.00647798 0.00595245 0.567757 0.522686 13 16286 26 3.072e+07 1.347e+07 -1 -1 14.15 1.73168 1.58305 55296 328128 -1 15494 14 7727 25523 2266674 423135 19.7011 nan -3078.13 -19.7011 0 0 -1 -1 0.60 0.76 0.26 -1 -1 0.60 0.214079 0.197543 +k4_n4_v7_l1_bidir.xml diffeq.blif common 16.76 vpr 67.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 415 64 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69096 64 39 1935 1974 1 1102 518 23 23 529 clb auto 27.8 MiB 0.30 10492 141890 39582 99524 2784 67.5 MiB 0.95 0.01 13.2324 -3140.42 -13.2324 13.2324 1.30 0.00428442 0.00377229 0.310189 0.275246 17 11013 39 1.323e+07 1.245e+07 -1 -1 9.66 1.24993 1.07757 30282 197837 -1 10183 17 7161 24290 2102474 387542 13.998 13.998 -3530.12 -13.998 0 0 -1 -1 0.34 0.67 0.16 -1 -1 0.34 0.165983 0.145379 +k4_n4_v7_l1_bidir.xml dsip.blif common 18.54 vpr 76.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78564 229 197 1815 2012 1 1190 816 29 29 841 io auto 27.7 MiB 0.36 11598 374294 119751 244235 10308 76.7 MiB 1.82 0.02 10.0144 -2422.01 -10.0144 10.0144 2.29 0.00520405 0.00475642 0.52443 0.479328 13 11442 27 2.187e+07 1.17e+07 -1 -1 7.79 1.50771 1.35951 39906 235943 -1 11038 14 6322 21798 1233985 243124 9.72035 9.72035 -2465.43 -9.72035 0 0 -1 -1 0.42 0.66 0.18 -1 -1 0.42 0.198271 0.178185 +k4_n4_v7_l1_bidir.xml elliptic.blif common 98.15 vpr 110.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1000 131 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 112940 131 114 4855 4969 1 2139 1245 34 34 1156 clb auto 44.5 MiB 0.79 31868 570320 201737 361297 7286 110.3 MiB 3.57 0.04 27.5367 -15528.6 -27.5367 27.5367 3.29 0.0104306 0.00892054 0.976469 0.833552 25 34137 34 3.072e+07 3e+07 -1 -1 78.65 3.89118 3.28556 89088 639360 -1 31463 15 11772 53132 5712872 950004 27.6157 27.6157 -16433.5 -27.6157 0 0 -1 -1 1.23 1.85 0.49 -1 -1 1.23 0.39125 0.341849 +k4_n4_v7_l1_bidir.xml ex1010.blif common 71.67 vpr 151.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1507 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 155408 10 10 4608 4618 0 3617 1527 41 41 1681 clb auto 48.9 MiB 1.07 45297 766170 281250 482628 2292 151.8 MiB 5.45 0.06 34.262 -331.976 -34.262 nan 5.04 0.00963191 0.00816752 0.930825 0.785451 22 50207 44 4.563e+07 4.521e+07 -1 -1 43.49 3.63109 3.0162 118482 826103 -1 45736 19 25518 101876 6500789 1048212 33.9643 nan -327.132 -33.9643 0 0 -1 -1 1.66 2.58 0.63 -1 -1 1.66 0.470549 0.405468 +k4_n4_v7_l1_bidir.xml ex5p.blif common 43.85 vpr 63.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 342 8 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 8 63 1072 1135 0 906 413 21 21 441 clb auto 24.1 MiB 0.26 11525 103392 30541 70852 1999 63.4 MiB 0.69 0.01 15.3987 -683.467 -15.3987 nan 1.06 0.00261368 0.00235266 0.20124 0.182091 24 13975 43 1.083e+07 1.026e+07 -1 -1 37.84 0.995808 0.86131 32642 233591 -1 11974 18 7588 26729 2496486 384914 15.4966 nan -702.501 -15.4966 0 0 -1 -1 0.36 0.69 0.18 -1 -1 0.36 0.115491 0.10147 +k4_n4_v7_l1_bidir.xml frisc.blif common 210.45 vpr 113.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1051 20 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 116604 20 116 4445 4561 1 2326 1187 35 35 1225 clb auto 43.4 MiB 0.91 38041 547721 194194 343617 9910 113.8 MiB 3.69 0.04 29.669 -17468.6 -29.669 29.669 3.49 0.0103715 0.00892858 0.960993 0.82812 28 41548 42 3.267e+07 3.153e+07 -1 -1 189.64 4.23264 3.58239 103554 761463 -1 38134 16 14316 62718 7007768 1275611 29.914 29.914 -18147.8 -29.914 0 0 -1 -1 1.40 2.14 0.57 -1 -1 1.40 0.377933 0.32975 +k4_n4_v7_l1_bidir.xml misex3.blif common 27.11 vpr 65.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 431 14 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67184 14 14 1411 1425 0 1079 459 23 23 529 clb auto 26.0 MiB 0.34 13570 115444 35365 77921 2158 65.6 MiB 0.79 0.01 16.5481 -214.047 -16.5481 nan 1.29 0.00324875 0.00287194 0.223926 0.1991 23 16411 49 1.323e+07 1.293e+07 -1 -1 19.87 1.26427 1.07464 37674 266685 -1 14120 17 7506 27271 2802281 504310 16.6457 nan -222.192 -16.6457 0 0 -1 -1 0.47 0.79 0.20 -1 -1 0.47 0.135179 0.118734 +k4_n4_v7_l1_bidir.xml pdc.blif common 420.17 vpr 157.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1534 16 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 161364 16 40 4591 4631 0 3629 1590 42 42 1764 clb auto 50.0 MiB 1.34 68418 892086 346558 540595 4933 151.1 MiB 6.18 0.06 36.7881 -1303.9 -36.7881 nan 5.26 0.0110325 0.00925033 1.11525 0.942154 36 77639 35 4.8e+07 4.602e+07 -1 -1 385.28 4.75552 3.94475 183520 1412616 -1 72478 20 26645 109578 24577553 5074635 37.3294 nan -1337.86 -37.3294 0 0 -1 -1 2.58 5.98 1.09 -1 -1 2.58 0.511208 0.442439 +k4_n4_v7_l1_bidir.xml s298.blif common 28.76 vpr 70.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 560 4 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71820 4 6 1942 1948 1 1191 570 26 26 676 clb auto 29.5 MiB 0.36 13678 163548 49020 113454 1074 70.1 MiB 1.11 0.02 27.2823 -210.916 -27.2823 27.2823 1.71 0.00469886 0.00415821 0.346595 0.308277 18 15471 48 1.728e+07 1.68e+07 -1 -1 19.66 1.55142 1.32883 41472 276960 -1 13523 17 7420 36189 2499380 342718 27.1897 27.1897 -216.357 -27.1897 0 0 -1 -1 0.48 0.90 0.21 -1 -1 0.48 0.198357 0.173055 +k4_n4_v7_l1_bidir.xml s38417.blif common 62.49 vpr 176.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1733 29 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 180624 29 106 7534 7640 1 4762 1868 44 44 1936 clb auto 62.2 MiB 1.33 45056 1071275 385192 670718 15365 176.4 MiB 7.62 0.08 22.5444 -13519.5 -22.5444 22.5444 5.82 0.0159516 0.0133216 1.59274 1.33689 17 41539 30 5.292e+07 5.199e+07 -1 -1 28.36 4.79041 3.98611 115248 760028 -1 40571 17 28994 95236 7408027 1333632 22.6581 22.6581 -14950.1 -22.6581 0 0 -1 -1 1.54 3.04 0.59 -1 -1 1.54 0.807421 0.703193 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 95.63 vpr 176.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1648 38 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 180624 38 304 7475 7779 1 4417 1990 43 43 1849 clb auto 61.6 MiB 1.27 43720 1178118 437684 717506 22928 176.4 MiB 7.69 0.11 18.7815 -12464.4 -18.7815 18.7815 5.67 0.015947 0.0131776 1.58097 1.32446 18 41129 48 5.043e+07 4.944e+07 -1 -1 63.63 5.34049 4.46317 116850 784767 -1 37715 14 19654 59701 3392358 579896 18.1779 18.1779 -12910.9 -18.1779 0 0 -1 -1 1.57 1.65 0.60 -1 -1 1.57 0.585962 0.515997 +k4_n4_v7_l1_bidir.xml seq.blif common 86.99 vpr 68.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 542 41 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70216 41 35 1791 1826 0 1384 618 26 26 676 clb auto 28.5 MiB 0.41 18388 197943 61665 130902 5376 68.6 MiB 1.26 0.02 18.3637 -488.934 -18.3637 nan 1.71 0.00414045 0.00363378 0.326005 0.287224 24 21148 41 1.728e+07 1.626e+07 -1 -1 77.64 1.7189 1.46837 51072 366016 -1 18609 14 8765 31217 2658871 391227 18.2272 nan -500.696 -18.2272 0 0 -1 -1 0.63 0.82 0.28 -1 -1 0.63 0.15011 0.133262 +k4_n4_v7_l1_bidir.xml spla.blif common 293.24 vpr 127.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1235 16 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 130344 16 46 3706 3752 0 2877 1297 38 38 1444 clb auto 42.6 MiB 1.01 49708 630527 232378 394740 3409 127.1 MiB 4.18 0.04 28.3135 -974.196 -28.3135 nan 4.26 0.00869468 0.00739653 0.825655 0.703072 32 56984 38 3.888e+07 3.705e+07 -1 -1 266.53 3.77172 3.14753 138672 1051752 -1 53100 26 23199 100609 16532905 3013044 29.7405 nan -1062.74 -29.7405 0 0 -1 -1 1.94 4.38 0.81 -1 -1 1.94 0.497609 0.425408 +k4_n4_v7_l1_bidir.xml tseng.blif common 9.58 vpr 64.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 277 52 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65752 52 122 1483 1605 1 737 451 19 19 361 clb auto 25.0 MiB 0.24 5983 109315 29948 75773 3594 64.2 MiB 0.67 0.01 11.3287 -2602.86 -11.3287 11.3287 0.81 0.00359464 0.00323468 0.225049 0.202109 15 7018 46 8.67e+06 8.31e+06 -1 -1 4.83 0.945498 0.824027 19074 119991 -1 5647 17 4142 14252 649546 124293 11.3704 11.3704 -2847.23 -11.3704 0 0 -1 -1 0.19 0.32 0.09 -1 -1 0.19 0.130161 0.114972 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_multiclock_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_multiclock_mcnc/config/golden_results.txt index 7ae0d06bec0..8308ae3e0d1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_multiclock_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_multiclock_mcnc/config/golden_results.txt @@ -1,11 +1,11 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_40nm.xml bigkey.blif common 11.46 vpr 65.31 MiB -1 -1 -1 -1 3 0.86 -1 -1 38812 -1 -1 53 229 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 66880 229 197 1023 1220 1 510 479 16 16 256 io auto 27.2 MiB 0.59 3590 65.3 MiB 1.17 0.02 2.09742 -520.234 -2.09742 2.09742 1.27 0.00492816 0.00451266 0.461537 0.422191 38 6231 19 1.05632e+07 2.85638e+06 667532. 2607.55 3.73 1.54878 1.40362 25328 137766 -1 5709 10 1328 2368 138222 31100 0 0 138222 31100 2368 1614 0 0 4701 4003 0 0 5157 4706 0 0 2558 1758 0 0 62477 9413 0 0 60961 9606 0 0 2368 0 0 1070 6673 5385 55940 0 0 2.53491 2.53491 -631.681 -2.53491 0 0 843755. 3295.92 0.51 0.20 0.20 -1 -1 0.51 0.16128 0.150593 -k6_frac_N10_40nm.xml clma.blif common 14.47 vpr 62.48 MiB -1 -1 -1 -1 7 5.29 -1 -1 42952 -1 -1 77 36 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 63980 36 82 542 624 1 390 195 11 11 121 clb auto 24.3 MiB 0.91 2049 62.5 MiB 0.44 0.01 4.12702 -139.772 -4.12702 4.12702 0.52 0.00216006 0.00196032 0.173793 0.157251 44 4797 45 4.36541e+06 4.14984e+06 327165. 2703.84 4.45 0.877457 0.759692 11931 67129 -1 3777 15 1843 5931 190117 40134 0 0 190117 40134 5931 3429 0 0 7949 6338 0 0 10939 7949 0 0 6523 4082 0 0 78080 9369 0 0 80695 8967 0 0 5931 0 0 4134 9645 10150 70826 0 0 4.69873 4.69873 -170.335 -4.69873 0 0 426099. 3521.48 0.23 0.17 0.10 -1 -1 0.23 0.101346 0.0928774 -k6_frac_N10_40nm.xml diffeq.blif common 7.20 vpr 64.22 MiB -1 -1 -1 -1 8 0.93 -1 -1 38236 -1 -1 51 64 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 65764 64 39 941 980 1 450 154 10 10 100 clb auto 26.4 MiB 1.13 2676 64.2 MiB 0.36 0.01 4.29927 -776.73 -4.29927 4.29927 0.40 0.00321074 0.00286812 0.173623 0.155105 46 4588 16 3.44922e+06 2.74859e+06 276332. 2763.32 1.95 0.727075 0.631216 9816 55112 -1 4229 15 1767 5248 152494 32440 0 0 152494 32440 5248 2535 0 0 7137 5611 0 0 9484 7140 0 0 5564 2892 0 0 62251 7513 0 0 62810 6749 0 0 5248 0 0 3586 10609 10982 91545 0 0 5.1527 5.1527 -909.086 -5.1527 0 0 354105. 3541.05 0.18 0.21 0.08 -1 -1 0.18 0.151545 0.137766 -k6_frac_N10_40nm.xml dsip.blif common 14.25 vpr 66.50 MiB -1 -1 -1 -1 3 0.73 -1 -1 38612 -1 -1 68 229 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 68092 229 197 1135 1332 1 648 494 16 16 256 io auto 28.6 MiB 1.44 4921 66.5 MiB 1.48 0.02 2.05678 -537.964 -2.05678 2.05678 1.28 0.00525431 0.00468849 0.524281 0.474876 36 8990 21 1.05632e+07 3.66479e+06 638738. 2495.07 5.17 1.7987 1.61775 24820 128426 -1 8106 12 2276 5612 323677 69139 0 0 323677 69139 5448 3394 0 0 10371 8599 0 0 12155 10399 0 0 5830 3831 0 0 142856 21791 0 0 147017 21125 0 0 5448 0 0 3238 15203 16651 151622 218 0 2.59846 2.59846 -678.186 -2.59846 0 0 786978. 3074.13 0.49 0.32 0.19 -1 -1 0.49 0.210887 0.196971 -k6_frac_N10_40nm.xml elliptic.blif common 22.46 vpr 74.61 MiB -1 -1 -1 -1 10 3.10 -1 -1 42656 -1 -1 133 131 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 76396 131 114 2471 2585 1 967 378 14 14 196 clb auto 37.2 MiB 4.97 9202 74.6 MiB 1.50 0.03 6.00251 -3050.7 -6.00251 6.00251 0.94 0.00751535 0.00641286 0.554648 0.480006 64 16031 41 7.76074e+06 7.1679e+06 810706. 4136.26 6.46 2.14675 1.84445 22444 164128 -1 14254 16 4284 17997 698961 120654 0 0 698961 120654 17066 7258 0 0 25001 19375 0 0 34099 25020 0 0 18166 8310 0 0 300915 30177 0 0 303714 30514 0 0 17066 0 0 13082 66929 65737 404826 1037 94 7.04139 7.04139 -3672.36 -7.04139 0 0 1.00880e+06 5146.95 0.54 0.62 0.25 -1 -1 0.54 0.393508 0.357713 -k6_frac_N10_40nm.xml frisc.blif common 37.77 vpr 76.35 MiB -1 -1 -1 -1 12 4.82 -1 -1 42752 -1 -1 153 20 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 78184 20 116 2477 2593 1 1097 289 15 15 225 clb auto 39.2 MiB 5.63 13235 76.4 MiB 1.47 0.02 7.08157 -3353.27 -7.08157 7.08157 1.11 0.00794004 0.00700153 0.551404 0.478135 80 22726 42 9.10809e+06 8.24578e+06 1.12687e+06 5008.33 18.36 3.56184 3.03023 28171 234221 -1 19580 15 5661 25029 1100753 177994 0 0 1100753 177994 23995 9704 0 0 32813 27187 0 0 46259 32841 0 0 25304 11230 0 0 476025 49351 0 0 496357 47681 0 0 23995 0 0 18691 91271 92310 563102 1202 36 8.34828 8.34828 -3982.46 -8.34828 0 0 1.41774e+06 6301.08 0.77 0.76 0.37 -1 -1 0.77 0.40617 0.369887 -k6_frac_N10_40nm.xml s298.blif common 8.34 vpr 64.21 MiB -1 -1 -1 -1 8 1.26 -1 -1 37836 -1 -1 62 4 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 65748 4 6 671 677 1 352 72 10 10 100 clb auto 26.2 MiB 1.49 3508 64.2 MiB 0.19 0.01 4.79301 -39.1818 -4.79301 4.79301 0.40 0.00279625 0.00242557 0.0994335 0.0892544 50 5642 44 3.44922e+06 3.34143e+06 295697. 2956.97 2.44 0.697 0.597728 10016 58256 -1 5050 17 2138 10782 337740 61219 0 0 337740 61219 10782 4866 0 0 13103 10921 0 0 18097 13103 0 0 11931 5592 0 0 139520 12944 0 0 144307 13793 0 0 10782 0 0 8939 35259 46626 395774 0 0 5.55589 5.55589 -47.4222 -5.55589 0 0 379824. 3798.24 0.19 0.27 0.09 -1 -1 0.19 0.153923 0.139866 -k6_frac_N10_40nm.xml s38417.blif common 34.37 vpr 80.55 MiB -1 -1 -1 -1 6 6.93 -1 -1 46012 -1 -1 178 29 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 82488 29 106 3450 3556 1 1206 313 16 16 256 clb auto 43.5 MiB 4.12 9735 80.6 MiB 1.73 0.02 4.1003 -2647.73 -4.1003 4.1003 1.27 0.00899333 0.00768075 0.752262 0.635499 50 16598 31 1.05632e+07 9.59313e+06 843755. 3295.92 13.35 4.02899 3.36676 27116 171776 -1 14184 14 5218 17339 563986 111457 0 0 563986 111457 15524 7988 0 0 23415 18806 0 0 29370 23441 0 0 16511 9004 0 0 238711 26535 0 0 240455 25683 0 0 15524 0 0 10410 37865 39613 194198 2271 446 4.90849 4.90849 -3063.34 -4.90849 0 0 1.08660e+06 4244.53 0.63 0.67 0.25 -1 -1 0.63 0.503619 0.458509 -k6_frac_N10_40nm.xml s38584.1.blif common 29.80 vpr 81.11 MiB -1 -1 -1 -1 6 4.96 -1 -1 44460 -1 -1 197 38 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 83060 38 304 3259 3563 1 1569 539 17 17 289 clb auto 44.3 MiB 5.30 10132 81.1 MiB 2.68 0.04 3.66766 -2189.34 -3.66766 3.66766 1.50 0.0102276 0.00849471 0.971617 0.824048 58 18045 29 1.21262e+07 1.06171e+07 1.11519e+06 3858.79 8.00 3.05253 2.60172 32499 230706 -1 16150 15 5235 13970 535313 110316 0 0 535313 110316 13542 7772 0 0 20688 17182 0 0 25956 20709 0 0 14450 9111 0 0 230671 27694 0 0 230006 27848 0 0 13542 0 0 8376 19501 21251 124362 466 104 4.52216 4.52216 -2592.43 -4.52216 0 0 1.41877e+06 4909.24 0.83 0.67 0.34 -1 -1 0.83 0.531316 0.482751 -k6_frac_N10_40nm.xml tseng.blif common 6.69 vpr 62.36 MiB -1 -1 -1 -1 7 0.60 -1 -1 37788 -1 -1 34 52 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 63852 52 122 664 786 1 355 208 8 8 64 io clb auto 24.5 MiB 1.13 1722 62.4 MiB 0.31 0.01 3.67867 -543.309 -3.67867 3.67867 0.22 0.00260314 0.00233605 0.125754 0.114217 60 3348 21 1.94018e+06 1.8324e+06 209903. 3279.73 2.51 0.783491 0.685102 6596 40562 -1 2925 12 1076 2803 103485 26847 0 0 103485 26847 2803 1660 0 0 4581 3821 0 0 5510 4584 0 0 3008 1884 0 0 43789 7618 0 0 43794 7280 0 0 2803 0 0 1760 3442 3255 27964 0 0 4.47179 4.47179 -637.579 -4.47179 0 0 263485. 4116.95 0.12 0.14 0.06 -1 -1 0.12 0.101994 0.0939418 +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_40nm.xml bigkey.blif common 11.30 vpr 63.27 MiB -1 -1 -1 -1 3 0.32 -1 -1 34796 -1 -1 53 229 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 229 197 1023 1220 1 510 479 16 16 256 io auto 24.4 MiB 0.26 3412 154065 46239 98678 9148 63.3 MiB 0.73 0.01 2.41239 -578.515 -2.41239 2.41239 0.56 0.00388149 0.00363052 0.3504 0.328056 34 6563 36 1.05632e+07 2.85638e+06 613832. 2397.78 7.21 1.89404 1.73907 24564 122629 -1 5999 13 1330 2398 156004 35692 2.69369 2.69369 -639.318 -2.69369 0 0 751777. 2936.63 0.19 0.17 0.10 -1 -1 0.19 0.128614 0.119851 +k6_frac_N10_40nm.xml clma.blif common 7.57 vpr 60.88 MiB -1 -1 -1 -1 7 2.24 -1 -1 39876 -1 -1 77 36 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62344 36 82 542 624 1 389 195 11 11 121 clb auto 22.2 MiB 0.52 2075 39180 14775 18229 6176 60.9 MiB 0.27 0.00 4.56725 -162.762 -4.56725 4.56725 0.22 0.00159549 0.00146528 0.119745 0.110395 40 4742 31 4.36541e+06 4.14984e+06 303235. 2506.08 2.55 0.592576 0.518987 11571 60661 -1 3946 19 2186 7344 217806 45734 4.7836 4.7836 -183.173 -4.7836 0 0 379421. 3135.71 0.08 0.13 0.05 -1 -1 0.08 0.0725952 0.0652714 +k6_frac_N10_40nm.xml diffeq.blif common 4.35 vpr 62.58 MiB -1 -1 -1 -1 8 0.40 -1 -1 34344 -1 -1 52 64 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 64 39 941 980 1 449 155 10 10 100 clb auto 23.7 MiB 0.70 2754 14299 2774 10573 952 62.6 MiB 0.19 0.00 5.00123 -878.262 -5.00123 5.00123 0.18 0.00232392 0.00210955 0.0947283 0.0862055 46 4930 28 3.44922e+06 2.80249e+06 276332. 2763.32 1.38 0.487916 0.424969 9816 55112 -1 4472 14 1803 5492 169063 35103 5.16783 5.16783 -930.109 -5.16783 0 0 354105. 3541.05 0.07 0.14 0.04 -1 -1 0.07 0.0907073 0.0819924 +k6_frac_N10_40nm.xml dsip.blif common 7.40 vpr 64.36 MiB -1 -1 -1 -1 3 0.30 -1 -1 34644 -1 -1 68 229 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65904 229 197 1135 1332 1 648 494 16 16 256 io auto 24.9 MiB 0.70 4700 170318 50861 109699 9758 64.4 MiB 0.86 0.01 2.3875 -617.47 -2.3875 2.3875 0.55 0.00411276 0.00382969 0.375801 0.34991 34 9287 43 1.05632e+07 3.66479e+06 613832. 2397.78 2.70 1.24173 1.13943 24564 122629 -1 8151 13 2265 5666 327590 69866 2.60848 2.60848 -674.007 -2.60848 0 0 751777. 2936.63 0.18 0.22 0.10 -1 -1 0.18 0.147267 0.137349 +k6_frac_N10_40nm.xml elliptic.blif common 12.50 vpr 72.55 MiB -1 -1 -1 -1 10 1.33 -1 -1 37408 -1 -1 133 131 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74288 131 114 2471 2585 1 970 378 14 14 196 clb auto 32.0 MiB 2.92 9165 74142 19344 51191 3607 72.5 MiB 0.75 0.02 7.14215 -3414.64 -7.14215 7.14215 0.39 0.00547722 0.00485817 0.331988 0.297156 64 15825 36 7.76074e+06 7.1679e+06 810706. 4136.26 3.87 1.47043 1.28666 22444 164128 -1 14159 17 4519 20253 781043 131442 7.47917 7.47917 -3699.02 -7.47917 0 0 1.00880e+06 5146.95 0.21 0.43 0.13 -1 -1 0.21 0.253091 0.228552 +k6_frac_N10_40nm.xml frisc.blif common 16.27 vpr 74.19 MiB -1 -1 -1 -1 12 2.02 -1 -1 37188 -1 -1 153 20 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75968 20 116 2477 2593 1 1088 289 15 15 225 clb auto 33.3 MiB 3.67 12581 59499 15581 39947 3971 74.2 MiB 0.86 0.01 8.14365 -3747.83 -8.14365 8.14365 0.46 0.00553861 0.00488686 0.382187 0.339626 74 21933 44 9.10809e+06 8.24578e+06 1.06098e+06 4715.46 5.56 1.63058 1.41486 27275 217117 -1 19654 18 5722 25295 1201911 194668 8.26982 8.26982 -3960.51 -8.26982 0 0 1.32822e+06 5903.22 0.28 0.55 0.17 -1 -1 0.28 0.277444 0.249442 +k6_frac_N10_40nm.xml s298.blif common 5.81 vpr 62.13 MiB -1 -1 -1 -1 8 0.57 -1 -1 33988 -1 -1 61 4 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 4 6 671 677 1 350 71 10 10 100 clb auto 23.2 MiB 0.91 3493 3283 433 2659 191 62.1 MiB 0.10 0.00 5.33805 -43.3781 -5.33805 5.33805 0.18 0.00193693 0.00174134 0.0562002 0.0515773 52 5783 22 3.44922e+06 3.28753e+06 305142. 3051.42 2.47 0.614574 0.526903 10212 61796 -1 5397 17 2148 10775 376607 64965 5.90507 5.90507 -48.8576 -5.90507 0 0 401807. 4018.07 0.08 0.19 0.05 -1 -1 0.08 0.0945264 0.084902 +k6_frac_N10_40nm.xml s38417.blif common 14.75 vpr 78.14 MiB -1 -1 -1 -1 6 3.01 -1 -1 42440 -1 -1 179 29 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80016 29 106 3450 3556 1 1198 314 16 16 256 clb auto 37.1 MiB 2.04 8989 70670 18144 45519 7007 78.1 MiB 0.96 0.01 4.74073 -2890.12 -4.74073 4.74073 0.54 0.00636901 0.00556012 0.4763 0.414513 48 14980 41 1.05632e+07 9.64703e+06 819368. 3200.65 4.15 2.12828 1.82805 26860 167058 -1 13212 15 5024 17286 529604 104654 4.75139 4.75139 -2966.77 -4.75139 0 0 1.04748e+06 4091.72 0.24 0.42 0.13 -1 -1 0.24 0.302619 0.272356 +k6_frac_N10_40nm.xml s38584.1.blif common 16.03 vpr 78.52 MiB -1 -1 -1 -1 6 2.15 -1 -1 41076 -1 -1 194 38 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80400 38 304 3259 3563 1 1574 536 16 16 256 clb auto 37.8 MiB 3.25 9889 183320 55884 108640 18796 78.5 MiB 1.52 0.02 4.27217 -2394.9 -4.27217 4.27217 0.54 0.00692031 0.00615749 0.646279 0.571663 58 17695 25 1.05632e+07 1.04554e+07 977637. 3818.90 4.53 2.11223 1.84277 28644 201685 -1 15484 13 5074 13582 483608 102794 4.69981 4.69981 -2495.41 -4.69981 0 0 1.24374e+06 4858.37 0.28 0.40 0.16 -1 -1 0.28 0.308951 0.281339 +k6_frac_N10_40nm.xml tseng.blif common 3.98 vpr 60.70 MiB -1 -1 -1 -1 7 0.27 -1 -1 34484 -1 -1 34 52 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62156 52 122 664 786 1 355 208 8 8 64 io clb auto 22.0 MiB 0.68 1783 26080 5856 18588 1636 60.7 MiB 0.20 0.00 4.2185 -596.347 -4.2185 4.2185 0.10 0.00193464 0.00178089 0.0920256 0.0848454 58 3398 46 1.94018e+06 1.8324e+06 203254. 3175.84 1.50 0.686589 0.603505 6532 39661 -1 2965 13 1169 3143 108747 29150 4.26194 4.26194 -630.352 -4.26194 0 0 258247. 4035.11 0.05 0.10 0.03 -1 -1 0.05 0.0682836 0.0622434 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt index 6e7480647f6..79387b20d65 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ arch circuit script_params vtr_flow_elapsed_time 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 15.51 vpr 67.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68780 14 8 1536 1544 0 1091 497 24 24 576 clb auto 29.7 MiB 0.34 14492 124418 37578 85089 1751 67.2 MiB 0.87 0.01 13.064 -93.6341 -13.064 nan 1.07 0.00348931 0.00304824 0.237041 0.209113 28 21463 31 1.452e+07 1.425e+07 -1 -1 9.61 1.31834 1.11924 21174 279108 -1 20043 18 7227 27667 2226365 207860 15.9561 nan -113.112 -15.9561 0 0 -1 -1 0.38 0.55 0.16 -1 -1 0.38 0.134467 0.117723 -k4_n4_v7_bidir.xml apex2.blif common 16.68 vpr 70.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72604 38 3 1916 1919 0 1509 641 27 27 729 clb auto 33.0 MiB 0.45 19880 182933 55134 123551 4248 70.9 MiB 1.25 0.02 14.5986 -42.6101 -14.5986 nan 1.36 0.00401719 0.00349457 0.308681 0.271103 31 29700 30 1.875e+07 1.8e+07 -1 -1 8.75 1.34864 1.15204 28210 394495 -1 27929 18 9808 34341 3048416 265235 17.4931 nan -51.8828 -17.4931 0 0 -1 -1 0.56 0.74 0.25 -1 -1 0.56 0.17637 0.154798 -k4_n4_v7_bidir.xml apex4.blif common 17.20 vpr 65.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66644 9 19 1271 1290 0 990 436 23 23 529 clb auto 27.4 MiB 0.28 13754 106164 30782 73959 1423 65.1 MiB 0.75 0.01 12.8655 -214.535 -12.8655 nan 0.95 0.00264982 0.00236602 0.190007 0.169245 31 22214 38 1.323e+07 1.224e+07 -1 -1 11.74 1.10339 0.943233 20514 283063 -1 19720 19 7989 28465 2830751 236852 20 nan -261.673 -20 0 0 -1 -1 0.39 0.63 0.16 -1 -1 0.39 0.128404 0.112514 -k4_n4_v7_bidir.xml bigkey.blif common 15.07 vpr 70.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72536 229 197 2152 2349 1 1587 882 29 29 841 io auto 33.2 MiB 0.35 12720 444822 139334 293651 11837 70.8 MiB 2.33 0.02 7.04457 -1707.05 -7.04457 7.04457 1.64 0.00572475 0.00520384 0.633194 0.5747 20 18467 30 2.187e+07 1.368e+07 -1 -1 5.89 2.01855 1.80143 26634 302857 -1 18217 20 8112 24197 1688786 175431 8.8272 8.8272 -2367.13 -8.8272 0 0 -1 -1 0.44 0.62 0.18 -1 -1 0.44 0.24701 0.221375 -k4_n4_v7_bidir.xml clma.blif common 117.96 vpr 203.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 208052 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 90.2 MiB 2.00 104482 1777419 700519 1061513 15387 199.1 MiB 13.98 0.14 26.7958 -1410.51 -26.7958 26.7958 6.88 0.0261116 0.0215218 2.57063 2.1172 39 140367 50 7.803e+07 7.569e+07 -1 -1 68.33 9.36599 7.76548 121914 1953961 -1 146229 38 49581 174525 39821256 3448046 40.0381 40.0381 -1927.62 -40.0381 0 0 -1 -1 3.04 8.26 1.12 -1 -1 3.04 1.51251 1.28375 -k4_n4_v7_bidir.xml des.blif common 18.09 vpr 74.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76156 256 245 1847 2092 0 1443 950 34 34 1156 io auto 31.6 MiB 0.43 15728 379058 122346 243174 13538 74.4 MiB 1.88 0.02 12.6882 -2221.93 -12.6882 nan 2.37 0.00608177 0.00558434 0.511482 0.470427 20 22136 48 3.072e+07 1.347e+07 -1 -1 7.15 2.23868 2.04084 36518 419916 -1 21828 21 9065 31031 2515013 246843 15.865 nan -2825.7 -15.865 0 0 -1 -1 0.63 0.78 0.25 -1 -1 0.63 0.286333 0.263471 -k4_n4_v7_bidir.xml diffeq.blif common 14.13 vpr 67.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69620 64 39 1935 1974 1 1104 519 23 23 529 clb auto 30.4 MiB 0.34 10676 127643 33321 91149 3173 68.0 MiB 0.88 0.01 11.3528 -2545.54 -11.3528 11.3528 0.96 0.00392379 0.00347154 0.259992 0.229366 24 15534 33 1.323e+07 1.248e+07 -1 -1 8.49 1.5504 1.3278 18402 227975 -1 14571 19 6373 21554 1393093 138737 13.9718 13.9718 -3254.11 -13.9718 0 0 -1 -1 0.31 0.49 0.13 -1 -1 0.31 0.181248 0.158794 -k4_n4_v7_bidir.xml dsip.blif common 26.61 vpr 67.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69576 229 197 1815 2012 1 1190 816 29 29 841 io auto 30.4 MiB 0.36 11338 355239 113557 232117 9565 67.9 MiB 1.84 0.02 7.45533 -1710.54 -7.45533 7.45533 1.62 0.00522143 0.00478406 0.510916 0.467117 17 18820 35 2.187e+07 1.17e+07 -1 -1 18.19 2.45369 2.20309 24954 258369 -1 15965 19 6881 21184 1530662 161982 8.88963 8.88963 -2332.87 -8.88963 0 0 -1 -1 0.42 0.56 0.16 -1 -1 0.42 0.230602 0.208563 -k4_n4_v7_bidir.xml elliptic.blif common 87.47 vpr 91.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93564 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 50.9 MiB 0.79 31687 561185 198227 355001 7957 91.4 MiB 3.53 0.04 22.2209 -11394.8 -22.2209 22.2209 2.38 0.010024 0.0088992 0.895165 0.773746 29 48636 47 3.072e+07 2.988e+07 -1 -1 71.62 5.01696 4.24196 43448 604980 -1 45339 25 13230 58737 9644190 874860 31.1226 31.1226 -16838.3 -31.1226 0 0 -1 -1 0.87 2.25 0.38 -1 -1 0.87 0.552294 0.479922 -k4_n4_v7_bidir.xml ex1010.blif common 72.62 vpr 119.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 122176 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 57.2 MiB 1.00 45279 752816 282194 468868 1754 119.3 MiB 5.76 0.06 24.3239 -237.092 -24.3239 nan 4.05 0.0100382 0.0087351 1.02213 0.859022 28 67202 36 4.563e+07 4.5e+07 -1 -1 49.59 4.57438 3.8105 61362 838935 -1 66040 19 26979 113958 8933163 818795 27.8346 nan -270.545 -27.8346 0 0 -1 -1 1.29 2.41 0.48 -1 -1 1.29 0.469356 0.406981 -k4_n4_v7_bidir.xml ex5p.blif common 12.19 vpr 63.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65300 8 63 1072 1135 0 907 417 21 21 441 clb auto 25.8 MiB 0.23 11708 93837 27069 64630 2138 63.8 MiB 0.65 0.01 12.4074 -557.811 -12.4074 nan 0.77 0.00267829 0.00240549 0.174981 0.158061 31 18083 34 1.083e+07 1.038e+07 -1 -1 7.51 0.974615 0.841833 17122 234247 -1 16652 21 7718 27154 2580113 226279 20 nan -916.856 -20 0 0 -1 -1 0.31 0.58 0.13 -1 -1 0.31 0.125267 0.109793 -k4_n4_v7_bidir.xml frisc.blif common 84.21 vpr 95.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97840 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 50.6 MiB 0.91 37748 519683 178378 331865 9440 95.5 MiB 3.57 0.04 22.474 -12146.9 -22.474 22.474 2.48 0.0102555 0.00884829 0.871252 0.754907 32 54020 43 3.267e+07 3.138e+07 -1 -1 66.71 4.43502 3.76037 48474 707469 -1 55532 36 17692 77402 14489739 1344143 33.6264 33.6264 -17898.1 -33.6264 0 0 -1 -1 1.06 3.21 0.40 -1 -1 1.06 0.7015 0.60378 -k4_n4_v7_bidir.xml misex3.blif common 18.39 vpr 66.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67612 14 14 1411 1425 0 1075 460 23 23 529 clb auto 28.5 MiB 0.33 13773 110510 31854 77048 1608 66.0 MiB 0.76 0.01 12.9788 -162.672 -12.9788 nan 0.95 0.00312893 0.0027462 0.197348 0.17514 29 21974 42 1.323e+07 1.296e+07 -1 -1 12.70 1.35312 1.15089 19986 270173 -1 20287 26 8530 29928 3721012 337286 18.4945 nan -217.903 -18.4945 0 0 -1 -1 0.36 0.81 0.15 -1 -1 0.36 0.173258 0.150595 -k4_n4_v7_bidir.xml pdc.blif common 93.93 vpr 136.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 139812 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 58.5 MiB 1.28 69296 832915 317771 510237 4907 123.4 MiB 6.03 0.06 23.7165 -825.182 -23.7165 nan 4.30 0.0109541 0.00918243 1.0921 0.917758 47 96151 32 4.8e+07 4.587e+07 -1 -1 67.60 5.878 4.90759 87292 1502116 -1 92286 19 22888 96643 12191502 930092 26.8818 nan -966.044 -26.8818 0 0 -1 -1 2.50 2.91 0.87 -1 -1 2.50 0.511763 0.444209 -k4_n4_v7_bidir.xml s298.blif common 13.19 vpr 70.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72636 4 6 1942 1948 1 1189 579 26 26 676 clb auto 33.1 MiB 0.35 14048 159771 47511 111138 1122 70.9 MiB 1.09 0.02 21.2667 -165.944 -21.2667 21.2667 1.25 0.00431077 0.00380898 0.310375 0.275876 22 23258 45 1.728e+07 1.707e+07 -1 -1 6.22 1.29609 1.11603 22122 258376 -1 19803 19 7316 37170 2732025 242363 25.3019 25.3019 -201.867 -25.3019 0 0 -1 -1 0.36 0.75 0.15 -1 -1 0.36 0.198558 0.1743 -k4_n4_v7_bidir.xml s38417.blif common 69.87 vpr 145.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 149160 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 73.1 MiB 1.31 46044 1038310 380422 641926 15962 145.7 MiB 7.80 0.09 17.0471 -10090 -17.0471 17.0471 4.84 0.0157324 0.0138369 1.5815 1.32551 24 63196 48 5.292e+07 5.205e+07 -1 -1 42.26 6.22629 5.17979 66744 864380 -1 59182 23 26435 85154 5535498 549469 21.1815 21.1815 -12681.3 -21.1815 0 0 -1 -1 1.33 2.10 0.50 -1 -1 1.33 0.817031 0.708979 -k4_n4_v7_bidir.xml s38584.1.blif common 64.41 vpr 143.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 146948 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 72.3 MiB 1.38 44702 1189774 441852 724992 22930 142.3 MiB 8.12 0.11 12.8306 -8587.56 -12.8306 12.8306 4.20 0.0161093 0.0133928 1.63832 1.37275 24 59721 36 5.043e+07 4.941e+07 -1 -1 37.89 6.7536 5.65396 63762 824815 -1 55715 21 21817 67758 4505617 450610 14.3685 14.3685 -10398.9 -14.3685 0 0 -1 -1 1.24 1.75 0.46 -1 -1 1.24 0.745898 0.647737 -k4_n4_v7_bidir.xml seq.blif common 18.80 vpr 69.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70836 41 35 1791 1826 0 1383 615 26 26 676 clb auto 31.6 MiB 0.40 18117 183595 57461 121393 4741 69.2 MiB 1.20 0.02 13.8942 -393.232 -13.8942 nan 1.28 0.00367395 0.00321985 0.288459 0.254496 31 27144 34 1.728e+07 1.617e+07 -1 -1 11.17 1.59598 1.36473 26172 364912 -1 25709 23 10032 36832 3383617 289496 15.2747 nan -464.134 -15.2747 0 0 -1 -1 0.52 0.97 0.21 -1 -1 0.52 0.232584 0.202727 -k4_n4_v7_bidir.xml spla.blif common 57.62 vpr 103.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105972 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 49.8 MiB 0.98 48284 586278 204405 379300 2573 99.8 MiB 4.08 0.05 20.1209 -661.294 -20.1209 nan 3.11 0.00917445 0.0076866 0.772092 0.658787 39 72604 31 3.888e+07 3.696e+07 -1 -1 34.87 3.40392 2.8657 62858 992060 -1 76274 41 24808 104383 25721970 2482564 35.6194 nan -1107.5 -35.6194 0 0 -1 -1 1.55 5.61 0.57 -1 -1 1.55 0.851248 0.726003 -k4_n4_v7_bidir.xml tseng.blif common 10.60 vpr 64.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65956 52 122 1483 1605 1 736 453 19 19 361 clb auto 26.5 MiB 0.22 6112 103054 27352 71967 3735 64.4 MiB 0.65 0.01 9.55592 -2100.22 -9.55592 9.55592 0.61 0.0033439 0.0029805 0.212601 0.190316 24 8832 24 8.67e+06 8.37e+06 -1 -1 6.78 1.75903 1.52449 12594 153055 -1 8520 17 3732 12234 665782 74240 12.6439 12.6439 -2825.01 -12.6439 0 0 -1 -1 0.20 0.27 0.09 -1 -1 0.20 0.127008 0.11267 -k4_n4_v7_l1_bidir.xml alu4.blif common 28.13 vpr 67.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68712 14 8 1536 1544 0 1091 497 24 24 576 clb auto 29.7 MiB 0.34 14362 138187 43336 92800 2051 67.1 MiB 0.91 0.01 16.2524 -118.165 -16.2524 nan 1.51 0.00296843 0.00259624 0.226452 0.199909 21 16486 45 1.452e+07 1.425e+07 -1 -1 20.45 1.12901 0.965007 39160 271852 -1 14613 17 7090 27567 1954153 351615 17.3251 nan -130.098 -17.3251 0 0 -1 -1 0.47 0.73 0.22 -1 -1 0.47 0.153278 0.134732 -k4_n4_v7_l1_bidir.xml apex2.blif common 28.80 vpr 71.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73428 38 3 1916 1919 0 1509 641 27 27 729 clb auto 32.6 MiB 0.46 19978 196743 63018 129046 4679 71.5 MiB 1.30 0.02 23.2097 -66.4319 -23.2097 nan 2.01 0.00378932 0.00331534 0.29431 0.25934 25 21737 29 1.875e+07 1.8e+07 -1 -1 18.64 1.49829 1.28 55250 396047 -1 20232 16 9584 33682 2945139 417708 24.9872 nan -71.1099 -24.9872 0 0 -1 -1 0.70 0.88 0.29 -1 -1 0.70 0.168062 0.14808 -k4_n4_v7_l1_bidir.xml apex4.blif common 48.38 vpr 65.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66744 9 19 1271 1290 0 990 436 23 23 529 clb auto 27.5 MiB 0.28 14046 124336 39690 83097 1549 65.2 MiB 0.88 0.01 15.3296 -251.289 -15.3296 nan 1.44 0.00279562 0.00247728 0.229644 0.204635 26 17990 41 1.323e+07 1.224e+07 -1 -1 40.66 1.12419 0.963552 41370 301109 -1 15275 25 8776 31683 4961186 846365 19.5742 nan -300.066 -19.5742 0 0 -1 -1 0.51 1.17 0.22 -1 -1 0.51 0.157775 0.137274 -k4_n4_v7_l1_bidir.xml bigkey.blif common 18.86 vpr 79.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81036 229 197 2152 2349 1 1587 882 29 29 841 io auto 33.1 MiB 0.37 12791 444822 144197 289217 11408 79.1 MiB 2.37 0.03 9.49212 -2257.52 -9.49212 9.49212 2.49 0.00615142 0.00553249 0.657693 0.595957 13 12596 28 2.187e+07 1.368e+07 -1 -1 7.35 1.70291 1.52274 39906 235943 -1 11774 13 7322 21586 1176610 233855 12.1231 12.1231 -2747.34 -12.1231 0 0 -1 -1 0.43 0.54 0.18 -1 -1 0.43 0.178023 0.160519 -k4_n4_v7_l1_bidir.xml clma.blif common 195.81 vpr 263.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 269944 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 90.1 MiB 2.02 106120 1925315 767415 1142328 15572 253.2 MiB 14.30 0.13 35.274 -2009.57 -35.274 35.274 10.17 0.021043 0.0173521 2.33838 1.96096 33 109478 43 7.803e+07 7.569e+07 -1 -1 134.77 9.66457 7.9929 274482 2081397 -1 104788 17 43619 160542 25618092 4861674 38.8766 38.8766 -2339.59 -38.8766 0 0 -1 -1 4.56 7.00 1.61 -1 -1 4.56 0.85522 0.740129 -k4_n4_v7_l1_bidir.xml des.blif common 33.50 vpr 92.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94736 256 245 1847 2092 0 1443 950 34 34 1156 io auto 31.6 MiB 0.43 15994 407066 134258 257674 15134 91.9 MiB 2.18 0.02 16.0918 -2830.21 -16.0918 nan 3.64 0.00657972 0.00604891 0.609688 0.559399 13 16892 41 3.072e+07 1.347e+07 -1 -1 18.58 2.09913 1.90913 55296 328128 -1 15807 17 9276 31051 2809529 520178 16.7012 nan -3129.26 -16.7012 0 0 -1 -1 0.62 0.92 0.26 -1 -1 0.62 0.246301 0.226587 -k4_n4_v7_l1_bidir.xml diffeq.blif common 32.83 vpr 67.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69620 64 39 1935 1974 1 1104 519 23 23 529 clb auto 30.4 MiB 0.35 10440 142231 40504 98416 3311 68.0 MiB 0.97 0.01 12.9882 -2992.62 -12.9882 12.9882 1.36 0.00391026 0.0034585 0.286623 0.254118 16 11082 46 1.323e+07 1.248e+07 -1 -1 25.82 1.54842 1.32799 28434 179743 -1 9985 15 6744 23786 1901290 348721 13.6141 13.6141 -3460.74 -13.6141 0 0 -1 -1 0.31 0.61 0.13 -1 -1 0.31 0.150389 0.132388 -k4_n4_v7_l1_bidir.xml dsip.blif common 17.49 vpr 77.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79112 229 197 1815 2012 1 1190 816 29 29 841 io auto 30.5 MiB 0.38 11426 359050 117729 232216 9105 77.1 MiB 1.85 0.02 8.78943 -2134.03 -8.78943 8.78943 2.48 0.00528394 0.00483173 0.51798 0.472926 13 11155 22 2.187e+07 1.17e+07 -1 -1 6.59 1.46172 1.31811 39906 235943 -1 10676 16 5917 20172 1064426 206703 10.7113 10.7113 -2532.12 -10.7113 0 0 -1 -1 0.44 0.52 0.18 -1 -1 0.44 0.190292 0.172359 -k4_n4_v7_l1_bidir.xml elliptic.blif common 178.16 vpr 110.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 113164 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 51.0 MiB 0.80 31775 587849 206959 374211 6679 110.1 MiB 3.77 0.04 24.8429 -14309.6 -24.8429 24.8429 3.62 0.0109705 0.00924243 1.00454 0.858326 24 35056 37 3.072e+07 2.988e+07 -1 -1 158.46 4.48408 3.78895 89088 639360 -1 31157 17 12236 54672 5608600 887341 26.0893 26.0893 -16614.9 -26.0893 0 0 -1 -1 1.25 1.89 0.51 -1 -1 1.25 0.408765 0.354605 -k4_n4_v7_l1_bidir.xml ex1010.blif common 51.47 vpr 151.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 155568 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 57.3 MiB 1.00 45457 761552 272142 487721 1689 151.9 MiB 5.84 0.06 33.6677 -322.857 -33.6677 nan 5.57 0.0102248 0.00851377 1.0614 0.889865 22 49488 35 4.563e+07 4.5e+07 -1 -1 23.09 3.06206 2.56389 118482 826103 -1 45324 16 25131 98403 5940189 1022487 35.4589 nan -345.878 -35.4589 0 0 -1 -1 1.69 2.35 0.63 -1 -1 1.69 0.417275 0.3644 -k4_n4_v7_l1_bidir.xml ex5p.blif common 39.99 vpr 64.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65636 8 63 1072 1135 0 907 417 21 21 441 clb auto 26.1 MiB 0.14 11889 109407 33266 74263 1878 64.1 MiB 0.73 0.01 14.8212 -663.939 -14.8212 nan 1.11 0.00267683 0.00240159 0.191284 0.17246 25 14526 35 1.083e+07 1.038e+07 -1 -1 34.17 1.08922 0.938754 32642 233591 -1 12281 18 8068 27995 2688226 416112 15.3998 nan -728.218 -15.3998 0 0 -1 -1 0.39 0.75 0.17 -1 -1 0.39 0.117425 0.10395 -k4_n4_v7_l1_bidir.xml frisc.blif common 132.07 vpr 114.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 117072 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 50.5 MiB 0.90 38115 557165 195425 351820 9920 114.3 MiB 3.90 0.04 25.8853 -15117.7 -25.8853 25.8853 3.88 0.0102824 0.00883256 0.987917 0.848876 28 40742 33 3.267e+07 3.138e+07 -1 -1 110.78 4.22481 3.58418 103554 761463 -1 38139 16 14418 63755 6641824 1105950 27.7778 27.7778 -16859.8 -27.7778 0 0 -1 -1 1.46 2.09 0.57 -1 -1 1.46 0.379236 0.330288 -k4_n4_v7_l1_bidir.xml misex3.blif common 38.00 vpr 66.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67828 14 14 1411 1425 0 1075 460 23 23 529 clb auto 28.7 MiB 0.33 13716 121160 37552 81574 2034 66.2 MiB 0.85 0.01 14.9328 -182.468 -14.9328 nan 1.42 0.00335433 0.00296166 0.226847 0.201355 24 15358 38 1.323e+07 1.296e+07 -1 -1 30.83 1.32813 1.13645 39522 283015 -1 14047 15 6919 25785 1966435 320519 15.6861 nan -202.444 -15.6861 0 0 -1 -1 0.49 0.63 0.21 -1 -1 0.49 0.123311 0.108712 -k4_n4_v7_l1_bidir.xml pdc.blif common 182.75 vpr 163.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 167216 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 58.6 MiB 1.29 69847 906811 352994 547566 6251 149.8 MiB 6.48 0.06 29.749 -973.679 -29.749 nan 5.93 0.0110291 0.00924426 1.14561 0.964084 39 90313 40 4.8e+07 4.587e+07 -1 -1 143.88 4.64989 3.87333 196640 1532920 -1 73941 22 28230 117756 26408846 5244302 34.5972 nan -1133.63 -34.5972 0 0 -1 -1 3.32 7.84 1.26 -1 -1 3.32 0.622691 0.534582 -k4_n4_v7_l1_bidir.xml s298.blif common 25.70 vpr 70.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72372 4 6 1942 1948 1 1189 579 26 26 676 clb auto 32.8 MiB 0.35 14138 171831 53667 116783 1381 70.7 MiB 1.23 0.02 26.1051 -194.876 -26.1051 26.1051 1.89 0.00494459 0.00433471 0.368145 0.32557 17 15803 44 1.728e+07 1.707e+07 -1 -1 16.16 1.50301 1.29012 39072 255848 -1 14538 20 8680 42365 3804256 568074 28.1876 28.1876 -219.477 -28.1876 0 0 -1 -1 0.46 1.11 0.19 -1 -1 0.46 0.206719 0.180497 -k4_n4_v7_l1_bidir.xml s38417.blif common 75.98 vpr 177.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 181592 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 73.1 MiB 1.32 46564 1095890 398355 680987 16548 177.3 MiB 8.23 0.09 22.5207 -13239.8 -22.5207 22.5207 6.57 0.0162188 0.0135988 1.67606 1.40707 18 43172 30 5.292e+07 5.205e+07 -1 -1 41.44 5.49683 4.60048 122472 822684 -1 40146 15 23398 74360 4088843 721327 24.0049 24.0049 -15268.5 -24.0049 0 0 -1 -1 1.72 1.96 0.63 -1 -1 1.72 0.631678 0.548027 -k4_n4_v7_l1_bidir.xml s38584.1.blif common 83.57 vpr 171.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 175560 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 72.3 MiB 1.37 43032 1227283 457537 745329 24417 171.4 MiB 8.31 0.10 16.5278 -11078.5 -16.5278 16.5278 6.23 0.0163138 0.0135312 1.67245 1.40288 18 40117 43 5.043e+07 4.941e+07 -1 -1 50.01 5.48392 4.61292 116850 784767 -1 37130 13 19800 60812 3487707 599325 17.3291 17.3291 -12377.8 -17.3291 0 0 -1 -1 1.64 1.76 0.60 -1 -1 1.64 0.623368 0.543539 -k4_n4_v7_l1_bidir.xml seq.blif common 36.82 vpr 69.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70812 41 35 1791 1826 0 1383 615 26 26 676 clb auto 31.6 MiB 0.40 18015 207121 65869 135848 5404 69.2 MiB 1.33 0.02 16.6753 -486.802 -16.6753 nan 1.85 0.00371978 0.00325972 0.30676 0.270249 24 21542 46 1.728e+07 1.617e+07 -1 -1 27.23 1.27531 1.09241 51072 366016 -1 18342 15 9038 32481 2759841 410898 18.0048 nan -533.902 -18.0048 0 0 -1 -1 0.65 0.84 0.32 -1 -1 0.65 0.155572 0.137082 -k4_n4_v7_l1_bidir.xml spla.blif common 276.55 vpr 127.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 130832 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 49.9 MiB 0.97 48643 649710 239203 407582 2925 127.3 MiB 4.60 0.05 24.7125 -858.664 -24.7125 nan 4.52 0.0110009 0.00936496 0.935844 0.797653 32 55162 44 3.888e+07 3.696e+07 -1 -1 250.15 4.07172 3.41122 138672 1051752 -1 51486 21 20303 86763 15074452 2879132 30.1741 nan -1022.06 -30.1741 0 0 -1 -1 1.97 3.87 0.80 -1 -1 1.97 0.449697 0.387433 -k4_n4_v7_l1_bidir.xml tseng.blif common 13.41 vpr 64.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66124 52 122 1483 1605 1 736 453 19 19 361 clb auto 26.6 MiB 0.22 5859 113488 31414 78149 3925 64.6 MiB 0.71 0.01 10.2405 -2435.2 -10.2405 10.2405 0.87 0.00325048 0.00291196 0.23049 0.206545 14 6661 37 8.67e+06 8.37e+06 -1 -1 8.70 1.00951 0.878973 17850 109085 -1 5761 18 4777 15947 893383 178727 11.3513 11.3513 -3010.79 -11.3513 0 0 -1 -1 0.18 0.39 0.08 -1 -1 0.18 0.139853 0.123516 +k4_n4_v7_bidir.xml alu4.blif common 14.12 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 477 14 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68808 14 8 1536 1544 0 1088 499 24 24 576 clb auto 26.9 MiB 0.35 13713 125113 37636 85702 1775 67.2 MiB 0.83 0.01 14.0421 -101.788 -14.0421 nan 0.89 0.00337182 0.00294136 0.228232 0.201212 28 19990 27 1.452e+07 1.431e+07 -1 -1 8.35 1.31835 1.12022 21174 279108 -1 19228 18 7062 27087 2139856 196285 17.1451 nan -119.753 -17.1451 0 0 -1 -1 0.37 0.58 0.16 -1 -1 0.37 0.149382 0.130325 +k4_n4_v7_bidir.xml apex2.blif common 20.08 vpr 69.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 598 38 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71168 38 3 1916 1919 0 1508 639 27 27 729 clb auto 29.3 MiB 0.47 20032 176703 52353 120171 4179 69.5 MiB 1.23 0.02 17.5139 -50.2777 -17.5139 nan 1.17 0.00472981 0.00411722 0.317696 0.278113 31 29578 36 1.875e+07 1.794e+07 -1 -1 12.05 1.72453 1.47135 28210 394495 -1 28636 22 10688 37557 3476301 294242 20.8295 nan -58.5593 -20.8295 0 0 -1 -1 0.56 1.01 0.23 -1 -1 0.56 0.253299 0.22082 +k4_n4_v7_bidir.xml apex4.blif common 15.04 vpr 65.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 410 9 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66588 9 19 1271 1290 0 989 438 23 23 529 clb auto 25.5 MiB 0.27 13508 95172 26074 67665 1433 65.0 MiB 0.65 0.01 13.1269 -216.571 -13.1269 nan 0.83 0.00276239 0.0024392 0.1738 0.155352 31 20275 34 1.323e+07 1.23e+07 -1 -1 9.83 1.0323 0.884588 20514 283063 -1 18947 16 6713 24480 2299733 193456 16.0497 nan -259.266 -16.0497 0 0 -1 -1 0.39 0.53 0.16 -1 -1 0.39 0.116433 0.102846 +k4_n4_v7_bidir.xml bigkey.blif common 19.30 vpr 69.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71668 229 197 2152 2349 1 1587 882 29 29 841 io auto 29.8 MiB 0.34 12720 440594 137247 291517 11830 70.0 MiB 2.20 0.02 8.05109 -1841.77 -8.05109 8.05109 1.37 0.00589079 0.00536855 0.626379 0.566795 18 20694 46 2.187e+07 1.368e+07 -1 -1 10.54 2.27299 2.02358 25794 279159 -1 18007 20 8342 23483 1514225 162064 9.13231 9.13231 -2338.69 -9.13231 0 0 -1 -1 0.39 0.61 0.17 -1 -1 0.39 0.250982 0.22507 +k4_n4_v7_bidir.xml clma.blif common 125.73 vpr 199.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2521 62 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 204696 62 82 8460 8542 1 6346 2665 53 53 2809 clb auto 74.6 MiB 2.08 106112 1720282 687942 1019943 12397 191.1 MiB 12.56 0.13 27.7798 -1475.05 -27.7798 27.7798 5.67 0.0212825 0.0174879 2.07784 1.7299 39 139827 30 7.803e+07 7.563e+07 -1 -1 77.34 8.16732 6.70717 121914 1953961 -1 145653 37 50338 174644 40465788 3496071 37.5154 37.5154 -1994.17 -37.5154 0 0 -1 -1 3.29 8.98 1.16 -1 -1 3.29 1.60084 1.35094 +k4_n4_v7_bidir.xml des.blif common 21.96 vpr 73.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75736 256 245 1847 2092 0 1443 950 34 34 1156 io auto 28.6 MiB 0.43 15858 337046 106006 219615 11425 74.0 MiB 1.69 0.02 13.6482 -2283.71 -13.6482 nan 2.03 0.00653534 0.00597695 0.503268 0.461334 18 23829 44 3.072e+07 1.347e+07 -1 -1 11.46 2.34979 2.13492 35364 387024 -1 21475 27 8540 28313 2203704 220439 16.6899 nan -2838.96 -16.6899 0 0 -1 -1 0.56 0.82 0.23 -1 -1 0.56 0.360996 0.330838 +k4_n4_v7_bidir.xml diffeq.blif common 12.81 vpr 67.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 415 64 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69116 64 39 1935 1974 1 1102 518 23 23 529 clb auto 27.8 MiB 0.35 9992 137732 37830 95961 3941 67.5 MiB 0.95 0.01 13.4033 -2671.54 -13.4033 13.4033 0.80 0.00428173 0.00383691 0.312705 0.277181 24 14332 21 1.323e+07 1.245e+07 -1 -1 7.02 1.61062 1.38241 18402 227975 -1 13634 22 6342 21307 1309693 133684 15.9009 15.9009 -3236.59 -15.9009 0 0 -1 -1 0.30 0.50 0.13 -1 -1 0.30 0.20143 0.175765 +k4_n4_v7_bidir.xml dsip.blif common 17.77 vpr 67.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68900 229 197 1815 2012 1 1190 816 29 29 841 io auto 27.5 MiB 0.32 11545 347617 108721 229249 9647 67.3 MiB 1.74 0.02 7.21771 -1868.83 -7.21771 7.21771 1.36 0.00565774 0.00516606 0.524959 0.478887 18 18641 50 2.187e+07 1.17e+07 -1 -1 9.76 2.03171 1.82626 25794 279159 -1 15915 19 6571 20190 1355499 141050 8.71824 8.71824 -2334.27 -8.71824 0 0 -1 -1 0.39 0.53 0.17 -1 -1 0.39 0.218562 0.197453 +k4_n4_v7_bidir.xml elliptic.blif common 55.36 vpr 90.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1000 131 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93164 131 114 4855 4969 1 2139 1245 34 34 1156 clb auto 44.4 MiB 0.80 31454 550235 189587 353717 6931 90.2 MiB 3.44 0.04 23.2801 -11982.4 -23.2801 23.2801 1.99 0.0102012 0.00912611 0.93124 0.796503 29 50282 41 3.072e+07 3e+07 -1 -1 39.75 4.26668 3.61139 43448 604980 -1 46002 25 13205 58637 9554007 846071 38.8565 38.8565 -19809.8 -38.8565 0 0 -1 -1 0.87 2.29 0.35 -1 -1 0.87 0.550161 0.477667 +k4_n4_v7_bidir.xml ex1010.blif common 70.88 vpr 117.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1507 10 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 120624 10 10 4608 4618 0 3617 1527 41 41 1681 clb auto 49.0 MiB 1.01 44970 713436 251975 459721 1740 117.8 MiB 5.24 0.06 23.5124 -229.462 -23.5124 nan 3.18 0.0097988 0.00855656 0.894426 0.754306 28 68638 30 4.563e+07 4.521e+07 -1 -1 49.13 4.21383 3.49296 61362 838935 -1 63940 21 25222 100656 7392341 708511 28.5457 nan -270.488 -28.5457 0 0 -1 -1 1.32 2.31 0.49 -1 -1 1.32 0.568954 0.493491 +k4_n4_v7_bidir.xml ex5p.blif common 10.49 vpr 63.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 342 8 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 8 63 1072 1135 0 906 413 21 21 441 clb auto 24.3 MiB 0.26 11449 84948 23521 59664 1763 63.6 MiB 0.57 0.01 12.8622 -575.489 -12.8622 nan 0.65 0.0025827 0.00230286 0.159252 0.143541 35 17128 25 1.083e+07 1.026e+07 -1 -1 5.53 0.949583 0.821185 18442 269153 -1 17835 36 8694 28272 4470817 400190 22.7431 nan -871.031 -22.7431 0 0 -1 -1 0.35 0.95 0.15 -1 -1 0.35 0.19761 0.170925 +k4_n4_v7_bidir.xml frisc.blif common 42.63 vpr 94.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1051 20 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96356 20 116 4445 4561 1 2326 1187 35 35 1225 clb auto 43.5 MiB 0.91 37678 522593 180255 332319 10019 91.3 MiB 3.77 0.04 26.7351 -13400.3 -26.7351 26.7351 2.15 0.0120194 0.0108773 1.0849 0.940114 35 54338 28 3.267e+07 3.153e+07 -1 -1 24.33 3.94847 3.3672 50922 772933 -1 56811 45 18725 83358 16216109 1534592 31.802 31.802 -18151.6 -31.802 0 0 -1 -1 1.17 3.76 0.44 -1 -1 1.17 0.873991 0.748271 +k4_n4_v7_bidir.xml misex3.blif common 18.72 vpr 65.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 431 14 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67172 14 14 1411 1425 0 1079 459 23 23 529 clb auto 26.0 MiB 0.34 13374 101292 28145 71403 1744 65.6 MiB 0.68 0.01 13.1746 -165.157 -13.1746 nan 0.79 0.00303589 0.00266696 0.186267 0.165347 29 21582 50 1.323e+07 1.293e+07 -1 -1 13.16 1.49464 1.27631 19986 270173 -1 20352 22 8774 29285 3704651 332778 24.3868 nan -237.829 -24.3868 0 0 -1 -1 0.36 0.82 0.16 -1 -1 0.36 0.176582 0.155298 +k4_n4_v7_bidir.xml pdc.blif common 89.27 vpr 127.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1534 16 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 130824 16 40 4591 4631 0 3629 1590 42 42 1764 clb auto 49.8 MiB 1.35 69656 771498 279852 487559 4087 122.1 MiB 5.61 0.05 21.5017 -765.92 -21.5017 nan 3.20 0.010994 0.00878298 1.09979 0.925234 43 105542 40 4.8e+07 4.602e+07 -1 -1 64.86 5.02154 4.16488 82004 1356368 -1 93688 22 24061 102167 12513613 966499 27.3055 nan -968.887 -27.3055 0 0 -1 -1 2.02 2.93 0.78 -1 -1 2.02 0.546929 0.471748 +k4_n4_v7_bidir.xml s298.blif common 28.12 vpr 70.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 560 4 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71916 4 6 1942 1948 1 1191 570 26 26 676 clb auto 29.6 MiB 0.38 14088 144652 40631 103074 947 70.2 MiB 0.99 0.02 22.0836 -173.078 -22.0836 22.0836 1.07 0.00491168 0.00428489 0.311727 0.276726 24 20876 31 1.728e+07 1.68e+07 -1 -1 21.18 2.03896 1.73599 23472 293888 -1 19701 18 6999 36928 2660713 235221 25.651 25.651 -206.277 -25.651 0 0 -1 -1 0.40 0.75 0.17 -1 -1 0.40 0.195686 0.170997 +k4_n4_v7_bidir.xml s38417.blif common 64.70 vpr 143.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1733 29 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 146772 29 106 7534 7640 1 4762 1868 44 44 1936 clb auto 62.1 MiB 1.32 45565 1025279 365918 643209 16152 143.3 MiB 7.37 0.08 18.085 -10617.5 -18.085 18.085 4.06 0.0161761 0.0135336 1.59516 1.34543 24 61471 26 5.292e+07 5.199e+07 -1 -1 37.97 6.34309 5.25504 66744 864380 -1 58433 19 27083 89331 5592291 571595 20.8628 20.8628 -13144.4 -20.8628 0 0 -1 -1 1.36 2.13 0.50 -1 -1 1.36 0.806156 0.688074 +k4_n4_v7_bidir.xml s38584.1.blif common 50.70 vpr 141.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1648 38 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 145112 38 304 7475 7779 1 4417 1990 43 43 1849 clb auto 61.6 MiB 1.17 43646 1140582 418967 699450 22165 140.6 MiB 7.51 0.10 12.4934 -8495.56 -12.4934 12.4934 3.66 0.0153425 0.0134828 1.57061 1.3122 24 56870 27 5.043e+07 4.944e+07 -1 -1 26.06 5.23547 4.35923 63762 824815 -1 53639 17 21182 66620 4051433 421817 14.8518 14.8518 -10248.4 -14.8518 0 0 -1 -1 1.27 1.62 0.34 -1 -1 1.27 0.677626 0.594605 +k4_n4_v7_bidir.xml seq.blif common 19.51 vpr 68.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 542 41 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70244 41 35 1791 1826 0 1384 618 26 26 676 clb auto 28.5 MiB 0.42 18072 171633 50023 117007 4603 68.6 MiB 1.12 0.02 13.9875 -383.03 -13.9875 nan 1.07 0.00418281 0.00364452 0.298342 0.262226 31 27471 45 1.728e+07 1.626e+07 -1 -1 12.32 1.67388 1.42342 26172 364912 -1 24826 17 7941 27602 2335091 207885 17.5932 nan -469.839 -17.5932 0 0 -1 -1 0.50 0.70 0.21 -1 -1 0.50 0.196938 0.175163 +k4_n4_v7_bidir.xml spla.blif common 60.66 vpr 102.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1235 16 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105328 16 46 3706 3752 0 2877 1297 38 38 1444 clb auto 42.7 MiB 1.01 47749 581037 208352 367672 5013 99.3 MiB 3.85 0.03 20.3447 -680.522 -20.3447 nan 2.60 0.00621774 0.00502048 0.751662 0.637625 39 70670 41 3.888e+07 3.705e+07 -1 -1 37.66 3.50877 2.9362 62858 992060 -1 76144 39 24431 104085 28248602 3041950 35.5685 nan -1147.95 -35.5685 0 0 -1 -1 1.57 6.38 0.58 -1 -1 1.57 0.841206 0.713888 +k4_n4_v7_bidir.xml tseng.blif common 7.02 vpr 63.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 277 52 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65452 52 122 1483 1605 1 737 451 19 19 361 clb auto 24.7 MiB 0.21 5974 102403 26155 72807 3441 63.9 MiB 0.62 0.01 12.4944 -2327.14 -12.4944 12.4944 0.52 0.00326589 0.00294421 0.217207 0.195042 20 10097 45 8.67e+06 8.31e+06 -1 -1 3.13 0.794811 0.694288 11514 125901 -1 9941 31 5221 17602 1464836 167257 18.1334 18.1334 -3640.61 -18.1334 0 0 -1 -1 0.17 0.50 0.07 -1 -1 0.17 0.203642 0.17827 +k4_n4_v7_l1_bidir.xml alu4.blif common 16.76 vpr 67.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 477 14 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68892 14 8 1536 1544 0 1088 499 24 24 576 clb auto 27.0 MiB 0.36 13984 140937 45113 93822 2002 67.3 MiB 0.93 0.01 19.0754 -137.015 -19.0754 nan 1.45 0.00332316 0.00292489 0.260135 0.230348 21 15543 38 1.452e+07 1.431e+07 -1 -1 8.90 1.02211 0.874365 39160 271852 -1 13921 16 7054 27883 1712984 292201 19.0623 nan -136.352 -19.0623 0 0 -1 -1 0.46 0.66 0.21 -1 -1 0.46 0.139528 0.123059 +k4_n4_v7_l1_bidir.xml apex2.blif common 52.00 vpr 71.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 598 38 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73052 38 3 1916 1919 0 1508 639 27 27 729 clb auto 29.3 MiB 0.50 20368 198711 63540 130621 4550 71.2 MiB 1.32 0.02 19.5349 -56.7155 -19.5349 nan 1.99 0.00443088 0.00386614 0.333877 0.293995 25 22646 41 1.875e+07 1.794e+07 -1 -1 41.58 1.70571 1.45087 55250 396047 -1 20496 14 9800 35327 3055493 423988 19.5858 nan -57.7976 -19.5858 0 0 -1 -1 0.69 0.94 0.30 -1 -1 0.69 0.162176 0.144077 +k4_n4_v7_l1_bidir.xml apex4.blif common 70.34 vpr 64.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 410 9 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66352 9 19 1271 1290 0 989 438 23 23 529 clb auto 25.3 MiB 0.32 13593 111792 33269 76922 1601 64.8 MiB 0.78 0.01 17.4441 -280.025 -17.4441 nan 1.30 0.00282461 0.00249568 0.216436 0.193116 24 16307 44 1.323e+07 1.23e+07 -1 -1 63.21 1.11363 0.950994 39522 283015 -1 14011 17 7335 26794 2589120 339808 17.324 nan -281.605 -17.324 0 0 -1 -1 0.47 0.73 0.21 -1 -1 0.47 0.124671 0.10992 +k4_n4_v7_l1_bidir.xml bigkey.blif common 20.32 vpr 78.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80848 229 197 2152 2349 1 1587 882 29 29 841 io auto 29.8 MiB 0.34 12928 449050 142972 294362 11716 78.9 MiB 2.23 0.03 10.9343 -2508.89 -10.9343 10.9343 2.27 0.00589735 0.00536017 0.639732 0.580781 13 13251 38 2.187e+07 1.368e+07 -1 -1 9.08 1.88627 1.68227 39906 235943 -1 11958 14 7356 20700 1195443 240334 11.7389 11.7389 -2706.25 -11.7389 0 0 -1 -1 0.42 0.63 0.18 -1 -1 0.42 0.200169 0.179468 +k4_n4_v7_l1_bidir.xml clma.blif common 307.18 vpr 251.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2521 62 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 257200 62 82 8460 8542 1 6346 2665 53 53 2809 clb auto 74.7 MiB 2.13 103093 1868034 747801 1104381 15852 216.9 MiB 13.60 0.13 39.2492 -2176.87 -39.2492 39.2492 8.80 0.0209799 0.0173447 2.24476 1.87174 32 104222 33 7.803e+07 7.563e+07 -1 -1 248.96 9.15262 7.49212 274482 2081397 -1 100635 17 42461 160041 22532310 4050975 39.0294 39.0294 -2247.27 -39.0294 0 0 -1 -1 4.31 6.62 1.62 -1 -1 4.31 0.864371 0.74718 +k4_n4_v7_l1_bidir.xml des.blif common 28.55 vpr 91.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93964 256 245 1847 2092 0 1443 950 34 34 1156 io auto 28.5 MiB 0.43 15906 393062 127116 252345 13601 91.8 MiB 1.94 0.02 20.3995 -3028.52 -20.3995 nan 3.33 0.00647824 0.00594822 0.580162 0.533469 13 16286 26 3.072e+07 1.347e+07 -1 -1 14.20 1.75238 1.60068 55296 328128 -1 15494 14 7727 25523 2266674 423135 19.7011 nan -3078.13 -19.7011 0 0 -1 -1 0.61 0.79 0.26 -1 -1 0.61 0.216889 0.199622 +k4_n4_v7_l1_bidir.xml diffeq.blif common 16.86 vpr 67.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 415 64 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69088 64 39 1935 1974 1 1102 518 23 23 529 clb auto 27.8 MiB 0.31 10492 141890 39582 99524 2784 67.5 MiB 0.93 0.01 13.2324 -3140.42 -13.2324 13.2324 1.25 0.00393511 0.00346711 0.293403 0.260449 17 11013 39 1.323e+07 1.245e+07 -1 -1 9.91 1.25508 1.07962 30282 197837 -1 10183 17 7161 24290 2102474 387542 13.998 13.998 -3530.12 -13.998 0 0 -1 -1 0.33 0.68 0.15 -1 -1 0.33 0.168619 0.147619 +k4_n4_v7_l1_bidir.xml dsip.blif common 18.37 vpr 77.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79164 229 197 1815 2012 1 1190 816 29 29 841 io auto 27.8 MiB 0.37 11598 374294 119751 244235 10308 77.1 MiB 1.79 0.02 10.0144 -2422.01 -10.0144 10.0144 2.27 0.00514724 0.00470645 0.513885 0.469075 13 11442 27 2.187e+07 1.17e+07 -1 -1 7.76 1.49451 1.34677 39906 235943 -1 11038 14 6322 21798 1233985 243124 9.72035 9.72035 -2465.43 -9.72035 0 0 -1 -1 0.42 0.55 0.18 -1 -1 0.42 0.175175 0.15871 +k4_n4_v7_l1_bidir.xml elliptic.blif common 98.79 vpr 110.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1000 131 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 113220 131 114 4855 4969 1 2139 1245 34 34 1156 clb auto 44.4 MiB 0.79 31868 570320 201737 361297 7286 110.5 MiB 3.55 0.04 27.5367 -15528.6 -27.5367 27.5367 3.36 0.0103214 0.00878102 0.980741 0.83959 25 34137 34 3.072e+07 3e+07 -1 -1 79.42 3.92865 3.3214 89088 639360 -1 31463 15 11772 53132 5712872 950004 27.6157 27.6157 -16433.5 -27.6157 0 0 -1 -1 1.22 1.85 0.49 -1 -1 1.22 0.38528 0.335882 +k4_n4_v7_l1_bidir.xml ex1010.blif common 71.36 vpr 151.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1507 10 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 155104 10 10 4608 4618 0 3617 1527 41 41 1681 clb auto 48.7 MiB 1.10 45297 766170 281250 482628 2292 151.5 MiB 5.42 0.06 34.262 -331.976 -34.262 nan 4.96 0.010008 0.00836927 0.919051 0.775111 22 50207 44 4.563e+07 4.521e+07 -1 -1 43.29 3.61641 3.00912 118482 826103 -1 45736 19 25518 101876 6500789 1048212 33.9643 nan -327.132 -33.9643 0 0 -1 -1 1.65 2.62 0.63 -1 -1 1.65 0.47744 0.411914 +k4_n4_v7_l1_bidir.xml ex5p.blif common 44.40 vpr 63.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 342 8 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 8 63 1072 1135 0 906 413 21 21 441 clb auto 24.3 MiB 0.26 11525 103392 30541 70852 1999 63.6 MiB 0.70 0.01 15.3987 -683.467 -15.3987 nan 1.04 0.00321359 0.00293638 0.201974 0.182425 24 13975 43 1.083e+07 1.026e+07 -1 -1 38.32 0.992793 0.856134 32642 233591 -1 11974 18 7588 26729 2496486 384914 15.4966 nan -702.501 -15.4966 0 0 -1 -1 0.37 0.71 0.17 -1 -1 0.37 0.117593 0.103388 +k4_n4_v7_l1_bidir.xml frisc.blif common 214.96 vpr 113.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1051 20 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 116160 20 116 4445 4561 1 2326 1187 35 35 1225 clb auto 43.0 MiB 0.92 38041 547721 194194 343617 9910 113.0 MiB 3.78 0.04 29.669 -17468.6 -29.669 29.669 3.65 0.0104562 0.00890534 0.987355 0.843382 28 41548 42 3.267e+07 3.153e+07 -1 -1 193.33 4.28678 3.61947 103554 761463 -1 38134 16 14316 62718 7007768 1275611 29.914 29.914 -18147.8 -29.914 0 0 -1 -1 1.47 2.22 0.58 -1 -1 1.47 0.390519 0.341641 +k4_n4_v7_l1_bidir.xml misex3.blif common 27.78 vpr 65.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 431 14 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67308 14 14 1411 1425 0 1079 459 23 23 529 clb auto 26.1 MiB 0.34 13570 115444 35365 77921 2158 65.7 MiB 0.85 0.01 16.5481 -214.047 -16.5481 nan 1.32 0.00343151 0.00304105 0.24315 0.215567 23 16411 49 1.323e+07 1.293e+07 -1 -1 20.41 1.3145 1.12146 37674 266685 -1 14120 17 7506 27271 2802281 504310 16.6457 nan -222.192 -16.6457 0 0 -1 -1 0.44 0.81 0.20 -1 -1 0.44 0.135567 0.118838 +k4_n4_v7_l1_bidir.xml pdc.blif common 437.89 vpr 157.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1534 16 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 161200 16 40 4591 4631 0 3629 1590 42 42 1764 clb auto 49.8 MiB 1.39 68418 892086 346558 540595 4933 150.8 MiB 6.20 0.06 36.7881 -1303.9 -36.7881 nan 5.29 0.0108622 0.0090833 1.1235 0.946351 36 77639 35 4.8e+07 4.602e+07 -1 -1 401.76 4.81213 3.9872 183520 1412616 -1 72478 20 26645 109578 24577553 5074635 37.3294 nan -1337.86 -37.3294 0 0 -1 -1 2.82 6.79 0.98 -1 -1 2.82 0.586723 0.509447 +k4_n4_v7_l1_bidir.xml s298.blif common 29.05 vpr 69.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 560 4 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71512 4 6 1942 1948 1 1191 570 26 26 676 clb auto 29.2 MiB 0.36 13678 163548 49020 113454 1074 69.8 MiB 1.14 0.02 27.2823 -210.916 -27.2823 27.2823 1.75 0.00488208 0.00428492 0.362234 0.32063 18 15471 48 1.728e+07 1.68e+07 -1 -1 19.80 1.58254 1.35503 41472 276960 -1 13523 17 7420 36189 2499380 342718 27.1897 27.1897 -216.357 -27.1897 0 0 -1 -1 0.48 0.86 0.22 -1 -1 0.48 0.190748 0.168076 +k4_n4_v7_l1_bidir.xml s38417.blif common 62.77 vpr 176.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1733 29 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 180732 29 106 7534 7640 1 4762 1868 44 44 1936 clb auto 62.2 MiB 1.34 45056 1071275 385192 670718 15365 176.5 MiB 7.66 0.09 22.5444 -13519.5 -22.5444 22.5444 5.84 0.0166307 0.0137461 1.62748 1.36367 17 41539 30 5.292e+07 5.199e+07 -1 -1 28.66 4.9169 4.07306 115248 760028 -1 40571 17 28994 95236 7408027 1333632 22.6581 22.6581 -14950.1 -22.6581 0 0 -1 -1 1.55 2.74 0.61 -1 -1 1.55 0.707924 0.608179 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 94.65 vpr 176.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1648 38 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 180704 38 304 7475 7779 1 4417 1990 43 43 1849 clb auto 61.6 MiB 1.24 43720 1178118 437684 717506 22928 176.5 MiB 6.99 0.08 18.7815 -12464.4 -18.7815 18.7815 5.81 0.0109664 0.00878091 1.39171 1.15557 18 41129 48 5.043e+07 4.944e+07 -1 -1 63.34 5.19924 4.32986 116850 784767 -1 37715 14 19654 59701 3392358 579896 18.1779 18.1779 -12910.9 -18.1779 0 0 -1 -1 1.60 1.66 0.60 -1 -1 1.60 0.59384 0.523831 +k4_n4_v7_l1_bidir.xml seq.blif common 87.69 vpr 68.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 542 41 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70276 41 35 1791 1826 0 1384 618 26 26 676 clb auto 28.5 MiB 0.42 18388 197943 61665 130902 5376 68.6 MiB 1.24 0.02 18.3637 -488.934 -18.3637 nan 1.71 0.00395188 0.00347761 0.310181 0.273588 24 21148 41 1.728e+07 1.626e+07 -1 -1 78.13 1.66505 1.41902 51072 366016 -1 18609 14 8765 31217 2658871 391227 18.2272 nan -500.696 -18.2272 0 0 -1 -1 0.65 0.84 0.28 -1 -1 0.65 0.153264 0.136189 +k4_n4_v7_l1_bidir.xml spla.blif common 301.36 vpr 127.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1235 16 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 130568 16 46 3706 3752 0 2877 1297 38 38 1444 clb auto 42.9 MiB 0.90 49708 630527 232378 394740 3409 127.1 MiB 4.25 0.05 28.3135 -974.196 -28.3135 nan 4.25 0.00881876 0.00744277 0.831837 0.708165 32 56984 38 3.888e+07 3.705e+07 -1 -1 274.14 3.82998 3.19488 138672 1051752 -1 53100 26 23199 100609 16532905 3013044 29.7405 nan -1062.74 -29.7405 0 0 -1 -1 2.02 4.75 0.81 -1 -1 2.02 0.553551 0.473188 +k4_n4_v7_l1_bidir.xml tseng.blif common 9.53 vpr 64.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 277 52 -1 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65628 52 122 1483 1605 1 737 451 19 19 361 clb auto 24.9 MiB 0.21 5983 109315 29948 75773 3594 64.1 MiB 0.67 0.01 11.3287 -2602.86 -11.3287 11.3287 0.82 0.00340983 0.00305651 0.232213 0.208878 15 7018 46 8.67e+06 8.31e+06 -1 -1 4.77 0.940926 0.819446 19074 119991 -1 5647 17 4142 14252 649546 124293 11.3704 11.3704 -2847.23 -11.3704 0 0 -1 -1 0.19 0.32 0.09 -1 -1 0.19 0.129153 0.114061 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_reg_multiclock_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_reg_multiclock_mcnc/config/golden_results.txt index a17254a9060..76aa77f8ebe 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_reg_multiclock_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_reg_multiclock_mcnc/config/golden_results.txt @@ -1,11 +1,11 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_40nm.xml bigkey.blif common 11.09 vpr 64.96 MiB -1 -1 -1 -1 3 0.87 -1 -1 38288 -1 -1 53 229 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 66520 229 197 1023 1220 1 510 479 16 16 256 io auto 26.9 MiB 0.59 3590 65.0 MiB 1.17 0.02 2.09742 -520.234 -2.09742 2.09742 1.28 0.00489568 0.00446581 0.459803 0.420411 38 6231 19 1.05632e+07 2.85638e+06 667532. 2607.55 3.26 1.24874 1.13414 25328 137766 -1 5709 10 1328 2368 138222 31100 0 0 138222 31100 2368 1614 0 0 4701 4003 0 0 5157 4706 0 0 2558 1758 0 0 62477 9413 0 0 60961 9606 0 0 2368 0 0 1070 6673 5385 55940 0 0 2.53491 2.53491 -631.681 -2.53491 0 0 843755. 3295.92 0.51 0.21 0.20 -1 -1 0.51 0.163422 0.152762 -k6_frac_N10_40nm.xml clma.blif common 12.45 vpr 62.59 MiB -1 -1 -1 -1 7 5.30 -1 -1 42756 -1 -1 77 36 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 64096 36 82 542 624 1 390 195 11 11 121 clb auto 24.5 MiB 0.89 2049 62.6 MiB 0.44 0.01 4.12702 -139.772 -4.12702 4.12702 0.52 0.0021971 0.0019592 0.173677 0.157129 40 4765 27 4.36541e+06 4.14984e+06 303235. 2506.08 2.48 0.573748 0.501788 11571 60661 -1 3811 17 2179 7425 230352 49600 0 0 230352 49600 7425 4188 0 0 9691 7996 0 0 13373 9691 0 0 8133 4883 0 0 91575 11969 0 0 100155 10873 0 0 7425 0 0 5305 11776 12068 87508 0 0 4.72633 4.72633 -172.493 -4.72633 0 0 379421. 3135.71 0.21 0.19 0.09 -1 -1 0.21 0.105191 0.0955238 -k6_frac_N10_40nm.xml diffeq.blif common 7.38 vpr 64.31 MiB -1 -1 -1 -1 8 0.92 -1 -1 37852 -1 -1 51 64 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 65852 64 39 941 980 1 450 154 10 10 100 clb auto 26.4 MiB 1.12 2676 64.3 MiB 0.36 0.01 4.29927 -776.73 -4.29927 4.29927 0.41 0.00318284 0.00284228 0.174702 0.156148 46 4588 16 3.44922e+06 2.74859e+06 276332. 2763.32 1.96 0.728727 0.63216 9816 55112 -1 4229 15 1767 5248 152494 32440 0 0 152494 32440 5248 2535 0 0 7137 5611 0 0 9484 7140 0 0 5564 2892 0 0 62251 7513 0 0 62810 6749 0 0 5248 0 0 3586 10609 10982 91545 0 0 5.1527 5.1527 -909.086 -5.1527 0 0 354105. 3541.05 0.18 0.21 0.08 -1 -1 0.18 0.154132 0.140152 -k6_frac_N10_40nm.xml dsip.blif common 14.10 vpr 66.53 MiB -1 -1 -1 -1 3 0.77 -1 -1 38148 -1 -1 68 229 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 68128 229 197 1135 1332 1 648 494 16 16 256 io auto 28.6 MiB 1.44 4921 66.5 MiB 1.45 0.02 2.05678 -537.964 -2.05678 2.05678 1.27 0.00523242 0.00465514 0.516453 0.465968 36 8990 21 1.05632e+07 3.66479e+06 638738. 2495.07 5.01 1.71505 1.54063 24820 128426 -1 8106 12 2276 5612 323677 69139 0 0 323677 69139 5448 3394 0 0 10371 8599 0 0 12155 10399 0 0 5830 3831 0 0 142856 21791 0 0 147017 21125 0 0 5448 0 0 3238 15203 16651 151622 218 0 2.59846 2.59846 -678.186 -2.59846 0 0 786978. 3074.13 0.48 0.31 0.18 -1 -1 0.48 0.204494 0.19079 -k6_frac_N10_40nm.xml elliptic.blif common 22.37 vpr 75.06 MiB -1 -1 -1 -1 10 3.19 -1 -1 42308 -1 -1 133 131 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 76860 131 114 2471 2585 1 967 378 14 14 196 clb auto 37.8 MiB 4.79 9202 75.1 MiB 1.53 0.03 6.00251 -3050.7 -6.00251 6.00251 0.94 0.00903807 0.00682576 0.579665 0.50248 64 16031 41 7.76074e+06 7.1679e+06 810706. 4136.26 6.50 2.18426 1.879 22444 164128 -1 14254 16 4284 17997 698961 120654 0 0 698961 120654 17066 7258 0 0 25001 19375 0 0 34099 25020 0 0 18166 8310 0 0 300915 30177 0 0 303714 30514 0 0 17066 0 0 13082 66929 65737 404826 1037 94 7.04139 7.04139 -3672.36 -7.04139 0 0 1.00880e+06 5146.95 0.54 0.62 0.25 -1 -1 0.54 0.39519 0.359377 -k6_frac_N10_40nm.xml frisc.blif common 39.31 vpr 76.40 MiB -1 -1 -1 -1 12 4.86 -1 -1 42764 -1 -1 153 20 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 78236 20 116 2477 2593 1 1097 289 15 15 225 clb auto 39.2 MiB 5.61 13235 76.4 MiB 1.48 0.02 7.08157 -3353.27 -7.08157 7.08157 1.12 0.00777018 0.00683065 0.555868 0.482136 80 22726 42 9.10809e+06 8.24578e+06 1.12687e+06 5008.33 19.82 3.66428 3.12163 28171 234221 -1 19580 15 5661 25029 1100753 177994 0 0 1100753 177994 23995 9704 0 0 32813 27187 0 0 46259 32841 0 0 25304 11230 0 0 476025 49351 0 0 496357 47681 0 0 23995 0 0 18691 91271 92310 563102 1202 36 8.34828 8.34828 -3982.46 -8.34828 0 0 1.41774e+06 6301.08 0.77 0.76 0.37 -1 -1 0.77 0.406691 0.370562 -k6_frac_N10_40nm.xml s298.blif common 8.32 vpr 64.20 MiB -1 -1 -1 -1 8 1.26 -1 -1 37988 -1 -1 62 4 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 65744 4 6 671 677 1 352 72 10 10 100 clb auto 26.2 MiB 1.48 3508 64.2 MiB 0.20 0.01 4.79301 -39.1818 -4.79301 4.79301 0.41 0.00281004 0.00244193 0.100141 0.0899831 50 5642 44 3.44922e+06 3.34143e+06 295697. 2956.97 2.45 0.693281 0.593077 10016 58256 -1 5050 17 2138 10782 337740 61219 0 0 337740 61219 10782 4866 0 0 13103 10921 0 0 18097 13103 0 0 11931 5592 0 0 139520 12944 0 0 144307 13793 0 0 10782 0 0 8939 35259 46626 395774 0 0 5.55589 5.55589 -47.4222 -5.55589 0 0 379824. 3798.24 0.19 0.28 0.09 -1 -1 0.19 0.155328 0.141099 -k6_frac_N10_40nm.xml s38417.blif common 35.01 vpr 80.68 MiB -1 -1 -1 -1 6 6.99 -1 -1 45824 -1 -1 178 29 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 82616 29 106 3450 3556 1 1206 313 16 16 256 clb auto 43.6 MiB 4.08 9735 80.7 MiB 1.71 0.02 4.1003 -2647.73 -4.1003 4.1003 1.26 0.0089987 0.00769758 0.73667 0.622294 50 16598 31 1.05632e+07 9.59313e+06 843755. 3295.92 13.97 3.96136 3.30892 27116 171776 -1 14184 14 5218 17339 563986 111457 0 0 563986 111457 15524 7988 0 0 23415 18806 0 0 29370 23441 0 0 16511 9004 0 0 238711 26535 0 0 240455 25683 0 0 15524 0 0 10410 37865 39613 194198 2271 446 4.90849 4.90849 -3063.34 -4.90849 0 0 1.08660e+06 4244.53 0.63 0.67 0.25 -1 -1 0.63 0.507339 0.462074 -k6_frac_N10_40nm.xml s38584.1.blif common 29.70 vpr 80.75 MiB -1 -1 -1 -1 6 4.95 -1 -1 44500 -1 -1 197 38 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 82688 38 304 3259 3563 1 1569 539 17 17 289 clb auto 44.0 MiB 5.29 10132 80.8 MiB 2.68 0.04 3.66766 -2189.34 -3.66766 3.66766 1.48 0.0101313 0.00844687 0.960745 0.815623 58 18045 29 1.21262e+07 1.06171e+07 1.11519e+06 3858.79 7.90 3.00691 2.56312 32499 230706 -1 16150 15 5235 13970 535313 110316 0 0 535313 110316 13542 7772 0 0 20688 17182 0 0 25956 20709 0 0 14450 9111 0 0 230671 27694 0 0 230006 27848 0 0 13542 0 0 8376 19501 21251 124362 466 104 4.52216 4.52216 -2592.43 -4.52216 0 0 1.41877e+06 4909.24 0.84 0.70 0.34 -1 -1 0.84 0.548886 0.499136 -k6_frac_N10_40nm.xml tseng.blif common 6.60 vpr 62.36 MiB -1 -1 -1 -1 7 0.59 -1 -1 37868 -1 -1 34 52 -1 -1 success v8.0.0-8583-g9d391eb99 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-09-26T23:58:21 mustang /local_scratch/t64ks/VTR/abc/vtr-verilog-to-routing/vtr_flow 63852 52 122 664 786 1 355 208 8 8 64 io clb auto 24.5 MiB 1.12 1722 62.4 MiB 0.30 0.01 3.67867 -543.309 -3.67867 3.67867 0.22 0.00256458 0.00232002 0.12286 0.111387 60 3348 21 1.94018e+06 1.8324e+06 209903. 3279.73 2.54 0.781213 0.681563 6596 40562 -1 2925 12 1076 2803 103485 26847 0 0 103485 26847 2803 1660 0 0 4581 3821 0 0 5510 4584 0 0 3008 1884 0 0 43789 7618 0 0 43794 7280 0 0 2803 0 0 1760 3442 3255 27964 0 0 4.47179 4.47179 -637.579 -4.47179 0 0 263485. 4116.95 0.12 0.14 0.06 -1 -1 0.12 0.102091 0.0938896 +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_40nm.xml bigkey.blif common 15.50 vpr 63.39 MiB -1 -1 -1 -1 3 0.37 -1 -1 34844 -1 -1 53 229 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 229 197 1023 1220 1 510 479 16 16 256 io auto 24.2 MiB 0.27 3412 154065 46239 98678 9148 63.4 MiB 0.95 0.01 2.41239 -578.515 -2.41239 2.41239 0.79 0.00631748 0.00590554 0.537724 0.50284 34 6563 36 1.05632e+07 2.85638e+06 613832. 2397.78 10.54 3.12398 2.91529 24564 122629 -1 5999 13 1330 2398 156004 35692 2.69369 2.69369 -639.318 -2.69369 0 0 751777. 2936.63 0.21 0.25 0.16 -1 -1 0.21 0.197289 0.185691 +k6_frac_N10_40nm.xml clma.blif common 8.18 vpr 60.61 MiB -1 -1 -1 -1 7 2.28 -1 -1 39892 -1 -1 77 36 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62060 36 82 542 624 1 389 195 11 11 121 clb auto 21.8 MiB 0.54 2075 39180 14775 18229 6176 60.6 MiB 0.39 0.01 4.56725 -162.762 -4.56725 4.56725 0.32 0.00290424 0.00269628 0.21446 0.199553 40 4742 31 4.36541e+06 4.14984e+06 303235. 2506.08 2.72 0.896352 0.821286 11571 60661 -1 3946 19 2186 7344 217806 45734 4.7836 4.7836 -183.173 -4.7836 0 0 379421. 3135.71 0.09 0.20 0.08 -1 -1 0.09 0.124637 0.115259 +k6_frac_N10_40nm.xml diffeq.blif common 5.52 vpr 62.28 MiB -1 -1 -1 -1 8 0.40 -1 -1 34272 -1 -1 52 64 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 64 39 941 980 1 449 155 10 10 100 clb auto 23.5 MiB 0.73 2754 14299 2774 10573 952 62.3 MiB 0.27 0.01 5.00123 -878.262 -5.00123 5.00123 0.25 0.00444533 0.00408514 0.170524 0.156838 46 4930 28 3.44922e+06 2.80249e+06 276332. 2763.32 2.10 0.960344 0.875051 9816 55112 -1 4472 14 1803 5492 169063 35103 5.16783 5.16783 -930.109 -5.16783 0 0 354105. 3541.05 0.08 0.21 0.08 -1 -1 0.08 0.15494 0.143538 +k6_frac_N10_40nm.xml dsip.blif common 9.71 vpr 64.65 MiB -1 -1 -1 -1 3 0.33 -1 -1 34640 -1 -1 68 229 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66204 229 197 1135 1332 1 648 494 16 16 256 io auto 25.3 MiB 0.73 4700 170318 50861 109699 9758 64.7 MiB 1.18 0.02 2.3875 -617.47 -2.3875 2.3875 0.78 0.00683703 0.00637878 0.619128 0.577611 34 9287 43 1.05632e+07 3.66479e+06 613832. 2397.78 3.93 2.05956 1.91939 24564 122629 -1 8151 13 2265 5666 327590 69866 2.60848 2.60848 -674.007 -2.60848 0 0 751777. 2936.63 0.21 0.32 0.16 -1 -1 0.21 0.222292 0.209372 +k6_frac_N10_40nm.xml elliptic.blif common 15.88 vpr 72.66 MiB -1 -1 -1 -1 10 1.34 -1 -1 37424 -1 -1 133 131 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74408 131 114 2471 2585 1 970 378 14 14 196 clb auto 32.2 MiB 3.03 9165 74142 19344 51191 3607 72.7 MiB 1.13 0.02 7.14215 -3414.64 -7.14215 7.14215 0.57 0.0112416 0.0101644 0.638433 0.581928 64 15825 36 7.76074e+06 7.1679e+06 810706. 4136.26 5.95 2.90989 2.65593 22444 164128 -1 14159 17 4519 20253 781043 131442 7.47917 7.47917 -3699.02 -7.47917 0 0 1.00880e+06 5146.95 0.24 0.70 0.25 -1 -1 0.24 0.461466 0.427062 +k6_frac_N10_40nm.xml frisc.blif common 19.77 vpr 74.44 MiB -1 -1 -1 -1 12 2.03 -1 -1 37396 -1 -1 153 20 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76224 20 116 2477 2593 1 1088 289 15 15 225 clb auto 33.6 MiB 3.85 12581 59499 15581 39947 3971 74.4 MiB 1.33 0.02 8.14365 -3747.83 -8.14365 8.14365 0.64 0.0112947 0.0102836 0.764701 0.696515 74 21933 44 9.10809e+06 8.24578e+06 1.06098e+06 4715.46 8.34 3.32442 3.03038 27275 217117 -1 19654 18 5722 25295 1201911 194668 8.26982 8.26982 -3960.51 -8.26982 0 0 1.32822e+06 5903.22 0.30 0.43 0.18 -1 -1 0.30 0.243345 0.22521 +k6_frac_N10_40nm.xml s298.blif common 7.43 vpr 62.24 MiB -1 -1 -1 -1 8 0.57 -1 -1 33856 -1 -1 61 4 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 4 6 671 677 1 350 71 10 10 100 clb auto 23.4 MiB 0.92 3493 3283 433 2659 191 62.2 MiB 0.16 0.01 5.33805 -43.3781 -5.33805 5.33805 0.25 0.00397189 0.00366099 0.105657 0.0981952 52 5783 22 3.44922e+06 3.28753e+06 305142. 3051.42 3.75 1.33758 1.22437 10212 61796 -1 5397 17 2148 10775 376607 64965 5.90507 5.90507 -48.8576 -5.90507 0 0 401807. 4018.07 0.09 0.27 0.09 -1 -1 0.09 0.165044 0.153465 +k6_frac_N10_40nm.xml s38417.blif common 18.81 vpr 78.45 MiB -1 -1 -1 -1 6 3.02 -1 -1 42408 -1 -1 179 29 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80332 29 106 3450 3556 1 1198 314 16 16 256 clb auto 37.5 MiB 2.17 8989 70670 18144 45519 7007 78.4 MiB 1.55 0.02 4.74073 -2890.12 -4.74073 4.74073 0.79 0.0138904 0.0125607 0.984666 0.887956 48 14980 41 1.05632e+07 9.64703e+06 819368. 3200.65 6.57 4.33054 3.91711 26860 167058 -1 13212 15 5024 17286 529604 104654 4.75139 4.75139 -2966.77 -4.75139 0 0 1.04748e+06 4091.72 0.30 0.71 0.23 -1 -1 0.30 0.554676 0.511839 +k6_frac_N10_40nm.xml s38584.1.blif common 18.55 vpr 78.51 MiB -1 -1 -1 -1 6 2.16 -1 -1 40952 -1 -1 194 38 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80396 38 304 3259 3563 1 1574 536 16 16 256 clb auto 37.8 MiB 2.15 9889 183320 55884 108640 18796 78.5 MiB 2.36 0.03 4.27217 -2394.9 -4.27217 4.27217 0.56 0.0145306 0.0132396 1.31178 1.18976 58 17695 25 1.05632e+07 1.04554e+07 977637. 3818.90 7.00 4.20263 3.82602 28644 201685 -1 15484 13 5074 13582 483608 102794 4.69981 4.69981 -2495.41 -4.69981 0 0 1.24374e+06 4858.37 0.31 0.65 0.30 -1 -1 0.31 0.521931 0.485523 +k6_frac_N10_40nm.xml tseng.blif common 4.95 vpr 60.83 MiB -1 -1 -1 -1 7 0.25 -1 -1 34444 -1 -1 34 52 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62292 52 122 664 786 1 355 208 8 8 64 io clb auto 22.2 MiB 0.71 1783 26080 5856 18588 1636 60.8 MiB 0.28 0.01 4.2185 -596.347 -4.2185 4.2185 0.15 0.00333934 0.00308628 0.153624 0.142133 58 3398 46 1.94018e+06 1.8324e+06 203254. 3175.84 2.23 1.20749 1.10156 6532 39661 -1 2965 13 1169 3143 108747 29150 4.26194 4.26194 -630.352 -4.26194 0 0 258247. 4035.11 0.06 0.15 0.06 -1 -1 0.06 0.107329 0.0995631 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt index 898805268aa..e665c066fed 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt @@ -1,20 +1,22 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 347.81 vpr 304.34 MiB -1 -1 53.82 126076 20 102.96 -1 -1 71768 -1 -1 845 133 25 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 311640 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 151.9 MiB 50.58 126345 644623 217282 405134 22207 183.8 MiB 12.91 0.12 22.8575 -211550 -22.8575 22.8575 4.26 0.0208839 0.0180153 2.30248 1.95168 118 188142 29 7.21828e+07 5.92414e+07 9.54364e+06 7363.92 90.75 10.1752 8.78955 197456 2042276 -1 170705 18 30798 120350 10309620 1762251 23.8995 23.8995 -217733 -23.8995 0 0 1.20761e+07 9318.00 4.68 3.99 1.91 -1 -1 4.68 1.80003 1.67655 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 609.57 vpr 673.32 MiB -1 -1 110.72 637372 14 109.75 -1 -1 123556 -1 -1 2709 257 0 11 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 689476 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 374.2 MiB 80.49 245363 2130981 751008 1352357 27616 673.3 MiB 62.83 0.50 19.0314 -25569.1 -19.0314 19.0314 46.35 0.0460908 0.0383097 6.55815 5.62157 74 395685 32 2.36641e+08 1.50357e+08 2.02178e+07 5093.92 106.43 20.8968 18.3205 502298 4195434 -1 378412 19 99298 447896 21524472 3194789 19.3163 19.3163 -26089.1 -19.3163 0 0 2.53694e+07 6391.88 9.63 8.78 3.12 -1 -1 9.63 4.18202 3.90547 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 201.41 parmys 257.95 MiB -1 -1 35.09 264144 5 13.58 -1 -1 58532 -1 -1 495 36 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 144028 36 100 10178 7632 1 2757 631 29 29 841 clb auto 105.3 MiB 42.59 42156 227851 67230 146075 14546 139.0 MiB 9.05 0.07 15.3153 -2397.59 -15.3153 15.3153 5.91 0.00886581 0.00764147 1.62099 1.37247 70 73490 44 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 56.82 7.51808 6.43158 101140 791177 -1 62580 14 12938 66339 2702589 385416 15.7284 15.7284 -2623.12 -15.7284 0 0 4.87732e+06 5799.43 3.65 2.41 1.30 -1 -1 3.65 1.41093 1.29701 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 68.83 vpr 71.76 MiB -1 -1 42.19 47728 3 2.80 -1 -1 38764 -1 -1 45 196 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73484 196 193 1201 1346 1 603 435 15 15 225 io auto 33.9 MiB 2.13 2836 148665 42382 92853 13430 71.8 MiB 1.73 0.05 2.37784 -1101.45 -2.37784 2.37784 2.08 0.00161879 0.00149054 0.54454 0.52938 38 6358 28 1.03862e+07 2.97323e+06 544116. 2418.30 6.71 2.2937 2.24835 21558 109668 -1 5494 12 1894 2912 215378 57193 2.6555 2.6555 -1189.81 -2.6555 0 0 690508. 3068.92 0.86 0.36 0.25 -1 -1 0.86 0.22943 0.226118 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 27.79 vpr 65.73 MiB -1 -1 0.79 20976 3 2.93 -1 -1 36028 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67308 99 130 344 474 1 227 298 12 12 144 clb auto 27.6 MiB 0.58 665 70943 20214 37821 12908 65.7 MiB 0.55 0.00 1.89985 -118.566 -1.89985 1.89985 1.38 0.000421795 0.00037894 0.0828386 0.0318536 34 1521 10 5.66058e+06 4.21279e+06 293035. 2034.97 6.21 1.02139 0.805486 12374 55836 -1 1460 10 374 563 37546 11495 1.99363 1.99363 -142.699 -1.99363 0 0 360780. 2505.42 0.27 0.36 0.05 -1 -1 0.27 0.161709 0.160873 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 44.43 vpr 69.55 MiB -1 -1 0.97 24456 5 3.01 -1 -1 36672 -1 -1 32 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71220 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 31.9 MiB 2.13 4888 98395 35924 54623 7848 69.6 MiB 1.77 0.01 15.9849 -1245.5 -15.9849 15.9849 2.29 0.00115952 0.00104783 0.386678 0.374306 54 11517 39 1.21132e+07 3.70461e+06 835786. 3264.79 16.35 2.53611 2.49579 26808 168260 -1 9045 20 3002 4894 999650 272771 17.368 17.368 -1361.81 -17.368 0 0 1.08607e+06 4242.47 0.87 1.21 0.25 -1 -1 0.87 0.122627 0.118201 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 46.07 vpr 67.30 MiB -1 -1 0.72 23560 5 3.00 -1 -1 36612 -1 -1 22 66 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68912 66 96 778 595 1 467 189 16 16 256 mult_36 auto 29.4 MiB 1.79 3517 47885 16325 27094 4466 67.3 MiB 1.18 0.00 12.1762 -748.789 -12.1762 12.1762 2.58 0.000842852 0.000763987 0.359297 0.351805 58 7863 24 1.21132e+07 3.16567e+06 904541. 3533.36 18.49 1.41528 1.26838 27572 180683 -1 6689 20 3225 6789 1347145 406246 12.9279 12.9279 -808.846 -12.9279 0 0 1.15318e+06 4504.63 1.45 1.49 0.68 -1 -1 1.45 0.520221 0.517106 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 222.40 vpr 316.47 MiB -1 -1 37.56 120696 5 12.17 -1 -1 48188 -1 -1 476 506 44 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 324064 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 59.2 MiB 13.91 15054 1214791 602860 418994 192937 316.5 MiB 10.67 0.15 8.181 -2068.91 -8.181 8.181 61.93 0.0478123 0.0467326 4.39858 4.10555 38 22965 15 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 37.86 11.6146 11.063 258216 1426232 -1 21977 13 3929 4973 1082649 250286 8.4247 8.4247 -2363.08 -8.4247 0 0 8.69102e+06 3476.41 6.90 1.02 2.33 -1 -1 6.90 0.89153 0.854835 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 80.08 vpr 73.72 MiB -1 -1 2.94 28272 2 2.91 -1 -1 37080 -1 -1 30 311 15 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75492 311 156 1015 1158 1 965 512 28 28 784 memory auto 33.5 MiB 2.55 8030 186789 65892 110912 9985 71.5 MiB 2.59 0.01 4.09928 -4345.67 -4.09928 4.09928 7.88 0.00264172 0.00233751 1.56568 1.07686 40 14144 15 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 37.35 4.22736 3.45946 78662 432578 -1 13229 14 2738 3114 772542 202185 4.11992 4.11992 -5043.32 -4.11992 -0.00271738 -0.00135869 2.67004e+06 3405.67 3.00 0.93 1.00 -1 -1 3.00 0.313183 0.307375 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 84.20 vpr 83.47 MiB -1 -1 16.05 54968 5 7.85 -1 -1 42776 -1 -1 167 193 5 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85476 193 205 2718 2652 1 1363 570 20 20 400 memory auto 46.0 MiB 10.28 10491 250942 88000 136250 26692 83.5 MiB 4.78 0.02 5.61304 -2876.77 -5.61304 5.61304 3.18 0.00324013 0.00285266 1.01821 0.915768 50 19733 40 2.07112e+07 1.17403e+07 1.26946e+06 3173.65 24.29 3.27003 3.08922 41784 253636 -1 16894 15 4991 12342 710062 143690 5.67088 5.67088 -3192.42 -5.67088 0 0 1.63222e+06 4080.54 1.47 0.91 0.47 -1 -1 1.47 0.694707 0.682032 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 169.02 vpr 124.16 MiB -1 -1 13.02 65968 8 13.01 -1 -1 44472 -1 -1 246 385 2 1 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 127144 385 362 4415 4299 1 2357 996 26 26 676 io auto 61.4 MiB 24.26 29214 557860 213197 320693 23970 98.2 MiB 14.97 0.17 8.92238 -9638.73 -8.92238 8.92238 5.87 0.0071698 0.00653702 2.02958 1.88836 104 42662 20 3.69863e+07 1.47499e+07 4.35880e+06 6447.93 71.20 9.70041 8.85034 97140 924598 -1 41533 17 8831 29448 1716817 288797 8.83648 8.83648 -9970.03 -8.83648 0 0 5.53220e+06 8183.73 4.32 1.77 1.63 -1 -1 4.32 0.929065 0.874115 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 79.85 vpr 85.10 MiB -1 -1 9.42 44716 3 3.09 -1 -1 40836 -1 -1 122 236 1 6 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87140 236 305 3199 3011 1 1513 670 19 19 361 io auto 48.1 MiB 9.05 11986 276090 94198 168472 13420 85.1 MiB 5.65 0.28 4.7515 -2838.34 -4.7515 4.7515 3.68 0.00383922 0.00344295 1.71538 1.62701 62 24333 38 1.72706e+07 9.49907e+06 1.42198e+06 3939.00 31.27 5.68352 4.99371 40483 281719 -1 20473 16 5845 14538 1304206 307506 5.04173 5.04173 -3066.08 -5.04173 0 0 1.76637e+06 4892.99 1.37 1.62 0.51 -1 -1 1.37 0.980672 0.969505 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 59.15 vpr 82.88 MiB -1 -1 5.62 47460 3 5.84 -1 -1 42856 -1 -1 139 38 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84872 38 36 2739 2488 1 1037 213 16 16 256 clb auto 45.7 MiB 6.78 8683 35138 8440 23818 2880 82.9 MiB 1.92 0.01 10.5532 -2964 -10.5532 10.5532 2.76 0.00221601 0.00187896 0.634926 0.269636 58 13510 42 1.21132e+07 7.49127e+06 904541. 3533.36 20.75 3.53901 2.77536 27572 180683 -1 11978 21 4001 9180 321108 56174 11.0143 11.0143 -3262.56 -11.0143 0 0 1.15318e+06 4504.63 1.42 0.92 0.46 -1 -1 1.42 0.520373 0.50522 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 48.71 vpr 73.43 MiB -1 -1 7.46 34864 16 2.07 -1 -1 38264 -1 -1 60 45 3 1 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75192 45 32 1192 1151 1 782 141 14 14 196 memory auto 35.8 MiB 7.86 6410 20637 4949 13652 2036 73.4 MiB 0.99 0.00 10.3793 -6863.03 -10.3793 10.3793 1.73 0.000510972 0.000411354 0.320782 0.307111 58 12825 20 9.20055e+06 5.27364e+06 687722. 3508.79 16.72 1.80931 1.49467 21260 137239 -1 10935 15 3457 9035 790330 187947 10.8157 10.8157 -7288.37 -10.8157 0 0 876180. 4470.31 1.00 0.75 0.34 -1 -1 1.00 0.215598 0.208783 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 214.41 vpr 231.37 MiB -1 -1 28.40 101752 5 22.98 -1 -1 69572 -1 -1 707 169 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 236924 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 176.0 MiB 30.75 39441 555664 177689 355200 22775 209.6 MiB 14.76 0.11 3.49056 -13720.1 -3.49056 3.49056 7.69 0.0159828 0.013251 4.26642 3.67362 50 62353 46 6.0475e+07 3.81032e+07 3.66263e+06 3363.29 66.28 17.9847 15.396 117303 744553 -1 55179 14 16293 25082 928288 182208 3.67335 3.67335 -14773.3 -3.67335 0 0 4.71657e+06 4331.10 4.56 3.09 1.04 -1 -1 4.56 2.86949 2.67286 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 248.31 vpr 257.57 MiB -1 -1 23.50 124136 3 30.99 -1 -1 77592 -1 -1 679 115 0 40 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 263748 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 171.5 MiB 26.70 79679 506315 166111 319409 20795 206.4 MiB 17.36 0.16 5.28452 -22625 -5.28452 5.28452 11.55 0.0145416 0.0122082 4.30753 3.77434 86 127927 38 9.16046e+07 5.24347e+07 8.98461e+06 5615.38 89.60 17.7748 15.2986 212028 1885476 -1 116528 16 32579 50376 8549482 1753543 5.41965 5.41965 -25069.6 -5.41965 0 0 1.13675e+07 7104.67 5.41 3.42 2.27 -1 -1 5.41 1.63902 1.54586 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 678.77 vpr 977.16 MiB -1 -1 34.91 197452 3 16.89 -1 -1 155756 -1 -1 1503 149 0 179 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1000616 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 355.4 MiB 54.28 292699 1704483 597811 1047225 59447 932.7 MiB 34.31 0.28 13.6001 -51949.9 -13.6001 13.6001 95.49 0.0496311 0.0435272 5.96807 5.1399 98 403418 22 3.90281e+08 1.51886e+08 4.18005e+07 6531.32 305.19 24.6846 21.6949 914680 8979364 -1 379407 21 98693 116240 14827595 2931097 14.4246 14.4246 -56744.4 -14.4246 0 0 5.30091e+07 8282.68 23.99 5.42 6.67 -1 -1 23.99 2.93403 2.73413 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 16.45 vpr 65.95 MiB -1 -1 1.59 25536 4 3.60 -1 -1 35268 -1 -1 15 11 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67536 11 2 303 283 2 80 28 7 7 49 clb auto 27.5 MiB 0.47 271 994 177 758 59 66.0 MiB 0.13 0.00 2.03512 -161.709 -2.03512 1.89824 0.09 0.000210013 0.000166542 0.120271 0.119043 26 394 10 1.07788e+06 808410 68696.0 1401.96 0.54 0.156422 0.150238 3516 12294 -1 368 11 215 371 6520 2328 2.14356 1.95295 -169.844 -2.14356 0 0 84249.8 1719.38 0.15 0.02 0.01 -1 -1 0.15 0.0160037 0.0148764 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 672.40 vpr 645.20 MiB -1 -1 138.72 453444 97 117.11 -1 -1 115976 -1 -1 2135 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 660688 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 347.6 MiB 67.29 228215 1805268 676105 1101345 27818 558.2 MiB 52.66 0.47 74.09 -55972 -74.09 74.09 35.19 0.0472997 0.0409668 6.53089 5.49597 100 328871 23 1.8697e+08 1.42894e+08 2.05038e+07 6538.21 184.66 29.9856 25.7028 448554 4379381 -1 309498 22 65393 254908 13629212 2316157 74.6103 74.6103 -67429.4 -74.6103 0 0 2.58676e+07 8248.60 10.66 6.38 3.38 -1 -1 10.66 3.79848 3.49687 +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 255.87 vpr 266.12 MiB -1 -1 33.21 121108 20 51.66 -1 -1 67420 -1 -1 852 133 25 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 272504 133 179 14228 14085 1 7083 1189 37 37 1369 clb auto 124.1 MiB 55.24 118769 611901 198399 390860 22642 182.9 MiB 12.74 0.12 23.082 -209424 -23.082 23.082 4.18 0.0401013 0.0351966 4.51768 3.8456 110 180467 24 7.54166e+07 5.96187e+07 9.46577e+06 6914.37 70.64 15.6471 13.0594 201652 2027183 -1 164262 14 29902 115834 9220015 1621549 24.3564 24.3564 -221310 -24.3564 0 0 1.20852e+07 8827.75 3.46 5.39 1.97 -1 -1 3.46 2.40428 2.08959 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 525.83 vpr 710.25 MiB -1 -1 69.20 614744 14 71.56 -1 -1 121924 -1 -1 2715 257 0 11 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 727296 257 32 36080 33722 1 19553 3015 63 63 3969 clb auto 301.2 MiB 92.74 248033 2180215 773829 1379285 27101 710.2 MiB 60.47 0.53 19.0622 -25745.4 -19.0622 19.0622 36.12 0.105944 0.0877618 11.3985 9.52259 74 394698 40 2.36641e+08 1.5068e+08 2.02178e+07 5093.92 113.40 35.3604 29.3374 502298 4195434 -1 380376 21 97229 438645 20887764 3077897 19.7741 19.7741 -26305.4 -19.7741 0 0 2.53694e+07 6391.88 9.43 13.49 3.91 -1 -1 9.43 6.66179 5.7969 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 88.16 parmys 244.68 MiB -1 -1 15.96 250556 5 3.94 -1 -1 54952 -1 -1 487 36 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 141756 36 100 10178 7632 1 2732 623 28 28 784 clb auto 89.6 MiB 21.09 41236 216002 63618 139932 12452 136.6 MiB 4.12 0.05 15.0315 -2401.76 -15.0315 15.0315 2.01 0.0200758 0.0181589 1.82478 1.61386 70 69778 28 4.25198e+07 2.62464e+07 3.59791e+06 4589.17 25.18 6.26144 5.39126 94322 733910 -1 61041 13 12371 63921 2526758 365216 15.5884 15.5884 -2563.65 -15.5884 0 0 4.52633e+06 5773.37 1.61 2.02 0.72 -1 -1 1.61 1.14017 1.00737 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 28.72 vpr 70.14 MiB -1 -1 19.91 45044 3 0.67 -1 -1 35452 -1 -1 44 196 1 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71828 196 193 1201 1346 1 607 434 15 15 225 io auto 31.5 MiB 0.79 2924 143288 42391 88468 12429 70.1 MiB 0.70 0.01 2.18307 -1105.54 -2.18307 2.18307 0.47 0.00366212 0.00341729 0.333891 0.310594 40 5977 15 1.03862e+07 2.91934e+06 568276. 2525.67 3.57 1.23727 1.13314 21782 113316 -1 5329 11 1700 2587 187113 48920 2.5066 2.5066 -1182.04 -2.5066 0 0 712852. 3168.23 0.17 0.16 0.11 -1 -1 0.17 0.113224 0.105684 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.56 vpr 65.28 MiB -1 -1 0.48 18496 3 0.09 -1 -1 33264 -1 -1 68 99 1 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66844 99 130 344 474 1 227 298 12 12 144 clb auto 26.4 MiB 0.28 665 70943 20214 37821 12908 65.3 MiB 0.26 0.00 1.89985 -118.566 -1.89985 1.89985 0.28 0.00130138 0.00123193 0.101489 0.0957523 34 1540 15 5.66058e+06 4.21279e+06 293035. 2034.97 0.82 0.368758 0.33821 12374 55836 -1 1457 10 403 605 42523 12642 1.99363 1.99363 -143.624 -1.99363 0 0 360780. 2505.42 0.08 0.06 0.06 -1 -1 0.08 0.0350922 0.0325653 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 9.67 vpr 68.42 MiB -1 -1 0.56 21980 5 0.19 -1 -1 33884 -1 -1 32 162 0 5 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70060 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 29.5 MiB 0.27 4888 98395 35924 54623 7848 68.4 MiB 0.68 0.01 15.9849 -1245.5 -15.9849 15.9849 0.53 0.00320112 0.00300688 0.336242 0.316142 52 12010 41 1.21132e+07 3.70461e+06 805949. 3148.24 4.85 1.09429 1.01247 26552 162987 -1 9148 19 3314 5627 1080193 297034 17.378 17.378 -1353.55 -17.378 0 0 1.06067e+06 4143.25 0.24 0.43 0.16 -1 -1 0.24 0.156249 0.145747 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 15.75 vpr 67.16 MiB -1 -1 0.40 21156 5 0.12 -1 -1 33328 -1 -1 22 66 0 5 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68768 66 96 778 595 1 467 189 16 16 256 mult_36 auto 28.4 MiB 0.56 3517 47885 16325 27094 4466 67.2 MiB 0.40 0.01 12.1762 -748.789 -12.1762 12.1762 0.53 0.00230453 0.0021795 0.213397 0.201764 52 8274 39 1.21132e+07 3.16567e+06 805949. 3148.24 11.14 1.09357 1.00673 26552 162987 -1 7068 21 3782 7774 1632015 443524 13.1607 13.1607 -839.522 -13.1607 0 0 1.06067e+06 4143.25 0.25 0.47 0.16 -1 -1 0.25 0.116281 0.107939 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 93.22 vpr 349.15 MiB -1 -1 17.44 116612 5 3.90 -1 -1 44528 -1 -1 476 506 44 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 357528 506 553 3236 3734 1 2872 1579 50 50 2500 memory auto 51.6 MiB 6.51 14971 1113690 526086 410342 177262 349.1 MiB 5.31 0.06 7.31968 -2110 -7.31968 7.31968 21.80 0.022942 0.0207528 2.90606 2.61748 38 22926 16 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 17.46 8.24531 7.48908 258216 1426232 -1 21797 17 3999 5239 1137467 266641 7.3073 7.3073 -2413.51 -7.3073 0 0 8.69102e+06 3476.41 2.86 1.20 1.27 -1 -1 2.86 0.966868 0.893014 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 16.39 vpr 71.90 MiB -1 -1 1.61 25648 2 0.13 -1 -1 34292 -1 -1 30 311 15 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73628 311 156 1015 1158 1 965 512 28 28 784 memory auto 31.5 MiB 0.75 8486 199071 71349 117527 10195 71.6 MiB 1.12 0.01 4.24477 -4356.51 -4.24477 4.24477 2.05 0.00569352 0.00505236 0.581736 0.512316 38 15147 15 4.25198e+07 9.83682e+06 2.03941e+06 2601.29 5.43 1.57592 1.39699 77878 418209 -1 13712 14 2926 3253 768340 194647 4.5197 4.5197 -4898.99 -4.5197 -0.00135869 -0.00135869 2.58563e+06 3298.00 0.81 0.39 0.38 -1 -1 0.81 0.212607 0.192934 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 31.31 vpr 81.52 MiB -1 -1 8.33 51772 5 1.65 -1 -1 39584 -1 -1 168 193 5 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83472 193 205 2718 2652 1 1369 571 20 20 400 memory auto 41.2 MiB 2.84 10405 249211 88189 134771 26251 81.5 MiB 2.00 0.02 5.54144 -2844.04 -5.54144 5.54144 0.90 0.00871169 0.00796795 0.931181 0.844897 52 18527 40 2.07112e+07 1.17942e+07 1.31074e+06 3276.84 10.58 3.66777 3.29251 42580 268535 -1 16553 14 4438 10865 633330 129099 5.75132 5.75132 -3050.13 -5.75132 0 0 1.72518e+06 4312.96 0.43 0.45 0.25 -1 -1 0.43 0.29671 0.272513 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 54.12 vpr 108.53 MiB -1 -1 6.76 61916 8 3.11 -1 -1 42448 -1 -1 244 385 2 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 111136 385 362 4415 4299 1 2362 994 26 26 676 io auto 53.0 MiB 8.19 28802 566206 220084 320639 25483 96.0 MiB 5.79 0.06 9.04335 -9663.12 -9.04335 9.04335 1.73 0.0171815 0.0155065 2.26812 2.05715 100 42993 19 3.69863e+07 1.46421e+07 4.20647e+06 6222.59 19.15 7.45516 6.79825 95112 886306 -1 41101 16 9376 30904 1717536 289820 9.07427 9.07427 -9946.4 -9.07427 0 0 5.30968e+06 7854.55 1.41 1.14 0.85 -1 -1 1.41 0.667977 0.624234 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 29.59 vpr 83.10 MiB -1 -1 5.06 41884 3 0.70 -1 -1 37624 -1 -1 123 236 1 6 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85092 236 305 3199 3011 1 1513 671 19 19 361 io auto 42.6 MiB 2.72 12120 320695 113510 191287 15898 83.1 MiB 2.30 0.03 4.73195 -2862.64 -4.73195 4.73195 0.87 0.00909231 0.00842401 1.03819 0.956171 64 23856 39 1.72706e+07 9.55296e+06 1.47376e+06 4082.44 12.62 4.13598 3.76865 41203 295207 -1 21273 20 6777 17874 2007335 442771 4.91953 4.91953 -3135.76 -4.91953 0 0 1.84179e+06 5101.91 0.42 0.88 0.27 -1 -1 0.42 0.439225 0.406927 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.29 vpr 80.88 MiB -1 -1 3.25 44644 3 1.27 -1 -1 38068 -1 -1 139 38 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82824 38 36 2739 2488 1 1037 213 16 16 256 clb auto 40.4 MiB 1.88 8683 35138 8440 23818 2880 80.9 MiB 0.71 0.01 10.5532 -2964 -10.5532 10.5532 0.57 0.00566854 0.00501568 0.347411 0.308041 58 13904 46 1.21132e+07 7.49127e+06 904541. 3533.36 4.60 2.08142 1.80839 27572 180683 -1 12013 19 4037 9495 325437 57075 11.0965 11.0965 -3476.79 -11.0965 0 0 1.15318e+06 4504.63 0.29 0.43 0.17 -1 -1 0.29 0.310158 0.278315 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 14.15 vpr 71.75 MiB -1 -1 3.80 31976 16 0.46 -1 -1 34924 -1 -1 61 45 3 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73472 45 32 1192 1151 1 777 142 14 14 196 memory auto 33.0 MiB 2.55 6628 27152 7327 16424 3401 71.8 MiB 0.53 0.01 10.702 -6928.42 -10.702 10.702 0.40 0.00352052 0.0031054 0.285483 0.251814 58 13671 36 9.20055e+06 5.32753e+06 687722. 3508.79 3.59 0.850596 0.740097 21260 137239 -1 11025 15 3480 9027 813623 192300 11.3683 11.3683 -7484.66 -11.3683 0 0 876180. 4470.31 0.19 0.36 0.14 -1 -1 0.19 0.168935 0.153487 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 83.57 vpr 228.68 MiB -1 -1 13.74 99196 5 5.87 -1 -1 66180 -1 -1 705 169 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 234168 169 197 23225 21365 1 6465 1071 33 33 1089 clb auto 147.2 MiB 9.64 39170 581633 186976 363755 30902 204.8 MiB 8.30 0.09 3.56268 -13928.8 -3.56268 3.56268 2.76 0.0390071 0.0341085 4.0399 3.46041 50 60580 25 6.0475e+07 3.79954e+07 3.66263e+06 3363.29 23.60 12.7263 10.6369 117303 744553 -1 54383 16 15818 25042 917816 181630 3.91171 3.91171 -15577.8 -3.91171 0 0 4.71657e+06 4331.10 1.28 1.78 0.67 -1 -1 1.28 1.62354 1.44041 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 146.24 vpr 326.46 MiB -1 -1 12.35 121528 3 10.77 -1 -1 74060 -1 -1 676 115 0 40 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 334300 115 145 22864 19301 1 9618 976 40 40 1600 mult_36 auto 143.4 MiB 8.87 80479 509071 165921 318245 24905 211.9 MiB 8.29 0.08 5.56775 -22677.1 -5.56775 5.56775 4.58 0.0305357 0.0263168 3.52948 3.01259 88 126673 45 9.16046e+07 5.2273e+07 9.19823e+06 5748.90 75.74 16.6276 13.971 213624 1916262 -1 116105 14 31404 47815 7424249 1570128 5.60942 5.60942 -24546.4 -5.60942 0 0 1.15336e+07 7208.51 3.12 2.87 1.76 -1 -1 3.12 1.45662 1.32027 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 956.01 vpr 1.01 GiB -1 -1 15.28 194672 3 5.46 -1 -1 152152 -1 -1 1500 149 0 179 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1054072 149 182 55415 37074 1 28634 2010 80 80 6400 mult_36 auto 293.5 MiB 22.09 291783 1688450 588524 1039779 60147 1029.4 MiB 42.98 0.31 13.8123 -52573.7 -13.8123 13.8123 63.10 0.0794459 0.0705422 11.6426 10.0651 90 404732 49 3.90281e+08 1.51724e+08 3.88106e+07 6064.16 721.18 58.3011 49.3565 876284 8162653 -1 383287 22 101061 120561 16142116 3252600 14.7193 14.7193 -57508.7 -14.7193 0 0 4.85641e+07 7588.14 17.47 9.04 7.95 -1 -1 17.47 4.91362 4.32352 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.05 vpr 63.80 MiB -1 -1 0.93 22120 4 0.13 -1 -1 33452 -1 -1 15 11 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 11 2 303 283 2 80 28 7 7 49 clb auto 25.4 MiB 0.21 271 994 177 758 59 63.8 MiB 0.04 0.00 2.03512 -161.709 -2.03512 1.89824 0.06 0.000796077 0.000729401 0.0229181 0.0211886 28 386 10 1.07788e+06 808410 72669.7 1483.05 0.43 0.164764 0.140406 3564 12808 -1 328 11 210 348 6062 2167 2.1147 1.93975 -167.576 -2.1147 0 0 87745.0 1790.71 0.01 0.04 0.01 -1 -1 0.01 0.0250113 0.0223794 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 528.74 vpr 617.43 MiB -1 -1 73.84 441672 97 70.17 -1 -1 112716 -1 -1 2136 114 45 8 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 632248 114 102 35834 31925 1 16958 2405 56 56 3136 clb auto 280.7 MiB 75.20 229130 1838489 685976 1121608 30905 603.7 MiB 54.07 0.46 74.3846 -53458.5 -74.3846 74.3846 30.63 0.103522 0.0863647 12.7407 10.5687 92 342770 30 1.8697e+08 1.42948e+08 1.91065e+07 6092.62 156.58 42.572 34.9556 432882 4054463 -1 315324 23 68942 268090 14998722 2533805 73.8599 73.8599 -63586.7 -73.8599 0 0 2.42931e+07 7746.54 8.85 11.57 3.99 -1 -1 8.85 6.76989 5.85716 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 7391.10 vpr 2.12 GiB -1 -1 237.77 1431332 97 906.08 -1 -1 355192 -1 -1 7474 114 168 32 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2228092 114 102 120350 108159 1 57611 7890 102 102 10404 clb auto 897.5 MiB 264.63 996953 9743502 4021914 5678221 43367 1986.8 MiB 448.67 2.92 71.9201 -335041 -71.9201 71.9201 121.01 0.346618 0.30305 47.6649 40.2088 122 1357271 50 6.36957e+08 5.075e+08 8.33909e+07 8015.28 5146.84 189.664 155.402 1646912 18059953 -1 1274576 23 213361 922405 53953070 8630476 72.2056 72.2056 -464885 -72.2056 0 0 1.04484e+08 10042.6 38.13 37.88 18.68 -1 -1 38.13 21.5477 18.347 +k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 5746.03 vpr 2.37 GiB -1 -1 289.13 1202048 25 2996.45 -1 -1 369516 -1 -1 6372 36 159 27 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2480236 36 356 185159 159806 1 64132 6950 95 95 9025 clb auto 1060.0 MiB 219.93 734598 9553574 3704014 5673676 175884 1979.1 MiB 446.52 3.05 50.9431 -309210 -50.9431 50.9431 84.67 0.352353 0.278124 50.5817 42.3825 146 958494 27 5.4965e+08 4.41207e+08 8.47514e+07 9390.74 1465.42 212.374 173.936 1572330 18711342 -1 929944 22 218800 501430 30637058 5079656 50.1702 50.1702 -342096 -50.1702 0 0 1.07341e+08 11893.7 35.68 28.61 20.49 -1 -1 35.68 19.5696 16.8411 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt index 8af30fb0763..19dcaec1c58 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt @@ -1,20 +1,20 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 441.81 vpr 246.12 MiB -1 -1 60.18 124640 20 103.60 -1 -1 72624 -1 -1 845 133 25 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 252032 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 151.9 MiB 66.79 118924 594647 194976 378111 21560 183.7 MiB 18.70 0.21 22.9084 -204192 -22.9084 22.9084 6.52 0.040446 0.0376686 3.26268 2.75196 110 178335 36 7.21828e+07 5.92414e+07 8.93497e+06 6894.27 152.90 13.2287 11.3737 190984 1913024 -1 161823 15 30054 117753 9419873 1670055 24.2109 24.2109 -215085 -24.2109 0 0 1.14064e+07 8801.20 4.45 3.92 1.78 -1 -1 4.45 1.78942 1.66279 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 655.75 vpr 675.60 MiB -1 -1 113.25 637280 14 140.05 -1 -1 123864 -1 -1 2709 257 0 11 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 691816 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 374.5 MiB 112.62 245016 2196123 784924 1379682 31517 675.6 MiB 60.56 0.52 20.3938 -25436.9 -20.3938 20.3938 49.43 0.0480246 0.0421418 5.98976 5.15123 76 385516 49 2.36641e+08 1.50357e+08 2.05973e+07 5189.55 98.90 23.8416 20.8749 506266 4280222 -1 367033 20 91970 420346 18607055 2752931 20.356 20.356 -25872.9 -20.356 0 0 2.57532e+07 6488.59 9.66 8.10 3.29 -1 -1 9.66 4.27224 4.00002 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 214.47 parmys 258.88 MiB -1 -1 34.49 265092 5 13.42 -1 -1 58832 -1 -1 495 36 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 143784 36 100 10178 7632 1 2757 631 29 29 841 clb auto 105.1 MiB 41.66 41815 227851 66553 146878 14420 138.9 MiB 8.22 0.09 15.4276 -2482.62 -15.4276 15.4276 5.75 0.00883094 0.00764747 2.03704 1.76139 70 70652 35 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 80.82 8.06895 6.99536 101140 791177 -1 61302 14 12424 63518 2535193 364441 15.7375 15.7375 -2759.66 -15.7375 0 0 4.87732e+06 5799.43 3.57 2.37 1.19 -1 -1 3.57 1.51455 1.47325 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 61.09 vpr 71.91 MiB -1 -1 38.53 48640 3 2.36 -1 -1 39372 -1 -1 45 196 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73640 196 193 1201 1346 1 603 435 15 15 225 io auto 34.0 MiB 2.13 2906 143724 39989 91049 12686 71.9 MiB 1.66 0.01 2.23678 -1083.88 -2.23678 2.23678 1.70 0.00181406 0.00164697 0.544581 0.53014 36 6414 25 1.03862e+07 2.97323e+06 520410. 2312.93 6.26 1.96779 1.8761 21110 102306 -1 5630 14 1931 2862 228911 59108 2.77547 2.77547 -1223.72 -2.77547 0 0 643451. 2859.78 0.94 0.37 0.20 -1 -1 0.94 0.232963 0.229076 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 11.33 vpr 66.88 MiB -1 -1 1.25 21888 3 0.20 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68480 99 130 344 474 1 227 298 12 12 144 clb auto 28.5 MiB 0.74 552 74923 20922 40083 13918 66.9 MiB 0.65 0.00 1.839 -120.424 -1.839 1.839 0.94 0.000434168 0.000386242 0.305889 0.0259251 40 1366 19 5.66058e+06 4.21279e+06 333335. 2314.82 2.41 0.731611 0.443883 12946 64812 -1 1197 11 406 615 31856 9598 1.98484 1.98484 -138.688 -1.98484 0 0 419432. 2912.72 0.36 0.08 0.15 -1 -1 0.36 0.0688819 0.0679694 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 31.34 vpr 69.97 MiB -1 -1 1.36 25080 5 0.50 -1 -1 38040 -1 -1 32 162 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71648 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 32.1 MiB 1.35 5055 92509 33442 52071 6996 70.0 MiB 1.54 0.08 15.9193 -1240.37 -15.9193 15.9193 2.20 0.00115195 0.00103926 0.511273 0.499883 52 11221 44 1.21132e+07 3.70461e+06 805949. 3148.24 15.34 1.52513 1.488 26552 162987 -1 9285 21 2899 4869 996144 262436 17.1487 17.1487 -1335.43 -17.1487 0 0 1.06067e+06 4143.25 1.05 0.72 0.31 -1 -1 1.05 0.251949 0.24803 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 33.55 vpr 68.45 MiB -1 -1 0.92 24624 5 0.36 -1 -1 37504 -1 -1 22 66 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70092 66 96 778 595 1 467 189 16 16 256 mult_36 auto 30.3 MiB 1.18 3573 45175 14938 25152 5085 68.4 MiB 0.59 0.00 12.2285 -757.263 -12.2285 12.2285 2.64 0.000829089 0.000741288 0.296001 0.207582 50 8196 32 1.21132e+07 3.16567e+06 780532. 3048.95 17.54 0.91882 0.801916 26044 153858 -1 7038 20 2831 5567 1083476 276961 12.8517 12.8517 -827.298 -12.8517 0 0 1.00276e+06 3917.05 1.20 1.24 0.26 -1 -1 1.20 0.55112 0.547864 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 634.49 vpr 583.27 MiB -1 -1 134.94 457728 97 140.08 -1 -1 116436 -1 -1 2135 114 45 8 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 597272 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 346.8 MiB 94.88 223999 1805268 668923 1105538 30807 556.0 MiB 52.78 0.42 74.8526 -53067.9 -74.8526 74.8526 37.99 0.0426053 0.036302 6.15283 5.16283 98 328098 28 1.8697e+08 1.42894e+08 2.01848e+07 6436.49 102.99 24.6827 21.1736 445422 4317135 -1 306424 22 66707 259251 13340453 2269989 73.9663 73.9663 -62346.4 -73.9663 0 0 2.55970e+07 8162.30 11.96 6.08 3.50 -1 -1 11.96 3.57722 3.28859 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 214.25 vpr 316.48 MiB -1 -1 35.79 122444 5 12.90 -1 -1 48632 -1 -1 476 506 44 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 324076 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 59.4 MiB 12.14 15208 1187218 574336 423866 189016 316.5 MiB 10.41 0.15 7.88836 -2144.82 -7.88836 7.88836 62.81 0.0598338 0.0589533 4.17334 3.8936 38 23209 14 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 34.36 10.6284 10.0642 258216 1426232 -1 22350 14 3839 5032 1037208 241380 8.26327 8.26327 -2426.39 -8.26327 0 0 8.69102e+06 3476.41 8.30 1.38 2.20 -1 -1 8.30 1.08952 1.03144 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 48.99 vpr 72.51 MiB -1 -1 3.14 28880 2 0.61 -1 -1 38076 -1 -1 30 311 15 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 74248 311 156 1015 1158 1 965 512 28 28 784 memory auto 34.6 MiB 1.99 8123 209306 77878 121727 9701 72.5 MiB 2.04 0.01 4.24034 -4312.49 -4.24034 4.24034 7.44 0.00230164 0.00200065 0.537309 0.377233 46 13506 14 4.25198e+07 9.83682e+06 2.40571e+06 3068.51 16.14 2.52678 2.31141 81794 492802 -1 13124 16 2811 3175 701350 185699 4.25987 4.25987 -4818.17 -4.25987 0 0 3.09729e+06 3950.62 3.48 0.92 0.82 -1 -1 3.48 0.640298 0.493211 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 69.07 vpr 83.67 MiB -1 -1 16.30 55624 5 6.10 -1 -1 43028 -1 -1 167 193 5 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85676 193 205 2718 2652 1 1363 570 20 20 400 memory auto 46.2 MiB 8.35 10499 243856 86287 132432 25137 83.7 MiB 4.30 0.09 5.50153 -2864.86 -5.50153 5.50153 3.29 0.00291676 0.00248969 1.43876 1.31624 52 18796 27 2.07112e+07 1.17403e+07 1.31074e+06 3276.84 16.23 4.38953 4.10974 42580 268535 -1 16714 13 4494 11079 636879 128985 5.67199 5.67199 -3033.25 -5.67199 -0.00271738 -0.00135869 1.72518e+06 4312.96 1.59 0.82 0.50 -1 -1 1.59 0.60969 0.60135 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 379.24 vpr 105.15 MiB -1 -1 15.57 66120 8 11.75 -1 -1 44468 -1 -1 246 385 2 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 107676 385 362 4415 4299 1 2357 996 26 26 676 io auto 61.4 MiB 19.78 28726 547916 210036 314446 23434 98.4 MiB 10.73 0.07 9.08512 -9570.09 -9.08512 9.08512 5.96 0.00329531 0.00296933 2.17123 2.02972 102 41255 49 3.69863e+07 1.47499e+07 4.28034e+06 6331.86 297.81 8.74784 8.27578 95788 898762 -1 39972 16 9447 31588 1763573 297369 9.08065 9.08065 -9902.11 -9.08065 0 0 5.37165e+06 7946.23 2.37 0.94 0.92 -1 -1 2.37 0.548402 0.527779 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 77.40 vpr 84.96 MiB -1 -1 10.65 44824 3 1.95 -1 -1 40840 -1 -1 122 236 1 6 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87004 236 305 3199 3011 1 1513 670 19 19 361 io auto 48.0 MiB 7.01 12400 264370 86759 164165 13446 85.0 MiB 4.47 0.02 4.73305 -2853.54 -4.73305 4.73305 2.93 0.00348242 0.0031267 0.749665 0.713428 62 26338 47 1.72706e+07 9.49907e+06 1.42198e+06 3939.00 36.48 4.8707 4.51469 40483 281719 -1 21312 17 7193 19188 2027773 455475 4.85695 4.85695 -3063.38 -4.85695 0 0 1.76637e+06 4892.99 1.34 1.46 0.49 -1 -1 1.34 0.600206 0.587981 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 41.21 vpr 82.93 MiB -1 -1 6.27 47796 3 4.75 -1 -1 43312 -1 -1 139 38 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84924 38 36 2739 2488 1 1037 213 16 16 256 clb auto 45.7 MiB 5.08 9128 40218 10132 27089 2997 82.9 MiB 2.28 0.01 10.3799 -2787.19 -10.3799 10.3799 1.52 0.00206601 0.0016792 0.648359 0.576821 70 13785 27 1.21132e+07 7.49127e+06 1.08607e+06 4242.47 8.72 3.33834 2.93252 29612 216119 -1 12472 19 3746 8710 316144 53238 10.4324 10.4324 -3279.89 -10.4324 0 0 1.36713e+06 5340.37 1.37 0.74 0.32 -1 -1 1.37 0.718388 0.469764 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 40.32 vpr 73.88 MiB -1 -1 7.81 35564 16 1.73 -1 -1 38720 -1 -1 60 45 3 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75656 45 32 1192 1151 1 782 141 14 14 196 memory auto 36.2 MiB 6.89 6359 25029 7172 15872 1985 73.9 MiB 0.88 0.01 10.5514 -6933.99 -10.5514 10.5514 1.76 0.00147002 0.00119631 0.424451 0.316307 70 12362 27 9.20055e+06 5.27364e+06 825316. 4210.80 12.19 2.10407 1.84446 22820 164109 -1 10157 16 3115 8010 611716 149589 10.6548 10.6548 -7166.09 -10.6548 0 0 1.03831e+06 5297.50 0.97 0.75 0.46 -1 -1 0.97 0.188719 0.181711 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 181.05 vpr 229.26 MiB -1 -1 27.74 102924 5 20.21 -1 -1 69852 -1 -1 707 169 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 234760 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 174.7 MiB 25.95 40507 561155 178846 355353 26956 208.5 MiB 13.25 0.12 3.5747 -13857.8 -3.5747 3.5747 8.08 0.0148748 0.0122654 4.09005 3.48051 56 60901 39 6.0475e+07 3.81032e+07 4.09277e+06 3758.28 39.60 16.1655 14.0507 121655 832457 -1 55874 14 16410 25120 1046349 197808 4.09433 4.09433 -15090.6 -4.09433 0 0 5.21984e+06 4793.24 4.23 3.32 1.26 -1 -1 4.23 3.36427 3.04225 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 372.31 vpr 255.63 MiB -1 -1 25.80 124968 3 27.12 -1 -1 78048 -1 -1 679 115 0 40 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 261768 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 171.8 MiB 23.53 84166 520892 166892 327998 26002 206.7 MiB 16.90 0.17 5.43112 -22815.3 -5.43112 5.43112 11.32 0.0623107 0.0599798 4.35297 3.45995 86 139376 46 9.16046e+07 5.24347e+07 8.98461e+06 5615.38 223.57 16.813 14.4233 212028 1885476 -1 121351 16 33519 51273 8827849 1814939 5.65594 5.65594 -25361.9 -5.65594 0 0 1.13675e+07 7104.67 6.10 3.89 2.27 -1 -1 6.10 1.83823 1.72266 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 624.84 vpr 932.79 MiB -1 -1 32.45 197976 3 16.94 -1 -1 155956 -1 -1 1503 149 0 179 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 955172 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 355.5 MiB 48.89 286321 1679073 589581 1030407 59085 932.8 MiB 55.20 0.46 13.8384 -50424.9 -13.8384 13.8384 134.07 0.0681612 0.0631521 9.11899 7.87535 94 399646 42 3.90281e+08 1.51886e+08 4.03658e+07 6307.16 212.00 27.7631 24.2749 895480 8566334 -1 382155 20 103319 121546 18426157 3595010 14.2574 14.2574 -56221.1 -14.2574 0 0 5.08546e+07 7946.02 20.15 6.70 7.09 -1 -1 20.15 3.34157 3.08291 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 8.75 vpr 66.19 MiB -1 -1 1.74 26448 4 0.60 -1 -1 36452 -1 -1 15 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67776 11 2 303 283 2 80 28 7 7 49 clb auto 27.9 MiB 0.65 257 1330 280 924 126 66.2 MiB 0.02 0.00 2.03512 -164.27 -2.03512 1.89824 0.16 0.000217992 0.000162024 0.0106359 0.00877054 26 382 19 1.07788e+06 808410 68696.0 1401.96 0.57 0.204554 0.196831 3516 12294 -1 333 13 168 291 4761 1638 2.05049 1.95817 -175.115 -2.05049 0 0 84249.8 1719.38 0.13 0.11 0.01 -1 -1 0.13 0.0172823 0.0159874 +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 321.25 vpr 260.88 MiB -1 -1 32.38 121680 20 47.94 -1 -1 67520 -1 -1 852 133 25 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 267140 133 179 14228 14085 1 7083 1189 37 37 1369 clb auto 123.9 MiB 53.82 117836 599309 196739 380552 22018 182.1 MiB 12.19 0.12 23.1215 -208573 -23.1215 23.1215 3.78 0.0402722 0.0353967 4.2391 3.59307 106 179556 26 7.54166e+07 5.96187e+07 9.14078e+06 6676.98 144.36 18.2456 15.1687 197548 1947000 -1 164690 15 31392 123620 10307277 1812580 24.0339 24.0339 -215080 -24.0339 0 0 1.15824e+07 8460.47 3.51 4.53 1.94 -1 -1 3.51 1.97621 1.73444 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 590.92 vpr 745.38 MiB -1 -1 66.02 614684 14 68.75 -1 -1 121800 -1 -1 2715 257 0 11 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 763264 257 32 36080 33722 1 19553 3015 63 63 3969 clb auto 300.5 MiB 91.65 246763 2158443 772925 1359244 26274 745.4 MiB 82.37 0.66 19.4596 -25520.8 -19.4596 19.4596 40.80 0.116197 0.0966401 12.4581 10.5216 74 397392 33 2.36641e+08 1.5068e+08 2.02178e+07 5093.92 156.04 48.557 40.3433 502298 4195434 -1 378911 20 104646 475755 22175267 3259151 19.4991 19.4991 -26097.4 -19.4991 0 0 2.53694e+07 6391.88 8.92 13.88 3.99 -1 -1 8.92 6.56209 5.70389 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 97.57 parmys 244.73 MiB -1 -1 15.17 250604 5 3.93 -1 -1 55012 -1 -1 487 36 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 165488 36 100 10178 7632 1 2732 623 28 28 784 clb auto 89.5 MiB 22.18 41184 242592 73081 153746 15765 136.1 MiB 4.59 0.04 14.9875 -2383.56 -14.9875 14.9875 1.98 0.0195961 0.0176981 2.03672 1.79455 72 69983 32 4.25198e+07 2.62464e+07 3.68518e+06 4700.49 34.65 9.09916 7.78523 95106 749155 -1 63097 16 12536 64454 2770164 398593 15.2548 15.2548 -2604.77 -15.2548 0 0 4.61751e+06 5889.69 1.73 1.75 0.74 -1 -1 1.73 1.01207 0.910854 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 27.59 vpr 70.05 MiB -1 -1 18.28 44880 3 0.70 -1 -1 35308 -1 -1 44 196 1 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71728 196 193 1201 1346 1 607 434 15 15 225 io auto 31.4 MiB 0.78 2881 141646 37557 91040 13049 70.0 MiB 0.70 0.01 2.23678 -1115.4 -2.23678 2.23678 0.47 0.00373096 0.00344808 0.336892 0.312846 54 5510 24 1.03862e+07 2.91934e+06 739051. 3284.67 4.21 1.89285 1.73106 23798 149426 -1 4937 10 1403 2096 114005 28759 2.55976 2.55976 -1206.25 -2.55976 0 0 960420. 4268.53 0.20 0.14 0.10 -1 -1 0.20 0.106445 0.0996702 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.42 vpr 65.34 MiB -1 -1 0.43 18580 3 0.09 -1 -1 33168 -1 -1 68 99 1 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66912 99 130 344 474 1 227 298 12 12 144 clb auto 26.6 MiB 0.29 552 74923 20922 40083 13918 65.3 MiB 0.25 0.00 1.839 -120.424 -1.839 1.839 0.28 0.00129187 0.00122306 0.101856 0.0963716 48 1164 17 5.66058e+06 4.21279e+06 394078. 2736.65 1.68 0.46317 0.424526 13662 75965 -1 1145 11 414 679 32589 9455 1.91109 1.91109 -137.23 -1.91109 0 0 503203. 3494.47 0.11 0.05 0.08 -1 -1 0.11 0.0358451 0.0332448 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 13.05 vpr 68.43 MiB -1 -1 0.54 22064 5 0.20 -1 -1 33748 -1 -1 32 162 0 5 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70076 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 29.6 MiB 0.43 5055 92509 33442 52071 6996 68.4 MiB 0.67 0.01 15.9193 -1240.37 -15.9193 15.9193 0.55 0.00323299 0.00303266 0.326456 0.307074 58 9876 32 1.21132e+07 3.70461e+06 904541. 3533.36 8.04 1.73348 1.59852 27572 180683 -1 8878 22 3192 5533 1083737 291539 17.1532 17.1532 -1343.36 -17.1532 0 0 1.15318e+06 4504.63 0.26 0.45 0.19 -1 -1 0.26 0.177703 0.165097 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.90 vpr 67.07 MiB -1 -1 0.32 21152 5 0.12 -1 -1 33464 -1 -1 22 66 0 5 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68680 66 96 778 595 1 467 189 16 16 256 mult_36 auto 28.3 MiB 0.54 3573 45175 14938 25152 5085 67.1 MiB 0.39 0.01 12.2285 -757.263 -12.2285 12.2285 0.54 0.0023738 0.00224471 0.208962 0.197639 50 8523 27 1.21132e+07 3.16567e+06 780532. 3048.95 5.64 0.755967 0.697474 26044 153858 -1 7163 20 2809 5509 1198298 310403 12.8568 12.8568 -832.718 -12.8568 0 0 1.00276e+06 3917.05 0.22 0.37 0.15 -1 -1 0.22 0.10662 0.0987643 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 559.39 vpr 610.38 MiB -1 -1 75.68 447480 97 79.30 -1 -1 112700 -1 -1 2136 114 45 8 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 625028 114 102 35834 31925 1 16958 2405 56 56 3136 clb auto 281.0 MiB 76.51 224009 1838489 687206 1122174 29109 610.4 MiB 65.64 0.50 73.2586 -54434.5 -73.2586 73.2586 30.39 0.100311 0.089328 13.1915 11.0722 98 329588 26 1.8697e+08 1.42948e+08 2.01848e+07 6436.49 156.92 50.1432 41.5585 445422 4317135 -1 307706 23 65057 254480 13440564 2273392 73.6114 73.6114 -66011.6 -73.6114 0 0 2.55970e+07 8162.30 12.00 10.93 4.21 -1 -1 12.00 6.48002 5.58793 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 94.43 vpr 348.82 MiB -1 -1 17.90 116884 5 3.52 -1 -1 44684 -1 -1 476 506 44 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 357196 506 553 3236 3734 1 2872 1579 50 50 2500 memory auto 51.3 MiB 6.48 14901 1187218 580691 417492 189035 348.8 MiB 5.71 0.06 8.03883 -2150.62 -8.03883 8.03883 22.60 0.0235268 0.0213201 3.14781 2.82702 38 23357 13 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 17.42 8.10194 7.39097 258216 1426232 -1 22374 13 4016 5175 1160600 269604 8.64853 8.64853 -2567.37 -8.64853 0 0 8.69102e+06 3476.41 2.96 1.02 1.26 -1 -1 2.96 0.800809 0.742492 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 30.29 vpr 71.94 MiB -1 -1 0.90 25664 2 0.13 -1 -1 34216 -1 -1 30 311 15 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73668 311 156 1015 1158 1 965 512 28 28 784 memory auto 31.4 MiB 0.71 8349 207259 73816 122605 10838 71.7 MiB 1.19 0.02 4.5269 -4365.4 -4.5269 4.5269 2.04 0.00582712 0.00517812 0.617663 0.547122 36 15431 16 4.25198e+07 9.83682e+06 1.94918e+06 2486.20 20.13 2.91226 2.57431 76314 389223 -1 13730 14 2745 3128 742950 198312 4.95855 4.95855 -4919.44 -4.95855 0 0 2.40571e+06 3068.51 0.64 0.37 0.34 -1 -1 0.64 0.203781 0.184433 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 28.20 vpr 81.61 MiB -1 -1 8.19 51816 5 1.65 -1 -1 39488 -1 -1 168 193 5 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83572 193 205 2718 2652 1 1369 571 20 20 400 memory auto 41.0 MiB 2.89 10575 249211 90019 133068 26124 81.6 MiB 1.91 0.02 5.53026 -2784.54 -5.53026 5.53026 0.91 0.00830037 0.00756301 0.86703 0.782218 50 19323 46 2.07112e+07 1.17942e+07 1.26946e+06 3173.65 7.52 2.61642 2.34558 41784 253636 -1 16442 15 4721 11413 624128 127185 5.79232 5.79232 -3051.63 -5.79232 0 0 1.63222e+06 4080.54 0.39 0.47 0.24 -1 -1 0.39 0.314788 0.289013 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 261.36 vpr 106.29 MiB -1 -1 6.73 61712 8 3.06 -1 -1 42488 -1 -1 244 385 2 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108844 385 362 4415 4299 1 2362 994 26 26 676 io auto 52.9 MiB 8.15 29183 556290 212335 319704 24251 95.9 MiB 5.29 0.04 9.18054 -9446.5 -9.18054 9.18054 1.67 0.00900631 0.00838643 2.03037 1.86117 92 44179 23 3.69863e+07 1.46421e+07 3.92083e+06 5800.04 227.29 10.8277 9.86617 91740 820014 -1 41506 20 9902 33047 1818146 309187 9.29877 9.29877 -10144.5 -9.29877 0 0 4.98093e+06 7368.25 1.45 1.35 0.62 -1 -1 1.45 0.811086 0.753916 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 26.24 vpr 82.78 MiB -1 -1 4.67 41728 3 0.69 -1 -1 37668 -1 -1 123 236 1 6 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84768 236 305 3199 3011 1 1513 671 19 19 361 io auto 42.3 MiB 2.66 12095 282527 93676 174328 14523 82.8 MiB 1.96 0.02 4.7904 -2847.33 -4.7904 4.7904 0.78 0.0090754 0.00839855 0.869998 0.801433 64 23617 30 1.72706e+07 9.55296e+06 1.47376e+06 4082.44 10.54 3.22746 2.95209 41203 295207 -1 21366 18 6086 15313 1635446 361729 5.15058 5.15058 -3067.02 -5.15058 0 0 1.84179e+06 5101.91 0.43 0.74 0.27 -1 -1 0.43 0.392815 0.363999 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 19.56 vpr 81.07 MiB -1 -1 3.41 44164 3 1.19 -1 -1 38140 -1 -1 139 38 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83012 38 36 2739 2488 1 1037 213 16 16 256 clb auto 40.6 MiB 1.90 9128 40218 10132 27089 2997 81.1 MiB 0.77 0.01 10.3799 -2787.19 -10.3799 10.3799 0.53 0.00515231 0.00454624 0.362589 0.319849 72 13809 24 1.21132e+07 7.49127e+06 1.11200e+06 4343.75 7.57 2.30774 1.96811 29868 220492 -1 12796 19 3671 8460 339219 56527 10.7045 10.7045 -3106.67 -10.7045 0 0 1.39441e+06 5446.92 0.32 0.43 0.21 -1 -1 0.32 0.30399 0.272986 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 15.49 vpr 71.86 MiB -1 -1 3.76 32280 16 0.45 -1 -1 34880 -1 -1 61 45 3 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73580 45 32 1192 1151 1 777 142 14 14 196 memory auto 32.9 MiB 2.49 6770 27892 7763 16391 3738 71.9 MiB 0.52 0.01 10.6266 -7111.67 -10.6266 10.6266 0.40 0.00344563 0.00304962 0.284896 0.252241 66 13438 26 9.20055e+06 5.32753e+06 787562. 4018.17 4.98 1.17943 1.02226 22236 154735 -1 11272 15 3555 9222 855714 196445 11.011 11.011 -7492.44 -11.011 0 0 978561. 4992.66 0.21 0.34 0.15 -1 -1 0.21 0.154605 0.139526 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 133.12 vpr 229.32 MiB -1 -1 13.22 99096 5 5.06 -1 -1 66192 -1 -1 705 169 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 234828 169 197 23225 21365 1 6465 1071 33 33 1089 clb auto 146.7 MiB 9.52 38502 581633 189279 364211 28143 204.4 MiB 7.40 0.07 3.48434 -13716.4 -3.48434 3.48434 3.15 0.0290062 0.0247362 3.59364 3.04283 50 61758 38 6.0475e+07 3.79954e+07 3.66263e+06 3363.29 75.29 16.2974 13.4794 117303 744553 -1 54195 15 15816 25265 1003144 195297 4.08695 4.08695 -15188 -4.08695 0 0 4.71657e+06 4331.10 1.45 1.78 0.63 -1 -1 1.45 1.57461 1.40474 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 119.11 vpr 266.82 MiB -1 -1 11.49 121384 3 7.97 -1 -1 74160 -1 -1 676 115 0 40 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 273228 115 145 22864 19301 1 9618 976 40 40 1600 mult_36 auto 143.3 MiB 8.53 78318 518749 168154 327137 23458 211.1 MiB 8.43 0.11 5.07351 -23104.7 -5.07351 5.07351 4.40 0.0300397 0.0258514 3.59642 3.05809 84 131724 41 9.16046e+07 5.2273e+07 8.77086e+06 5481.79 51.90 14.3834 12.0881 210428 1853892 -1 115201 16 33583 50208 8812164 1814028 5.17295 5.17295 -26324.8 -5.17295 0 0 1.11533e+07 6970.83 3.29 3.64 1.70 -1 -1 3.29 1.73919 1.55506 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 543.88 vpr 1.02 GiB -1 -1 15.78 194704 3 5.80 -1 -1 152200 -1 -1 1500 149 0 179 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1067048 149 182 55415 37074 1 28634 2010 80 80 6400 mult_36 auto 293.4 MiB 21.70 289611 1739170 612856 1060789 65525 1022.2 MiB 49.10 0.33 14.0186 -51623.9 -14.0186 14.0186 61.36 0.0878285 0.0741231 12.4102 10.631 96 414554 40 3.90281e+08 1.51724e+08 4.11781e+07 6434.07 303.10 48.1906 41.0392 901880 8701757 -1 380833 19 98955 116799 16016094 3153201 14.607 14.607 -56017.4 -14.607 0 0 5.14892e+07 8045.19 17.94 8.92 8.54 -1 -1 17.94 4.71487 4.15989 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.13 vpr 64.43 MiB -1 -1 0.95 22684 4 0.13 -1 -1 33316 -1 -1 15 11 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65976 11 2 303 283 2 80 28 7 7 49 clb auto 26.0 MiB 0.21 257 1330 280 924 126 64.4 MiB 0.05 0.00 2.03512 -164.27 -2.03512 1.89824 0.06 0.000802139 0.000732099 0.0294323 0.0270911 38 303 13 1.07788e+06 808410 91552.7 1868.42 0.55 0.259391 0.219211 3900 17126 -1 305 12 158 279 4674 1521 2.08112 1.97387 -171.184 -2.08112 0 0 117020. 2388.16 0.02 0.04 0.02 -1 -1 0.02 0.0264416 0.0235942 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt index 9e8e6d93e99..35fdb3b3809 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt @@ -1,13 +1,13 @@ 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 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 619.60 vpr 2.33 GiB -1 -1 13.39 196968 5 72.67 -1 -1 109604 -1 -1 496 355 32 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2439252 355 289 25456 18471 2 12404 1437 136 136 18496 dsp_top auto 214.0 MiB 12.23 355505 1152489 467663 489673 195153 2382.1 MiB 22.48 0.22 5.68333 -83747.3 -5.68333 2.1842 6.98 0.0505978 0.046175 7.84344 7.09719 -1 385939 15 5.92627e+08 8.54973e+07 4.08527e+08 22087.3 4.41 10.6032 9.72523 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 662.30 vpr 2.34 GiB -1 -1 16.28 242356 5 50.41 -1 -1 116980 -1 -1 687 357 58 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2456672 357 289 25618 20285 2 12726 1657 136 136 18496 dsp_top auto 238.1 MiB 62.99 206081 1520812 537522 740750 242540 2399.1 MiB 28.10 0.22 7.3529 -70878.9 -7.3529 2.61672 7.11 0.0472105 0.03978 7.5815 6.64026 -1 271791 19 5.92627e+08 9.46599e+07 4.08527e+08 22087.3 5.60 10.7015 9.55688 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3228.09 vpr 1.77 GiB -1 -1 67.41 743692 6 615.96 -1 -1 389608 -1 -1 3908 206 132 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1850844 206 13 164958 139473 1 69650 4371 88 88 7744 dsp_top auto 1055.2 MiB 2190.38 594831 4326854 1606621 2631635 88598 1624.7 MiB 126.05 0.96 5.30279 -153323 -5.30279 5.30279 2.46 0.132724 0.110532 18.0376 15.1327 -1 866956 15 2.4541e+08 1.55644e+08 1.69370e+08 21871.2 16.81 27.5426 23.9585 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 673.61 vpr 2.02 GiB -1 -1 59.67 728992 3 36.85 -1 -1 417368 -1 -1 6187 260 0 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2123212 260 122 206293 154384 1 87347 6632 87 87 7569 clb auto 1305.4 MiB 169.50 922485 7854164 3058750 4303825 491589 1741.7 MiB 173.10 1.21 6.93854 -143778 -6.93854 6.93854 2.22 0.1974 0.178302 23.7686 20.3 -1 1211007 17 2.37162e+08 1.88631e+08 1.65965e+08 21927.0 22.70 35.8566 31.4249 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 769.78 vpr 1019.14 MiB -1 -1 25.31 316344 5 9.16 -1 -1 134712 -1 -1 995 1052 194 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1043600 1052 32 45949 36457 1 23713 2371 82 82 6724 dsp_top auto 316.2 MiB 535.35 235206 2499245 888437 1481261 129547 1019.1 MiB 30.47 0.19 5.64881 -88843.7 -5.64881 5.64881 1.81 0.0461721 0.0396534 7.82698 6.6403 -1 373961 16 2.09174e+08 7.9343e+07 1.47429e+08 21925.8 6.61 10.7458 9.30974 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 386.70 vpr 1.36 GiB -1 -1 18.23 255132 3 10.00 -1 -1 61072 -1 -1 1742 1016 21 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1430828 1016 2244 12839 14381 1 7127 5035 104 104 10816 io auto 140.6 MiB 67.37 74682 5871531 3028982 2055644 786905 1397.3 MiB 21.15 0.19 5.72079 -17485.3 -5.72079 5.72079 3.75 0.053385 0.0516384 7.65676 7.41028 -1 101137 17 3.44415e+08 5.45455e+07 2.37404e+08 21949.3 3.04 10.2052 9.90229 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 167.72 vpr 548.32 MiB -1 -1 10.12 149124 4 57.67 -1 -1 82592 -1 -1 821 91 56 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 561480 91 65 33180 28067 2 12775 1075 56 56 3136 dsp_top auto 248.0 MiB 12.48 161649 617523 203048 388674 25801 548.3 MiB 12.44 0.10 4.71204 -49256.5 -4.71204 1.93601 0.74 0.0351018 0.0300777 4.47165 3.80648 -1 233134 14 9.76016e+07 4.12774e+07 6.79229e+07 21659.1 4.19 6.67861 5.86711 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 96.94 vpr 480.44 MiB -1 -1 4.01 85204 4 6.23 -1 -1 56968 -1 -1 347 152 72 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 491968 152 97 14409 12199 2 6828 715 56 56 3136 dsp_top auto 141.6 MiB 8.20 133480 377843 120228 230660 26955 480.4 MiB 6.46 0.05 3.95733 -22810.1 -3.95733 1.56771 0.73 0.0220286 0.0187682 2.65044 2.28617 -1 195459 14 9.76016e+07 3.15225e+07 6.79229e+07 21659.1 3.44 3.88511 3.43833 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 115.41 vpr 478.52 MiB -1 -1 12.99 239476 5 7.81 -1 -1 77052 -1 -1 876 3 84 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 490004 3 384 24647 23015 1 12352 1365 52 52 2704 memory auto 221.8 MiB 13.92 110684 818817 266813 480208 71796 478.5 MiB 14.39 0.12 5.75775 -36197.2 -5.75775 5.75775 0.58 0.0235431 0.0188135 2.93359 2.43328 -1 180370 18 8.30642e+07 4.05761e+07 5.85728e+07 21661.5 3.82 4.89173 4.24908 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 76.71 vpr 318.11 MiB -1 -1 13.06 307408 6 6.97 -1 -1 74924 -1 -1 735 37 52 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 325740 37 17 16391 14146 1 8955 841 38 38 1444 memory auto 169.5 MiB 12.70 101987 306377 77320 220137 8920 306.7 MiB 8.23 0.09 5.54334 -34945.2 -5.54334 5.54334 0.25 0.0173344 0.0141754 1.70924 1.42776 -1 167887 16 4.31434e+07 2.76685e+07 3.09543e+07 21436.5 3.61 3.17188 2.78308 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 216.67 vpr 956.60 MiB -1 -1 7.64 195504 6 12.41 -1 -1 69980 -1 -1 643 82 232 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 979556 82 17 16311 14407 1 9023 1006 84 84 7056 memory auto 158.1 MiB 17.56 160557 509844 165549 329315 14980 956.6 MiB 6.62 0.06 4.90582 -39742 -4.90582 4.90582 1.96 0.0182862 0.0156519 2.06248 1.70904 -1 218320 13 2.2198e+08 5.80022e+07 1.54484e+08 21894.0 3.17 3.29314 2.85784 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 105.95 vpr 447.11 MiB -1 -1 9.76 285876 10 8.07 -1 -1 57872 -1 -1 504 402 0 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 457844 402 150 12958 11781 1 7836 1093 54 54 2916 dsp_top auto 134.6 MiB 11.32 80267 772129 261682 467759 42688 447.1 MiB 8.77 0.07 7.40003 -12898.4 -7.40003 7.40003 0.69 0.0144036 0.0128586 1.97847 1.71617 -1 130877 17 8.95105e+07 2.34537e+07 6.32721e+07 21698.2 2.33 3.04257 2.72326 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 626.87 vpr 2.66 GiB -1 -1 24.67 191020 5 89.67 -1 -1 105608 -1 -1 495 355 32 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2792576 355 289 25456 18471 2 12407 1436 136 136 18496 dsp_top auto 180.7 MiB 13.83 368135 1183744 493906 488436 201402 2727.1 MiB 35.16 0.42 5.73066 -86703.7 -5.73066 2.25058 0.11 0.0983282 0.0890725 15.1492 13.7417 -1 399829 14 5.92627e+08 8.54694e+07 4.08527e+08 22087.3 7.31 19.1592 17.4802 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 799.06 vpr 2.68 GiB -1 -1 30.89 236424 5 69.76 -1 -1 112992 -1 -1 691 357 58 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2813040 357 289 25618 20285 2 12722 1661 136 136 18496 dsp_top auto 197.5 MiB 55.89 213644 1506110 545980 704875 255255 2747.1 MiB 49.90 0.35 8.83586 -77757.5 -8.83586 2.86849 0.11 0.105103 0.090362 16.4628 14.294 -1 283893 19 5.92627e+08 9.47716e+07 4.08527e+08 22087.3 8.40 21.5402 18.8962 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3237.76 vpr 1.75 GiB -1 -1 126.10 731412 6 929.01 -1 -1 385924 -1 -1 3877 206 132 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1833128 206 13 164958 139473 1 69399 4340 88 88 7744 dsp_top auto 871.7 MiB 1763.83 586613 4179888 1553321 2546374 80193 1784.5 MiB 159.68 1.39 6.29198 -174132 -6.29198 6.29198 0.04 0.263075 0.225128 34.3779 28.6399 -1 859908 16 2.4541e+08 1.54779e+08 1.69370e+08 21871.2 23.49 48.5031 40.9766 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 918.71 vpr 2.01 GiB -1 -1 112.54 721200 3 53.45 -1 -1 407272 -1 -1 6192 260 0 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2104752 260 122 206293 154384 1 87490 6637 87 87 7569 clb auto 1055.8 MiB 200.86 911610 7737417 3028323 4214852 494242 1900.1 MiB 277.91 1.72 7.9787 -159676 -7.9787 7.9787 0.06 0.341965 0.297905 48.7798 40.5529 -1 1218227 15 2.37162e+08 1.8877e+08 1.65965e+08 21927.0 30.12 65.5345 55.1217 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 1191.18 vpr 3.18 GiB -1 -1 47.78 306884 5 13.75 -1 -1 130992 -1 -1 1017 1052 689 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 3339012 1052 32 45949 36457 1 23546 2888 148 148 21904 memory auto 263.0 MiB 454.46 385837 3230494 1321380 1766067 143047 3260.8 MiB 52.88 0.34 5.87433 -113350 -5.87433 5.87433 0.24 0.111118 0.0973142 18.7476 15.9101 -1 553277 14 7.00618e+08 1.48101e+08 4.83549e+08 22075.8 11.90 23.3539 19.9146 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 438.38 vpr 1.58 GiB -1 -1 34.58 250276 3 10.72 -1 -1 57100 -1 -1 1736 1016 21 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1661604 1016 2244 12839 14381 1 7080 5029 104 104 10816 io auto 118.5 MiB 54.63 69414 5776141 2967220 2032347 776574 1622.7 MiB 33.15 0.30 5.80519 -19744.2 -5.80519 5.80519 0.06 0.114 0.109937 15.6713 15.1362 -1 95582 12 3.44415e+08 5.43781e+07 2.37404e+08 21949.3 4.19 19.3247 18.6816 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 224.40 vpr 636.46 MiB -1 -1 19.66 145672 4 78.57 -1 -1 78688 -1 -1 822 91 56 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 651736 91 65 33180 28067 2 12875 1076 56 56 3136 dsp_top auto 204.4 MiB 13.58 151571 552176 183815 346994 21367 636.5 MiB 17.47 0.16 4.40509 -58703.1 -4.40509 1.89924 0.02 0.0783544 0.0686597 8.59202 7.37464 -1 224439 15 9.76016e+07 4.13053e+07 6.79229e+07 21659.1 6.09 12.1898 10.5564 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 116.04 vpr 569.43 MiB -1 -1 8.18 81248 4 6.69 -1 -1 53088 -1 -1 347 152 72 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 583100 152 97 14409 12199 2 6807 715 56 56 3136 dsp_top auto 117.4 MiB 7.36 124818 317119 107522 190476 19121 569.4 MiB 8.89 0.08 4.4815 -25326.7 -4.4815 1.84186 0.02 0.0480688 0.0422026 5.14069 4.43436 -1 186870 15 9.76016e+07 3.15225e+07 6.79229e+07 21659.1 4.38 7.18579 6.25872 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 144.03 vpr 557.80 MiB -1 -1 24.27 234696 5 8.45 -1 -1 73520 -1 -1 875 3 84 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 571184 3 384 24647 23015 1 12382 1364 52 52 2704 memory auto 180.9 MiB 14.80 101640 787708 255759 461652 70297 557.8 MiB 17.70 0.16 6.07065 -41068.7 -6.07065 6.07065 0.01 0.0524505 0.0453127 6.0375 5.125 -1 169539 15 8.30642e+07 4.05482e+07 5.85728e+07 21661.5 4.81 8.69486 7.49074 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 102.12 vpr 350.38 MiB -1 -1 24.98 291216 6 7.63 -1 -1 70276 -1 -1 712 37 52 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 358788 37 17 16391 14146 1 8915 818 38 38 1444 memory auto 137.3 MiB 14.11 105295 279970 72756 197091 10123 350.4 MiB 10.45 0.13 7.06442 -39775.7 -7.06442 7.06442 0.01 0.0494477 0.0400803 3.91592 3.25677 -1 170768 15 4.31434e+07 2.70267e+07 3.09543e+07 21436.5 5.08 6.15937 5.24586 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 246.16 vpr 1.09 GiB -1 -1 14.70 182348 6 12.93 -1 -1 65636 -1 -1 640 82 232 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1146036 82 17 16311 14407 1 9001 1003 84 84 7056 memory auto 131.9 MiB 18.91 164110 517857 170628 329215 18014 1119.2 MiB 10.31 0.09 5.96682 -42713.4 -5.96682 5.96682 0.04 0.0429465 0.0371059 4.93488 4.13355 -1 221993 13 2.2198e+08 5.79185e+07 1.54484e+08 21894.0 3.85 6.78436 5.76686 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 126.95 vpr 532.81 MiB -1 -1 18.55 274480 10 7.84 -1 -1 54340 -1 -1 509 402 0 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 545596 402 150 12958 11781 1 7797 1098 54 54 2916 dsp_top auto 111.8 MiB 12.34 77765 759806 267210 447457 45139 532.8 MiB 11.70 0.09 9.87808 -14325.3 -9.87808 9.87808 0.02 0.0314036 0.0282571 4.5226 3.98994 -1 127390 16 8.95105e+07 2.35932e+07 6.32721e+07 21698.2 3.35 6.16259 5.47084 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium_no_hb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium_no_hb/config/golden_results.txt index 701f8cf0b06..3415ce7747b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium_no_hb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium_no_hb/config/golden_results.txt @@ -1,13 +1,13 @@ 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 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 2297.73 vpr 2.39 GiB -1 -1 67.66 248916 5 386.57 -1 -1 139588 -1 -1 1092 355 32 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 2505488 355 289 47792 39479 2 22463 2033 136 136 18496 dsp_top auto 315.6 MiB 829.80 417547 2035967 800879 1110613 124475 2446.8 MiB 59.61 0.36 7.56032 -98878.8 -7.56032 2.65337 18.45 0.123782 0.101211 21.3991 17.4955 -1 526122 14 5.92627e+08 1.02128e+08 4.08527e+08 22087.3 15.74 27.6882 23.1868 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 2034.94 vpr 2.43 GiB -1 -1 56.02 302204 5 517.89 -1 -1 139816 -1 -1 1447 357 58 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 2549132 357 289 56236 49095 2 21896 2417 136 136 18496 dsp_top auto 393.4 MiB 344.10 429105 2548015 930606 1466225 151184 2489.4 MiB 85.48 0.50 7.79199 -137248 -7.79199 2.69372 18.37 0.163784 0.137256 28.7844 22.9255 -1 558155 17 5.92627e+08 1.15867e+08 4.08527e+08 22087.3 23.93 38.6761 31.6913 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 8355.37 vpr 1.83 GiB -1 -1 172.77 753612 6 2243.64 -1 -1 412976 -1 -1 4119 206 132 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 1920604 206 13 177171 148374 1 74857 4582 88 88 7744 dsp_top auto 1112.1 MiB 5121.00 676743 4607543 1735144 2771118 101281 1657.7 MiB 309.31 2.26 6.5785 -161896 -6.5785 6.5785 6.26 0.492287 0.382534 63.1824 50.6687 -1 975264 23 2.4541e+08 1.61532e+08 1.69370e+08 21871.2 57.11 95.977 78.7754 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 1618.20 vpr 2.03 GiB -1 -1 148.99 734288 3 121.88 -1 -1 410764 -1 -1 6192 260 0 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 2131528 260 122 206267 154358 1 87325 6637 87 87 7569 clb auto 1304.8 MiB 399.50 897507 7862107 3019050 4332770 510287 1741.6 MiB 424.98 3.12 6.46586 -141256 -6.46586 6.46586 5.97 0.627132 0.490712 79.1961 63.5977 -1 1180668 18 2.37162e+08 1.8877e+08 1.65965e+08 21927.0 60.49 113.428 92.6149 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 1729.79 vpr 1021.84 MiB -1 -1 73.36 310644 5 38.59 -1 -1 134084 -1 -1 1001 1052 194 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 1046360 1052 32 45949 36457 1 23649 2377 82 82 6724 dsp_top auto 318.7 MiB 1157.86 249259 2491926 887441 1477477 127008 1021.8 MiB 80.90 0.50 5.61569 -89457.4 -5.61569 5.61569 4.88 0.191145 0.16383 32.245 26.936 -1 392147 17 2.09174e+08 7.95104e+07 1.47429e+08 21925.8 21.67 42.3022 35.7727 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 910.04 vpr 1.37 GiB -1 -1 41.42 284544 9 33.78 -1 -1 59624 -1 -1 1840 1016 21 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 1440816 1016 2244 14898 16146 1 8221 5123 104 104 10816 io auto 158.5 MiB 103.15 67150 6185283 3064252 2304599 816432 1407.0 MiB 69.85 0.70 12.2749 -20922.9 -12.2749 12.2749 10.37 0.179699 0.173811 26.4253 25.3645 -1 96666 16 3.44415e+08 5.47424e+07 2.37404e+08 21949.3 9.29 34.0737 32.7516 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 797.24 vpr 832.35 MiB -1 -1 26.76 177964 4 364.55 -1 -1 101792 -1 -1 1098 91 56 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 852324 91 65 43857 37256 2 18510 1394 72 72 5184 dsp_top auto 308.4 MiB 98.64 227041 912122 302493 573520 36109 832.3 MiB 44.67 0.35 7.31814 -86987.7 -7.31814 2.47624 3.57 0.135265 0.111575 16.8608 14.0592 -1 308420 13 1.63139e+08 5.96656e+07 1.13044e+08 21806.4 12.49 23.3365 19.9484 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 558.43 vpr 451.04 MiB -1 -1 47.68 198932 5 54.72 -1 -1 74068 -1 -1 663 151 72 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 461860 151 97 23485 20309 2 11425 989 50 50 2500 memory auto 200.2 MiB 299.25 132763 513189 156241 330542 26406 451.0 MiB 24.02 0.23 3.82213 -21817.1 -3.82213 1.88661 1.35 0.0922014 0.0776952 9.9325 8.44818 -1 198853 18 7.5303e+07 2.99354e+07 5.42358e+07 21694.3 9.82 15.1262 13.1308 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 324.68 vpr 476.87 MiB -1 -1 28.39 239872 5 19.83 -1 -1 76752 -1 -1 896 3 84 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 488316 3 384 24554 22922 1 12214 1385 52 52 2704 memory auto 219.6 MiB 40.02 109481 819387 260846 488959 69582 476.9 MiB 46.92 0.42 5.75775 -36502.7 -5.75775 5.75775 1.61 0.119645 0.0954336 13.4392 11.0442 -1 178203 17 8.30642e+07 4.11342e+07 5.85728e+07 21661.5 11.41 19.6539 16.461 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 204.28 vpr 318.96 MiB -1 -1 31.40 293560 6 21.07 -1 -1 73228 -1 -1 673 37 52 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 326612 37 17 16377 14132 1 8880 779 38 38 1444 memory auto 169.7 MiB 37.77 101035 276670 71311 196113 9246 308.4 MiB 22.68 0.30 5.64757 -37754.9 -5.64757 5.64757 0.69 0.121147 0.0966607 8.12139 6.72187 -1 166084 16 4.31434e+07 2.59385e+07 3.09543e+07 21436.5 10.64 12.6708 10.817 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 465.52 vpr 956.71 MiB -1 -1 16.58 185516 6 27.63 -1 -1 68516 -1 -1 653 82 232 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 979676 82 17 16181 14277 1 8919 1016 84 84 7056 memory auto 157.9 MiB 39.03 167542 542146 177997 350835 13314 956.7 MiB 17.99 0.16 4.69582 -39328.8 -4.69582 4.69582 5.37 0.0636843 0.0548429 7.40096 6.12028 -1 224643 14 2.2198e+08 5.82813e+07 1.54484e+08 21894.0 8.34 10.7207 9.11101 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 965.10 parmys 473.11 MiB -1 -1 78.77 484468 10 187.85 -1 -1 101808 -1 -1 1372 402 0 -1 success 9550a0d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-12T17:44:41 mustang /homes/koios 484468 402 150 35357 32385 1 17489 1932 43 43 1849 clb auto 295.5 MiB 521.20 130341 1240816 422311 763123 55382 419.7 MiB 51.59 0.44 8.15438 -24418.6 -8.15438 8.15438 1.01 0.115072 0.100317 13.4907 11.3367 -1 209381 17 5.60835e+07 4.0315e+07 3.97519e+07 21499.1 11.32 20.5495 17.5472 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 1163.23 vpr 2.73 GiB -1 -1 54.60 238712 5 135.74 -1 -1 136304 -1 -1 1086 355 32 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2859304 355 289 47773 39460 2 23092 2027 136 136 18496 dsp_top auto 259.8 MiB 421.52 425875 2028061 758608 1141225 128228 2792.3 MiB 37.94 0.25 7.49309 -111546 -7.49309 2.64155 0.10 0.0843162 0.070416 13.7807 11.5012 -1 535248 15 5.92627e+08 1.01961e+08 4.08527e+08 22087.3 8.61 17.6417 14.9058 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 1027.32 vpr 2.77 GiB -1 -1 46.58 296972 5 239.34 -1 -1 136156 -1 -1 1474 357 58 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2904916 357 289 56200 49059 2 22147 2444 136 136 18496 dsp_top auto 320.6 MiB 116.79 449929 2454388 935803 1390028 128557 2836.8 MiB 54.75 0.34 8.9901 -151330 -8.9901 2.89342 0.11 0.11259 0.0932 17.975 14.9021 -1 579981 15 5.92627e+08 1.1662e+08 4.08527e+08 22087.3 11.65 23.2598 19.5424 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3380.80 vpr 1.81 GiB -1 -1 134.19 755496 6 1044.59 -1 -1 408828 -1 -1 4111 206 132 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1893036 206 13 177069 148272 1 75161 4574 88 88 7744 dsp_top auto 920.0 MiB 1716.82 637559 4520862 1715211 2702842 102809 1817.0 MiB 208.06 1.55 7.4122 -179472 -7.4122 7.4122 0.04 0.268528 0.228366 35.5001 29.343 -1 931299 19 2.4541e+08 1.61309e+08 1.69370e+08 21871.2 27.50 51.4586 43.1105 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 899.31 vpr 2.01 GiB -1 -1 106.07 714856 3 51.34 -1 -1 407136 -1 -1 6192 260 0 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2104736 260 122 206293 154384 1 87490 6637 87 87 7569 clb auto 1055.9 MiB 203.84 911610 7737417 3028323 4214852 494242 1900.2 MiB 254.43 1.57 7.9787 -159676 -7.9787 7.9787 0.07 0.317118 0.27396 46.0589 38.1983 -1 1218227 15 2.37162e+08 1.8877e+08 1.65965e+08 21927.0 29.18 62.4246 52.4257 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 1284.17 vpr 3.19 GiB -1 -1 55.27 306820 5 18.14 -1 -1 131152 -1 -1 1004 1052 690 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 3343432 1052 32 45960 36468 1 23568 2876 148 148 21904 memory auto 267.1 MiB 447.97 383624 3233028 1326615 1765569 140844 3265.1 MiB 65.58 0.38 6.08031 -114959 -6.08031 6.08031 0.13 0.115786 0.101385 19.525 16.6782 -1 554284 14 7.00618e+08 1.47876e+08 4.83549e+08 22075.8 12.39 24.3074 20.8343 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 452.01 vpr 1.58 GiB -1 -1 40.18 282024 9 15.52 -1 -1 60868 -1 -1 1832 1016 21 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1653008 1016 2244 14923 16171 1 8187 5115 104 104 10816 io auto 131.4 MiB 34.49 72943 6040239 3129409 2113691 797139 1614.3 MiB 37.92 0.36 15.91 -24641.1 -15.91 15.91 0.06 0.12061 0.116774 17.017 16.3537 -1 103163 16 3.44415e+08 5.45192e+07 2.37404e+08 21949.3 5.59 21.8959 21.0536 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 353.12 vpr 951.08 MiB -1 -1 23.12 171452 4 125.20 -1 -1 97796 -1 -1 1095 91 56 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 973904 91 65 43891 37290 2 18676 1391 72 72 5184 dsp_top auto 249.1 MiB 44.10 212545 870623 301336 536640 32647 951.1 MiB 24.24 0.20 6.44528 -98882.8 -6.44528 2.22372 0.03 0.0899344 0.0751866 10.5375 8.84854 -1 297684 16 1.63139e+08 5.95819e+07 1.13044e+08 21806.4 7.23 14.8852 12.705 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 244.93 vpr 534.97 MiB -1 -1 39.93 190940 5 23.78 -1 -1 70836 -1 -1 666 151 72 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 547812 151 97 23552 20376 2 11485 992 50 50 2500 memory auto 167.0 MiB 95.85 132973 525162 172354 326675 26133 535.0 MiB 14.60 0.15 4.78754 -25459.2 -4.78754 2.11147 0.01 0.0614346 0.0518776 6.9681 5.89089 -1 202188 14 7.5303e+07 3.00192e+07 5.42358e+07 21694.3 5.07 9.64823 8.26979 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 145.43 vpr 556.78 MiB -1 -1 24.72 234660 5 7.94 -1 -1 73196 -1 -1 873 3 84 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 570144 3 384 24672 23040 1 12367 1362 52 52 2704 memory auto 180.3 MiB 16.79 107156 771054 245311 455922 69821 556.8 MiB 19.27 0.16 6.07065 -42231.5 -6.07065 6.07065 0.02 0.056264 0.0478382 6.36102 5.35137 -1 174187 17 8.30642e+07 4.04924e+07 5.85728e+07 21661.5 5.28 9.30432 7.95656 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 107.13 vpr 351.39 MiB -1 -1 24.54 301764 6 7.81 -1 -1 70444 -1 -1 685 37 52 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 359824 37 17 16480 14235 1 8948 791 38 38 1444 memory auto 137.2 MiB 16.34 99313 271335 68101 193947 9287 351.4 MiB 10.82 0.13 6.55728 -42171.5 -6.55728 6.55728 0.01 0.0475515 0.041839 4.04663 3.44216 -1 162861 15 4.31434e+07 2.62733e+07 3.09543e+07 21436.5 5.13 6.43177 5.54111 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 241.53 vpr 1.09 GiB -1 -1 15.16 184108 6 12.35 -1 -1 64108 -1 -1 644 82 232 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1144196 82 17 16166 14262 1 8933 1007 84 84 7056 memory auto 130.1 MiB 17.36 163629 520642 168550 336267 15825 1117.4 MiB 10.40 0.09 6.14502 -42576.1 -6.14502 6.14502 0.04 0.0428761 0.0372263 4.90675 4.12616 -1 220423 14 2.2198e+08 5.80301e+07 1.54484e+08 21894.0 3.82 6.86146 5.84708 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 459.25 parmys 476.39 MiB -1 -1 62.80 487828 10 78.33 -1 -1 98584 -1 -1 1387 402 0 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 481464 402 150 35614 32642 1 17791 1947 43 43 1849 clb auto 243.7 MiB 211.58 124459 1192843 403919 739552 49372 469.4 MiB 33.95 0.29 10.2966 -28481.7 -10.2966 10.2966 0.01 0.0767148 0.0684923 8.56138 7.35741 -1 202624 16 5.60835e+07 4.07336e+07 3.97519e+07 21499.1 6.47 12.7366 11.0245 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/titan_s10_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/titan_s10_qor/config/golden_results.txt index 786ae574e38..9b489cb8f38 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/titan_s10_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/titan_s10_qor/config/golden_results.txt @@ -1,15 +1,15 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_MLAB num_DSP num_M20K 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 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 total_internal_heap_pushes total_internal_heap_pops total_external_heap_pushes total_external_heap_pops total_external_SOURCE_pushes total_external_SOURCE_pops total_internal_SOURCE_pushes total_internal_SOURCE_pops total_external_SINK_pushes total_external_SINK_pops total_internal_SINK_pushes total_internal_SINK_pops total_external_IPIN_pushes total_external_IPIN_pops total_internal_IPIN_pushes total_internal_IPIN_pops total_external_OPIN_pushes total_external_OPIN_pops total_internal_OPIN_pushes total_internal_OPIN_pops total_external_CHANX_pushes total_external_CHANX_pops total_internal_CHANX_pushes total_internal_CHANX_pops total_external_CHANY_pushes total_external_CHANY_pops total_internal_CHANY_pushes total_internal_CHANY_pops rt_node_SOURCE_pushes rt_node_SINK_pushes rt_node_IPIN_pushes rt_node_OPIN_pushes rt_node_CHANX_pushes rt_node_CHANY_pushes rt_node_SOURCE_high_fanout_pushes rt_node_SINK_high_fanout_pushes rt_node_IPIN_high_fanout_pushes rt_node_OPIN_high_fanout_pushes rt_node_CHANX_high_fanout_pushes rt_node_CHANY_high_fanout_pushes rt_node_SOURCE_entire_tree_pushes rt_node_SINK_entire_tree_pushes rt_node_IPIN_entire_tree_pushes rt_node_OPIN_entire_tree_pushes rt_node_CHANX_entire_tree_pushes rt_node_CHANY_entire_tree_pushes adding_all_rt adding_high_fanout_rt total_number_of_adding_all_rt_from_calling_high_fanout_rt 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 -stratix10_arch.timing.xml gsm_switch_stratix10_arch_timing.blif common 5876.49 vpr 5.50 GiB 136 9147 0 0 2240 1 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 5771256 100 36 285842 271283 4 259271 11524 180 133 23940 M20K auto 3008.3 MiB 696.69 3558324 4364.8 MiB 1172.31 7.35 5.263 -555805 -4.263 3.93687 41.80 0.477251 0.207663 85.3668 35.5994 4344275 16.7562 917066 3.53720 867774 1683606 3900120344 810945979 0 0 3900120344 810945979 1533717 1426498 0 0 27994058 27190405 0 0 32439352 29690053 0 0 42863840 27014656 0 0 1908766704 432374883 0 0 1886522673 293249484 0 0 1533717 0 0 967988 11203580 10795478 407 0 0 1279 1217637 1128248 1533310 0 0 966709 9985943 9667230 37247267 151153 4207417 0 0 4.25346e+08 17767.2 31 7099044 74943478 -1 5.619 4.31926 -1.12527e+06 -4.619 0 0 205.10 -1 -1 5325.3 MiB 1932.19 116.551 47.6328 4364.8 MiB -1 1707.13 -stratix10_arch.timing.xml mes_noc_stratix10_arch_timing.blif common 10039.63 vpr 9.15 GiB 5 25968 0 64 736 8 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 9597888 3 2 594103 567321 9 549954 26781 206 153 31518 LAB auto 5821.7 MiB 1652.14 5213219 6811.0 MiB 5062.16 45.13 8.817 -1.97944e+06 -7.817 6.88567 48.75 1.18484 0.280288 128.242 40.6328 5676746 10.3297 1427744 2.59799 1726064 4454511 2968067914 298622116 0 0 2968067914 298622116 3869248 3580295 0 0 13605524 11847904 0 0 23785409 18398297 0 0 132381714 99534118 0 0 1495030918 112769766 0 0 1299395101 52491736 0 0 3869248 0 0 4096088 160283209 155895173 135666 0 0 344726 4022199 4358367 3733582 0 0 3751362 156261010 151536806 691112351 724964 7623761 0 0 5.61777e+08 17824.0 38 9457572 99318840 -1 9.629 7.19556 -2.74899e+06 -8.629 0 0 238.62 -1 -1 8688.8 MiB 782.78 187.934 63.1653 6811.0 MiB -1 2033.45 -stratix10_arch.timing.xml dart_stratix10_arch_timing.blif common 2707.08 vpr 3.36 GiB 69 7615 0 0 530 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 3519128 23 46 226521 213853 1 192941 8214 113 84 9492 LAB auto 2245.7 MiB 614.25 1808216 2449.2 MiB 1054.71 10.02 8.816 -911676 -7.816 8.816 13.66 0.592336 0.23319 76.2307 42.0918 1986770 10.2975 477180 2.47323 638182 1498409 908409469 99791819 0 0 908409469 99791819 1333303 1214257 0 0 6635750 6027597 0 0 9885147 8116890 0 0 47023865 33107457 0 0 453762551 35580762 0 0 389768853 15744856 0 0 1333303 0 0 1221274 19160973 21075180 4388 0 0 15152 1086703 1171530 1328915 0 0 1206122 18074270 19903650 83142529 170333 812650 0 0 1.68166e+08 17716.6 51 2787740 29334285 -1 9.044 9.044 -1.20548e+06 -8.044 0 0 69.21 -1 -1 3250.1 MiB 314.47 122.863 66.6567 2440.5 MiB -1 560.99 -stratix10_arch.timing.xml cholesky_bdti_stratix10_arch_timing.blif common 3967.83 vpr 4.37 GiB 162 9767 48 270 342 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 4581576 94 68 340057 306706 1 298658 10589 128 95 12160 LAB auto 2944.8 MiB 858.22 2288003 3216.9 MiB 1238.91 8.57 4.324 -202510 -3.324 4.324 19.80 0.655419 0.291864 73.9534 41.1458 2428816 8.13254 559525 1.87349 848671 1377042 1621757451 311265292 0 0 1621757451 311265292 1235839 1132396 0 0 13751184 12897972 0 0 15937688 14291769 0 0 41184013 22925549 0 0 783356764 156352197 0 0 766291963 103665409 0 0 1235839 0 0 498365 11344841 10527680 5688 0 0 16682 1504428 1331240 1230151 0 0 481683 9840413 9196440 46374179 147899 843008 0 0 2.16263e+08 17784.8 55 3596840 37788563 -1 11.197 11.197 -650012 -8.15 0 0 77.78 -1 -1 4112.9 MiB 852.49 118.054 64.4653 3216.9 MiB -1 822.19 -stratix10_arch.timing.xml minres_stratix10_arch_timing.blif common 3697.04 vpr 4.72 GiB 229 11052 0 156 581 1 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 4948108 129 100 369949 333068 2 323247 12019 136 101 13736 io_cell LAB auto 3199.8 MiB 1011.86 1857453 3522.6 MiB 1226.01 8.96 4.1 -100147 -3.1 2.98965 20.01 0.359263 0.177324 63.6529 31.6839 1724166 5.33398 457447 1.41518 839575 1454860 707730112 89983724 0 0 707730112 89983724 1394086 1224797 0 0 10189541 9355412 0 0 11772877 10397832 0 0 47443551 26116678 0 0 347595445 29393412 0 0 289334612 13495593 0 0 1394086 0 0 744138 1523103 1635131 3052 0 0 7644 622503 630928 1391034 0 0 736494 900600 1004203 6728072 64516 206157 0 0 2.44209e+08 17778.8 30 4039804 42650932 -1 4.29 3.24794 -184569 -3.29 0 0 108.11 -1 -1 4356.3 MiB 217.19 85.8756 43.3136 3522.6 MiB -1 1012.13 -stratix10_arch.timing.xml openCV_stratix10_arch_timing.blif common 3381.98 vpr 4.28 GiB 208 8525 0 594 933 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 4490744 106 102 302246 252591 1 243511 10260 138 102 14076 DSP auto 2689.1 MiB 555.97 2007066 3191.4 MiB 1288.63 10.06 10.478 -532928 -9.478 10.478 21.34 0.605381 0.248592 80.3854 41.3347 2486345 10.2111 613641 2.52015 762798 1580312 1079730318 170211741 0 0 1079730318 170211741 1404816 1243246 0 0 22533102 21524413 0 0 25432040 23264915 0 0 45468878 31622173 0 0 531898762 59544379 0 0 452992720 33012615 0 0 1404816 0 0 944799 5077813 5257966 9730 0 0 20608 1471766 1567054 1395086 0 0 924191 3606047 3690912 15535566 187771 445298 0 0 2.50467e+08 17793.9 39 4149580 43753096 -1 10.326 10.326 -918841 -9.326 0 0 120.09 -1 -1 4188.4 MiB 308.20 118.469 60.9768 3191.4 MiB -1 980.34 -stratix10_arch.timing.xml bitonic_mesh_stratix10_arch_timing.blif common 4318.19 vpr 4.58 GiB 119 9539 0 507 1495 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 4801528 87 32 260931 228346 1 234152 11660 147 109 16023 M20K auto 2724.2 MiB 855.66 2410139 3368.2 MiB 1726.62 15.40 7.461 -795436 -6.461 7.461 21.21 0.66946 0.262343 80.5612 37.5628 3403102 14.5339 840101 3.58789 884035 2504693 1686628381 260942085 0 0 1686628381 260942085 2405219 2243853 0 0 33532229 32211496 0 0 37541823 34525761 0 0 67267907 51175447 0 0 831219295 92820360 0 0 714661908 47965168 0 0 2405219 0 0 2720780 5894750 6255004 2610 0 0 2502 908194 911857 2402609 0 0 2718278 4986556 5343147 28518336 102866 571900 0 0 2.85989e+08 17848.7 34 4788948 50134278 -1 7.898 7.898 -1.11006e+06 -6.898 0 0 140.51 -1 -1 4470.3 MiB 450.01 113.89 56.0953 3368.2 MiB -1 1004.15 -stratix10_arch.timing.xml segmentation_stratix10_arch_timing.blif common 5440.19 vpr 5.67 GiB 441 7333 0 21 194 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 5944320 72 369 179830 142047 1 137239 7989 247 183 45201 io_cell auto 1833.4 MiB 543.56 1089723 5805.0 MiB 1181.08 7.66 915.976 -298759 -914.976 915.976 73.92 0.715908 0.54122 103.067 77.2779 1276173 9.30861 360873 2.63227 494382 1519482 876037487 81009941 0 0 876037487 81009941 1471928 1238486 0 0 4257567 3628159 0 0 5868758 4402054 0 0 48928324 38287393 0 0 446834641 24278349 0 0 368676269 9175500 0 0 1471928 0 0 2042066 5481121 7236525 4348 0 0 8865 402173 425437 1467580 0 0 2033201 5078948 6811088 36382067 52342 68458 0 0 8.14209e+08 18013.1 35 13628436 143011381 -1 898.681 898.681 -453334 -897.681 0 0 410.22 -1 -1 5805.0 MiB 217.39 144.221 108.788 5805.0 MiB -1 2936.20 -stratix10_arch.timing.xml des90_stratix10_arch_timing.blif common 2226.69 vpr 2.67 GiB 117 5477 0 264 772 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2803004 85 32 151105 128345 1 131761 6630 108 80 8640 M20K auto 1660.4 MiB 493.47 1237610 1992.6 MiB 803.34 6.92 7.585 -436206 -6.585 7.585 9.10 0.659666 0.373037 55.7826 35.0966 1773897 13.4633 448198 3.40168 489635 1322778 865609625 133726815 0 0 865609625 133726815 1274448 1190874 0 0 17558669 16828616 0 0 19636731 18065820 0 0 35124929 26903435 0 0 425693769 46933405 0 0 366321079 23804665 0 0 1274448 0 0 1413174 3807187 4016080 2591 0 0 2588 416429 426895 1271857 0 0 1410586 3390758 3589185 18712830 51386 147396 0 0 1.53228e+08 17734.7 45 2557548 26746022 -1 8.022 8.022 -577444 -7.022 0 0 65.55 -1 -1 2610.8 MiB 302.00 98.0463 62.8899 1992.6 MiB -1 488.22 -stratix10_arch.timing.xml neuron_stratix10_arch_timing.blif common 1307.63 vpr 2.01 GiB 133 4941 0 243 108 1 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2104460 40 93 140673 125393 2 126772 5426 92 68 6256 LAB auto 1379.9 MiB 433.62 654795 1610.8 MiB 343.34 2.16 4.865 -60836.1 -3.865 3.25589 7.59 0.196046 0.1525 32.3425 23.0559 544126 4.29386 142805 1.12692 304459 426226 201276346 32187872 0 0 201276346 32187872 414048 383269 0 0 4971634 4644646 0 0 5522203 5105846 0 0 14621959 7029064 0 0 95807953 9959746 0 0 79938549 5065301 0 0 414048 0 0 140271 339480 349898 59 0 0 205 75868 72576 413989 0 0 140066 263612 277322 1646306 12304 98413 0 0 1.10094e+08 17598.1 43 1823504 19161680 -1 5.671 3.81988 -121040 -4.671 0 0 49.44 -1 -1 1900.1 MiB 78.56 50.2856 35.1734 1610.8 MiB -1 351.35 -stratix10_arch.timing.xml sparcT1_core_stratix10_arch_timing.blif common 2662.87 vpr 2.79 GiB 309 4721 0 6 154 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2926736 172 137 98039 97359 1 92412 5190 163 121 19723 io_cell auto 1237.1 MiB 375.82 1194954 2858.1 MiB 487.80 4.13 6.781 -345278 -5.781 6.781 30.81 0.471937 0.36583 35.8548 22.2174 1580128 17.0995 356193 3.85457 359732 1056736 764603664 84937406 0 0 764603664 84937406 928679 868267 0 0 3444792 3089679 0 0 5627741 4395904 0 0 33953759 27214704 0 0 385755574 33183541 0 0 334893119 16185311 0 0 928679 0 0 1283103 7111610 8094702 14335 0 0 46020 975918 1032141 914344 0 0 1237083 6135692 7062561 28608516 143526 78716 0 0 3.51754e+08 17834.7 38 5914532 61913289 -1 6.8 6.8 -491126 -5.8 0 0 173.73 -1 -1 2858.1 MiB 209.27 58.9347 36.3359 2858.1 MiB -1 1338.08 -stratix10_arch.timing.xml stereo_vision_stratix10_arch_timing.blif common 5412.17 vpr 6.94 GiB 506 4894 0 76 79 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 7279824 172 334 150507 118033 3 113004 5555 287 213 61131 io_cell auto 1286.0 MiB 186.46 585544 7109.2 MiB 293.88 2.27 6.876 -32628.8 -5.876 6.876 100.52 0.129611 0.0623175 19.9156 8.7215 468560 4.14670 125368 1.10949 263330 361111 156590035 17609907 0 0 156590035 17609907 354131 324435 0 0 1664403 1451570 0 0 2014073 1754722 0 0 12861331 6545372 0 0 76743430 5609838 0 0 62952667 1923970 0 0 354131 0 0 115909 310293 369739 385 0 0 1084 83739 85604 353746 0 0 114825 226554 284135 1560051 7441 8817 0 0 1.10789e+09 18123.3 52 18464012 193849543 -1 6.893 6.893 -55787.5 -5.893 0 0 538.84 -1 -1 7109.2 MiB 58.15 36.0458 18.6889 7109.2 MiB -1 4180.82 -stratix10_arch.timing.xml cholesky_mc_stratix10_arch_timing.blif common 2175.41 vpr 2.74 GiB 262 4264 115 131 382 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2871972 111 151 145547 131782 1 128603 5154 147 109 16023 io_cell auto 1519.8 MiB 402.55 871645 2689.2 MiB 337.91 2.06 4.014 -65211.8 -3.014 3.819 22.41 0.222194 0.178987 33.72 20.9683 889223 6.91470 223608 1.73880 336697 546797 314007892 48226445 0 0 314007892 48226445 505940 468251 0 0 6522869 6189867 0 0 7322974 6758167 0 0 16867157 9306393 0 0 153412805 16412836 0 0 129376147 9090931 0 0 505940 0 0 230124 1249222 1290328 2573 0 0 4191 418910 405737 503367 0 0 225933 830312 884591 3841669 43746 146850 0 0 2.85989e+08 17848.7 30 4788948 50134278 -1 4.458 4.458 -209525 -3.458 0 0 133.66 -1 -1 2689.2 MiB 113.72 52.5895 33.1009 2689.2 MiB -1 1106.25 -stratix10_arch.timing.xml LU_Network_stratix10_arch_timing.blif common 15069.95 vpr 16.29 GiB 748 24068 826 224 1026 1 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 17085064 325 423 817452 760174 3 709350 26893 406 301 122206 io_cell auto 6756.1 MiB 2343.95 4873244 16684.6 MiB 3637.15 25.33 4.295 -261810 -3.295 4.28599 235.52 0.768364 0.239743 105.401 36.9768 4639684 6.54613 1148758 1.62078 1840410 2937184 1466243978 193202193 0 0 1466243978 193202193 2711962 2473304 0 0 17123823 15542439 0 0 20937584 18151464 0 0 93683056 53167751 0 0 725677027 69473686 0 0 606110526 34393549 0 0 2711962 0 0 1291720 4558557 5341833 21438 0 0 65926 1857004 2034221 2690524 0 0 1225794 2701553 3307612 17251811 248687 418310 0 0 2.23450e+09 18284.7 39 36989044 388958294 -1 4.908 4.74116 -472241 -3.908 0 0 950.79 -1 -1 16684.6 MiB 335.55 152.8 57.9852 16684.6 MiB -1 7317.90 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_MLAB num_DSP num_M20K 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 +stratix10_arch.timing.xml gsm_switch_stratix10_arch_timing.blif common 3348.22 vpr 5.40 GiB 136 9090 0 0 2240 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5665956 100 36 285842 271283 4 258743 11467 180 133 23940 M20K auto 2537.0 MiB 635.05 3438864 16426344 6351589 9654498 420257 4682.3 MiB 836.17 5.64 5.57216 -640841 -4.57216 4.33502 0.15 1.33213 1.04738 180.166 143.354 4193740 16.2086 887855 3.43152 848838 1626270 3464380030 716819176 0 0 4.25346e+08 17767.2 41 7099044 74943478 -1 5.713 4.31521 -1.12447e+06 -4.713 0 0 166.62 -1 -1 5231.1 MiB 957.21 290.023 234.525 4682.3 MiB -1 620.98 +stratix10_arch.timing.xml mes_noc_stratix10_arch_timing.blif common 7039.56 vpr 9.03 GiB 5 26001 0 64 736 8 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 9466652 3 2 594103 567321 9 550449 26814 206 153 31518 LAB auto 4791.3 MiB 1557.81 4892389 47362160 17896376 28168353 1297431 7205.1 MiB 3476.21 33.65 9.295 -2.17146e+06 -8.295 7.77804 0.25 2.24529 1.76453 287.641 225.909 5339983 9.70812 1390606 2.52813 1692147 4326988 2852689497 279229853 0 0 5.61777e+08 17824.0 42 9457572 99318840 -1 9.584 7.4812 -2.78078e+06 -8.584 0 0 221.68 -1 -1 8546.8 MiB 671.41 495.872 394.641 7205.1 MiB -1 861.31 +stratix10_arch.timing.xml dart_stratix10_arch_timing.blif common 1804.05 vpr 3.30 GiB 69 7615 0 0 530 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 3457440 23 46 226521 213853 1 193313 8214 113 84 9492 LAB auto 1879.5 MiB 481.25 1799367 9203565 3510986 5359975 332604 2582.2 MiB 669.38 5.30 10.492 -1.09535e+06 -9.492 10.492 0.07 0.824852 0.662847 98.7252 78.5539 1991673 10.3030 480626 2.48630 628668 1443941 845663456 96806518 0 0 1.68166e+08 17716.6 53 2787740 29334285 -1 10.812 10.812 -1.30009e+06 -9.812 0 0 64.82 -1 -1 3192.2 MiB 237.17 191.701 153.848 2582.2 MiB -1 263.35 +stratix10_arch.timing.xml cholesky_bdti_stratix10_arch_timing.blif common 2541.43 vpr 4.30 GiB 162 9726 48 270 342 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4507236 94 68 340057 306706 1 299087 10548 128 95 12160 LAB auto 2506.7 MiB 810.77 2241564 13654534 5367665 7691641 595228 3355.0 MiB 830.58 5.84 4.258 -225582 -3.258 4.258 0.09 0.905927 0.758207 117.128 97.7573 2301404 7.69487 532493 1.78042 856314 1385835 1310386626 226106625 0 0 2.16263e+08 17784.8 46 3596840 37788563 -1 5.7696 5.7696 -524545 -4.7696 0 0 84.51 -1 -1 4034.1 MiB 380.06 201.611 168.776 3355.0 MiB -1 325.81 +stratix10_arch.timing.xml minres_stratix10_arch_timing.blif common 2502.22 vpr 4.64 GiB 229 11102 0 156 581 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4861744 129 100 369949 333068 2 320728 12069 136 101 13736 io_cell LAB auto 2742.4 MiB 877.44 1697816 15510181 5588098 9392563 529520 3616.6 MiB 853.85 5.92 3.82271 -125313 -2.82271 3.00423 0.09 0.840904 0.727981 103.42 86.7811 1558728 4.86004 439751 1.37112 811829 1400905 680404590 87918111 0 0 2.44209e+08 17778.8 35 4039804 42650932 -1 4.675 3.06694 -189435 -3.675 0 0 93.83 -1 -1 4255.2 MiB 177.88 169.43 142.757 3616.6 MiB -1 382.59 +stratix10_arch.timing.xml openCV_stratix10_arch_timing.blif common 2328.40 vpr 4.20 GiB 208 8331 0 594 933 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4408380 106 102 302246 252591 1 239989 10066 138 102 14076 DSP auto 2230.4 MiB 424.06 1884074 12829232 4909232 7387318 532682 3400.3 MiB 969.47 6.69 11.6414 -567816 -10.6414 11.6414 0.11 1.13749 0.9335 136.74 112.415 2374362 9.89433 598656 2.49469 744206 1565447 1073679317 169537451 0 0 2.50467e+08 17793.9 49 4149580 43753096 -1 10.263 10.263 -865750 -9.263 0 0 97.53 -1 -1 4111.4 MiB 299.68 243.264 202.105 3400.3 MiB -1 425.53 +stratix10_arch.timing.xml bitonic_mesh_stratix10_arch_timing.blif common 3045.84 vpr 4.51 GiB 119 9483 0 507 1495 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4724716 87 32 260931 228346 1 233328 11604 147 109 16023 M20K auto 2275.9 MiB 715.07 2325363 14587458 5505233 8588360 493865 3544.0 MiB 1259.08 8.83 8.82314 -923934 -7.82314 8.82314 0.14 1.20896 0.999444 141.842 117.071 3312594 14.1973 829786 3.55635 866612 2488240 1651737343 253572757 0 0 2.85989e+08 17848.7 26 4788948 50134278 -1 8.68 8.68 -1.11542e+06 -7.68 0 0 111.13 -1 -1 4390.2 MiB 348.88 215.85 181.014 3544.0 MiB -1 490.93 +stratix10_arch.timing.xml segmentation_stratix10_arch_timing.blif common 3336.63 vpr 6.23 GiB 441 7316 0 21 194 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6536408 72 369 179830 142047 1 137223 7972 247 183 45201 io_cell auto 1564.8 MiB 434.67 1093975 10197156 4088519 5695844 412793 6383.2 MiB 839.91 6.62 1017.23 -325669 -1016.23 1017.23 0.25 0.641316 0.527924 86.351 71.6722 1323892 9.65781 371834 2.71253 513541 1575168 935476477 90946113 0 0 8.14209e+08 18013.1 47 13628436 143011381 -1 900.68 900.68 -421913 -899.68 0 0 318.16 -1 -1 6383.2 MiB 201.78 143.533 119.495 6383.2 MiB -1 1453.05 +stratix10_arch.timing.xml des90_stratix10_arch_timing.blif common 1560.62 vpr 2.63 GiB 117 5463 0 264 772 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2757452 85 32 151105 128345 1 131386 6616 108 80 8640 M20K auto 1413.4 MiB 375.08 1222107 6649390 2337165 4030849 281376 2113.7 MiB 582.47 4.33 8.65853 -506175 -7.65853 8.65853 0.07 0.684493 0.552478 77.4857 63.835 1728673 13.1575 441383 3.35951 462990 1235980 810637736 124522776 0 0 1.53228e+08 17734.7 52 2557548 26746022 -1 8.348 8.348 -585413 -7.348 0 0 59.17 -1 -1 2570.4 MiB 208.79 149.08 124.889 2113.7 MiB -1 266.45 +stratix10_arch.timing.xml neuron_stratix10_arch_timing.blif common 828.72 vpr 1.98 GiB 133 4925 0 243 108 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2073624 40 93 140673 125393 2 126477 5410 92 68 6256 LAB auto 1215.4 MiB 299.93 623845 5844466 2147413 3412677 284376 1682.8 MiB 214.03 1.69 5.22832 -66938.5 -4.22832 3.17658 0.05 0.314418 0.254907 40.5879 33.107 510174 4.03532 136296 1.07806 310744 435121 201349064 32759845 0 0 1.10094e+08 17598.1 61 1823504 19161680 -1 5.5413 3.13709 -123885 -4.5413 0 0 43.25 -1 -1 1865.9 MiB 77.62 81.433 67.9256 1682.8 MiB -1 146.05 +stratix10_arch.timing.xml sparcT1_core_stratix10_arch_timing.blif common 1869.31 vpr 3.03 GiB 309 4802 0 6 154 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 3179148 172 137 98039 97359 1 92241 5271 163 121 19723 io_cell auto 1058.5 MiB 397.90 1194647 5232513 2006567 3037956 187990 3104.6 MiB 369.70 3.06 7.09243 -387420 -6.09243 7.09243 0.11 0.38107 0.305727 47.2157 38.087 1571633 17.0391 355029 3.84910 348543 1016790 721192171 78559893 0 0 3.51754e+08 17834.7 48 5914532 61913289 -1 7.126 7.126 -499143 -6.126 0 0 138.52 -1 -1 3104.6 MiB 159.78 86.5686 70.9681 3104.6 MiB -1 750.53 +stratix10_arch.timing.xml stereo_vision_stratix10_arch_timing.blif common 3118.91 vpr 7.73 GiB 506 4877 0 76 79 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 8107048 172 334 150507 118033 3 113258 5538 287 213 61131 io_cell auto 1119.1 MiB 164.48 548166 6078438 2313115 3518700 246623 7917.0 MiB 222.51 1.67 7.79567 -39956.2 -6.79567 7.79567 0.39 0.283181 0.232963 38.8908 31.7527 431512 3.81026 122339 1.08026 265065 363657 158604454 17800028 0 0 1.10789e+09 18123.3 34 18464012 193849543 -1 7.055 7.055 -53401.5 -6.055 0 0 430.30 -1 -1 7917.0 MiB 47.32 61.2796 50.6698 7917.0 MiB -1 2184.93 +stratix10_arch.timing.xml cholesky_mc_stratix10_arch_timing.blif common 1364.18 vpr 2.82 GiB 262 4231 115 131 382 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2956720 111 151 145547 131782 1 128429 5121 147 109 16023 io_cell auto 1308.3 MiB 345.83 865200 4946673 1818266 2858055 270352 2887.4 MiB 269.60 1.89 4.737 -88694.7 -3.737 4.673 0.09 0.422712 0.363628 54.4772 45.0741 890679 6.93540 223382 1.73940 333084 540462 305061906 46443606 0 0 2.85989e+08 17848.7 28 4788948 50134278 -1 4.994 4.994 -232050 -3.994 0 0 111.40 -1 -1 2887.4 MiB 82.08 82.8686 69.4708 2887.4 MiB -1 497.51 +stratix10_arch.timing.xml LU_Network_stratix10_arch_timing.blif common 10558.53 vpr 17.79 GiB 748 25974 826 224 1026 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 18654924 325 423 817452 760174 3 701695 28799 406 301 122206 io_cell auto 5642.6 MiB 1762.36 4677077 60476213 25143654 32544179 2788380 18217.7 MiB 3138.47 19.02 4.74371 -328506 -3.74371 4.74315 0.70 2.48001 1.99875 358.804 296.357 4445306 6.34037 1138868 1.62438 1784757 2922645 1448415964 195919701 0 0 2.23450e+09 18284.7 52 36989044 388958294 -1 5.274 5.04085 -477612 -4.274 0 0 887.32 -1 -1 18217.7 MiB 510.43 609.979 507.014 18217.7 MiB -1 3944.68 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium/config/golden_results.txt index 717496e4d3d..5301c84b184 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium/config/golden_results.txt @@ -1,13 +1,13 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 896.49 vpr 2.33 GiB 99.36 239344 -1 -1 5 221.69 -1 -1 116620 -1 -1 534 355 32 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 2438388 355 289 26113 19088 2 12679 1486 136 136 18496 dsp_top auto 267.1 MiB 21.14 372471 2381.2 MiB 27.03 0.20 6.10082 -84917.9 -6.10082 2.38354 7.92 0.0947724 0.0856098 13.6704 12.3765 -1 406656 20 5.92627e+08 8.93491e+07 4.08527e+08 22087.3 8.22 19.3455 17.711 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 853.74 vpr 2.35 GiB 126.93 305056 -1 -1 7 183.70 -1 -1 127432 -1 -1 1027 357 58 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 2464292 357 289 30369 24839 2 17367 2009 136 136 18496 dsp_top auto 301.2 MiB 66.38 221982 2406.5 MiB 31.32 0.22 8.50783 -70725.8 -8.50783 2.81474 7.62 0.0854997 0.0740726 14.1213 12.2703 -1 289120 14 5.92627e+08 1.07193e+08 4.08527e+08 22087.3 6.82 18.3495 16.1737 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3048.74 vpr 2.07 GiB 32.60 654580 -1 -1 5 1711.74 -1 -1 567508 -1 -1 4752 206 132 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 2175408 206 13 208395 166387 1 84584 5231 90 90 8100 dsp_top auto 1317.5 MiB 950.87 674514 1831.0 MiB 130.39 0.97 4.74422 -162332 -4.74422 4.74422 2.65 0.257348 0.227299 33.6959 28.4444 -1 981530 18 2.56465e+08 1.83255e+08 1.77260e+08 21883.9 23.04 48.3407 41.3318 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 1059.23 vpr 2.11 GiB 25.90 522352 -1 -1 3 242.94 -1 -1 495108 -1 -1 5692 260 0 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 2208824 260 122 231647 179602 1 86408 6137 83 83 6889 clb auto 1431.7 MiB 280.38 943468 1734.5 MiB 208.51 1.37 6.88034 -137327 -6.88034 6.88034 2.23 0.365053 0.325493 48.0649 40.8352 -1 1220424 17 2.13666e+08 1.74818e+08 1.51189e+08 21946.4 29.47 65.988 56.4343 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 943.81 vpr 1.30 GiB 8.23 584952 -1 -1 7 47.35 -1 -1 285148 -1 -1 1453 1057 194 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 1357992 1057 32 57517 46908 1 31331 2873 94 94 8836 dsp_top auto 420.3 MiB 587.26 319414 1326.2 MiB 56.14 0.32 6.68459 -96828.8 -6.68459 6.68459 3.34 0.105486 0.094122 18.6779 16.2237 -1 478513 17 2.78391e+08 1.0202e+08 1.93746e+08 21926.9 11.00 24.5173 21.432 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 740.53 odin 3.88 GiB 76.60 4073096 -1 -1 3 52.76 -1 -1 1632568 -1 -1 1714 1016 21 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 1460100 1016 2283 12854 14312 1 7287 5046 106 106 11236 io auto 141.2 MiB 173.04 80929 1425.9 MiB 17.77 0.19 5.66022 -18299.6 -5.66022 5.66022 4.33 0.0554674 0.0536311 7.74007 7.43961 -1 106865 11 3.5748e+08 5.37642e+07 2.46822e+08 21967.1 2.54 9.69002 9.32763 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 594.61 vpr 559.78 MiB 7.88 210300 -1 -1 4 453.10 -1 -1 108148 -1 -1 958 91 56 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 573216 91 65 36754 30551 2 13865 1212 56 56 3136 dsp_top auto 276.4 MiB 17.91 171367 559.8 MiB 19.83 0.14 4.06233 -55482.5 -4.06233 1.92481 0.86 0.0682233 0.0615488 9.17274 7.97209 -1 244489 13 9.76016e+07 4.51004e+07 6.79229e+07 21659.1 5.83 12.3615 10.8263 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 245.22 vpr 472.53 MiB 1.89 83776 -1 -1 4 99.09 -1 -1 68940 -1 -1 362 152 72 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 483868 152 97 14052 11986 2 6865 733 56 56 3136 dsp_top auto 139.6 MiB 10.99 136811 472.5 MiB 10.74 0.07 3.7231 -22636.8 -3.7231 1.59714 1.04 0.0343544 0.0294032 5.62501 4.8196 -1 198437 16 9.76016e+07 3.27023e+07 6.79229e+07 21659.1 7.39 8.42842 7.35456 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 616.28 vpr 514.57 MiB 413.54 367896 -1 -1 6 61.04 -1 -1 150260 -1 -1 1283 3 96 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 526916 3 384 30303 28383 1 14755 1784 52 52 2704 memory auto 276.2 MiB 24.65 141624 508.6 MiB 28.28 0.21 6.93487 -38759.8 -6.93487 6.93487 0.63 0.0684834 0.056346 8.31177 6.94311 -1 228131 15 8.30642e+07 5.35851e+07 5.85728e+07 21661.5 5.96 11.6627 9.97234 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 169.29 vpr 333.71 MiB 1.42 83196 -1 -1 6 35.61 -1 -1 67964 -1 -1 805 37 52 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 341724 37 17 18215 15970 1 9614 911 38 38 1444 memory auto 183.3 MiB 21.71 115996 312.1 MiB 29.17 0.31 5.80491 -36255.8 -5.80491 5.80491 0.61 0.0930074 0.0719807 7.75348 6.28524 -1 189202 15 4.31434e+07 2.96218e+07 3.09543e+07 21436.5 9.33 11.9585 9.99768 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 418.74 vpr 946.75 MiB 13.25 695064 -1 -1 6 50.09 -1 -1 253564 -1 -1 504 82 232 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 969468 82 17 16284 14380 1 8518 867 84 84 7056 memory auto 160.0 MiB 16.77 160928 946.7 MiB 15.58 0.13 4.93106 -38173.4 -4.93106 4.93106 3.42 0.0608339 0.0531732 7.67994 6.38891 -1 216937 14 2.2198e+08 5.41236e+07 1.54484e+08 21894.0 7.12 10.6061 8.96172 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 170.24 vpr 491.59 MiB 2.18 103548 -1 -1 10 14.36 -1 -1 51708 -1 -1 514 402 0 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 503392 402 150 13003 11825 1 7720 1119 58 58 3364 dsp_top auto 132.6 MiB 17.91 78282 491.6 MiB 15.39 0.17 7.71971 -12632.3 -7.71971 7.71971 1.80 0.0466013 0.0415373 5.10167 4.25689 -1 126675 16 1.04637e+08 2.77931e+07 7.29687e+07 21691.1 4.80 7.49953 6.3951 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 1005.52 vpr 2.71 GiB 226.57 236200 -1 -1 5 152.30 -1 -1 116652 -1 -1 536 355 32 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2837056 355 289 26113 19088 2 12674 1488 136 136 18496 dsp_top auto 269.1 MiB 18.30 370957 1207210 471810 528572 206828 2770.6 MiB 52.32 0.57 5.98706 -87526.7 -5.98706 2.21181 0.11 0.161567 0.147397 23.7018 21.6403 -1 407074 13 5.92627e+08 8.94049e+07 4.08527e+08 22087.3 8.08 29.7625 27.3592 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 1195.09 vpr 2.73 GiB 342.13 302328 -1 -1 7 164.42 -1 -1 127540 -1 -1 1029 357 58 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2861412 357 289 30369 24839 2 17327 2011 136 136 18496 dsp_top auto 260.2 MiB 65.60 221282 1943275 763450 845285 334540 2794.3 MiB 60.29 0.43 9.44576 -79017.3 -9.44576 2.96583 0.11 0.145986 0.128353 23.0491 20.2846 -1 291408 15 5.92627e+08 1.07248e+08 4.08527e+08 22087.3 9.05 29.0776 25.7841 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3054.95 vpr 2.07 GiB 22.84 653108 -1 -1 5 1540.96 -1 -1 567504 -1 -1 4756 206 132 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2172736 206 13 208395 166387 1 84813 5235 90 90 8100 dsp_top auto 1096.5 MiB 1034.75 662081 5321247 1974867 3264938 81442 2013.0 MiB 170.41 1.37 4.84922 -185838 -4.84922 4.84922 0.06 0.316161 0.272947 41.3931 34.2165 -1 964636 16 2.56465e+08 1.83367e+08 1.77260e+08 21883.9 25.11 57.5569 48.2341 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 1083.89 vpr 2.10 GiB 27.69 498048 -1 -1 3 134.73 -1 -1 495220 -1 -1 5693 260 0 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2205660 260 122 231647 179602 1 86860 6138 83 83 6889 clb auto 1178.5 MiB 302.54 908164 6522438 2525997 3694260 302181 1905.2 MiB 256.57 1.79 7.71077 -154889 -7.71077 7.71077 0.06 0.394039 0.34347 50.9118 42.0537 -1 1204095 18 2.13666e+08 1.74846e+08 1.51189e+08 21946.4 35.45 71.703 59.874 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 1348.58 vpr 3.25 GiB 8.87 584856 -1 -1 7 33.82 -1 -1 285544 -1 -1 1929 1057 690 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 3411020 1057 32 57517 46908 1 31258 3845 148 148 21904 memory auto 354.4 MiB 506.08 410126 4971995 2186012 2431068 354915 3331.1 MiB 93.36 0.54 8.74294 -119537 -8.74294 8.74294 0.13 0.137611 0.121189 24.2699 20.8366 -1 593896 15 7.00618e+08 1.83584e+08 4.83549e+08 22075.8 12.91 30.3164 26.1482 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 834.72 odin 3.88 GiB 123.63 4072536 -1 -1 3 36.63 -1 -1 1632756 -1 -1 1718 1016 21 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1723848 1016 2283 12854 14312 1 7302 5050 106 106 11236 io auto 120.8 MiB 146.81 65290 5808322 2955329 2074158 778835 1683.4 MiB 30.16 0.28 6.04152 -21123.6 -6.04152 6.04152 0.06 0.111994 0.108941 15.4867 14.981 -1 91165 14 3.5748e+08 5.38758e+07 2.46822e+08 21967.1 4.61 19.5254 18.9111 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 351.87 vpr 656.73 MiB 6.91 203796 -1 -1 4 220.54 -1 -1 108452 -1 -1 940 91 56 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 672488 91 65 36754 30551 2 13677 1194 56 56 3136 dsp_top auto 229.0 MiB 17.73 168550 665949 228412 410610 26927 656.7 MiB 17.90 0.16 4.73837 -61660.6 -4.73837 2.04692 0.02 0.0838265 0.0708925 9.27571 7.93974 -1 242849 14 9.76016e+07 4.45981e+07 6.79229e+07 21659.1 5.79 12.8334 11.1116 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 139.99 vpr 570.45 MiB 2.30 82748 -1 -1 4 42.87 -1 -1 68740 -1 -1 358 152 72 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 584136 152 97 14052 11986 2 6814 729 56 56 3136 dsp_top auto 118.8 MiB 6.82 128735 345024 117764 203974 23286 570.4 MiB 9.34 0.09 4.47241 -24858.2 -4.47241 1.84076 0.02 0.0495891 0.042571 5.39741 4.63942 -1 191960 19 9.76016e+07 3.25907e+07 6.79229e+07 21659.1 4.98 7.73343 6.71312 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 279.44 vpr 594.62 MiB 101.07 368044 -1 -1 6 34.48 -1 -1 150452 -1 -1 1279 3 96 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 608892 3 384 30303 28383 1 14742 1780 52 52 2704 memory auto 226.7 MiB 25.40 135654 1133995 376682 677395 79918 594.6 MiB 24.95 0.23 6.41197 -44163.1 -6.41197 6.41197 0.01 0.0699692 0.0608779 8.037 6.84238 -1 223038 16 8.30642e+07 5.34735e+07 5.85728e+07 21661.5 6.19 11.6692 10.061 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 110.67 vpr 362.37 MiB 1.69 80180 -1 -1 6 24.58 -1 -1 68036 -1 -1 804 37 52 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 371068 37 17 18215 15970 1 9561 910 38 38 1444 memory auto 151.6 MiB 16.24 109644 344734 93069 242280 9385 362.4 MiB 16.22 0.17 6.86392 -40596.4 -6.86392 6.86392 0.01 0.0544984 0.0479428 5.76733 4.90569 -1 179767 16 4.31434e+07 2.95939e+07 3.09543e+07 21436.5 6.19 8.49981 7.32043 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 295.41 vpr 1.10 GiB 23.59 694880 -1 -1 6 23.24 -1 -1 253836 -1 -1 506 82 232 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1150664 82 17 16284 14380 1 8446 869 84 84 7056 memory auto 137.0 MiB 16.59 155490 423659 134240 273173 16246 1123.7 MiB 10.22 0.09 6.1436 -40944.1 -6.1436 6.1436 0.04 0.0467929 0.0405177 5.46221 4.52238 -1 210725 14 2.2198e+08 5.41794e+07 1.54484e+08 21894.0 4.14 7.55015 6.35415 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 131.32 vpr 595.07 MiB 1.96 102800 -1 -1 10 9.50 -1 -1 52060 -1 -1 513 402 0 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 609352 402 150 13003 11825 1 7723 1118 58 58 3364 dsp_top auto 113.2 MiB 12.34 74102 778318 278328 454520 45470 595.1 MiB 12.61 0.10 9.53955 -14550.9 -9.53955 9.53955 0.02 0.0332241 0.0286889 4.82541 4.17824 -1 122561 16 1.04637e+08 2.77652e+07 7.29687e+07 21691.1 3.40 6.5043 5.68128 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium_no_hb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium_no_hb/config/golden_results.txt index f041c937487..11c2ef07254 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium_no_hb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4_odin/koios_medium_no_hb/config/golden_results.txt @@ -1,13 +1,13 @@ 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 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 2747.02 vpr 2.41 GiB 18.56 244232 -1 -1 5 813.27 -1 -1 161168 -1 -1 1180 355 32 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 2522108 355 289 49464 41111 2 23462 2132 136 136 18496 dsp_top auto 337.4 MiB 858.40 426609 1977236 753155 1108979 115102 2463.0 MiB 58.86 0.43 6.72662 -102588 -6.72662 2.82315 18.26 0.13711 0.109532 20.9749 16.8857 -1 539186 16 5.92627e+08 1.07375e+08 4.08527e+08 22087.3 16.33 28.3747 23.4039 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 2232.36 vpr 2.39 GiB 45.77 310756 -1 -1 6 815.72 -1 -1 133016 -1 -1 1335 357 58 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 2502320 357 289 42535 35250 2 20692 2316 136 136 18496 dsp_top auto 318.6 MiB 211.40 272555 2453036 886091 1358194 208751 2443.7 MiB 67.95 0.41 8.05926 -86680.8 -8.05926 3.09017 18.54 0.148412 0.12937 24.6878 20.6502 -1 369604 15 5.92627e+08 1.15533e+08 4.08527e+08 22087.3 16.59 32.0694 27.2887 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 7929.88 vpr 2.21 GiB 111.28 695260 -1 -1 5 4283.70 -1 -1 613948 -1 -1 5610 206 120 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 2312616 206 13 227613 180877 1 95621 6077 90 90 8100 dsp_top auto 1427.2 MiB 2488.60 734239 7045941 2665194 4095981 284766 1914.6 MiB 454.55 3.17 7.91176 -153731 -7.91176 7.91176 6.87 0.585963 0.502656 84.3646 69.5641 -1 1028712 20 2.56465e+08 2.05545e+08 1.77260e+08 21883.9 54.73 120.33 100.532 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 2156.94 vpr 2.14 GiB 49.84 497956 -1 -1 3 318.58 -1 -1 498800 -1 -1 5692 260 0 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 2246412 260 122 231647 179602 1 86408 6137 83 83 6889 clb auto 1449.4 MiB 638.69 893333 6577208 2542738 3721436 313034 1764.5 MiB 470.57 3.15 6.59918 -139825 -6.59918 6.59918 5.83 0.687477 0.581414 91.1484 74.1515 -1 1169713 17 2.13666e+08 1.74818e+08 1.51189e+08 21946.4 57.80 126.618 104.568 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 2645.61 vpr 1.34 GiB 23.15 622648 -1 -1 8 163.18 -1 -1 298492 -1 -1 1594 1048 194 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 1407616 1048 32 64005 53342 1 37273 3004 94 94 8836 dsp_top auto 467.1 MiB 1843.78 328521 3621226 1320758 2080480 219988 1374.6 MiB 111.17 0.67 7.0562 -103278 -7.0562 7.0562 7.55 0.222052 0.191606 39.6453 33.3594 -1 491200 18 2.78391e+08 1.05701e+08 1.93746e+08 21926.9 22.20 51.7744 43.9716 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 1420.50 odin 3.93 GiB 126.64 4122864 -1 -1 7 109.07 -1 -1 1643132 -1 -1 1885 1016 21 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 1505544 1016 2283 16425 17373 1 9337 5207 106 106 11236 io auto 175.5 MiB 162.67 74004 6365999 3190044 2346352 829603 1470.3 MiB 65.01 0.67 10.6615 -20482.8 -10.6615 10.6615 10.97 0.169272 0.163067 24.7953 23.7122 -1 107353 16 3.5748e+08 5.59981e+07 2.46822e+08 21967.1 8.94 31.9124 30.5934 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 1384.92 vpr 878.84 MiB 21.36 229292 -1 -1 4 789.79 -1 -1 138984 -1 -1 1377 91 56 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 899936 91 65 51897 44206 2 22476 1673 72 72 5184 dsp_top auto 376.6 MiB 175.09 238390 1173059 390660 732055 50344 878.8 MiB 59.60 0.50 5.37002 -87486.1 -5.37002 3.02646 3.55 0.180223 0.155866 22.218 18.6538 -1 333847 18 1.63139e+08 6.74509e+07 1.13044e+08 21806.4 18.77 31.8066 27.1378 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 1772.13 vpr 580.10 MiB 67.69 354176 -1 -1 5 587.29 -1 -1 127416 -1 -1 1459 152 72 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 594020 152 97 41796 36054 2 19915 1786 50 50 2500 memory auto 336.8 MiB 851.60 186239 1669760 524773 1020263 124724 531.3 MiB 70.76 0.45 4.53632 -30837.9 -4.53632 2.86597 1.47 0.169181 0.142039 27.2009 23.3094 -1 274157 15 7.5303e+07 5.21471e+07 5.42358e+07 21694.3 12.88 34.478 29.8525 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 1923.57 vpr 541.93 MiB 968.51 369200 -1 -1 6 136.74 -1 -1 162888 -1 -1 1311 3 96 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 554940 3 384 32137 30217 1 16381 1812 52 52 2704 memory auto 294.8 MiB 582.60 149209 1205390 393912 723274 88204 529.2 MiB 56.53 0.52 5.74546 -48383.3 -5.74546 5.74546 1.46 0.154201 0.125988 15.924 13.4294 -1 239540 19 8.30642e+07 5.43664e+07 5.85728e+07 21661.5 13.89 23.8898 20.4955 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 233.33 vpr 361.37 MiB 4.20 89248 -1 -1 6 58.46 -1 -1 79628 -1 -1 921 37 52 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 370040 37 17 22150 19905 1 11758 1027 38 38 1444 memory auto 212.7 MiB 42.47 126590 420526 110476 301834 8216 324.8 MiB 33.31 0.37 5.55795 -41130.3 -5.55795 5.55795 0.73 0.11313 0.0884186 9.58547 7.89044 -1 196496 15 4.31434e+07 3.28587e+07 3.09543e+07 21436.5 11.19 14.9467 12.6304 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 1412.08 vpr 950.03 MiB 26.03 719388 -1 -1 6 119.31 -1 -1 264268 -1 -1 789 61 198 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 972832 61 17 22163 20259 1 13092 1097 82 82 6724 memory auto 203.9 MiB 836.89 182828 719282 226786 457521 34975 950.0 MiB 25.55 0.20 4.48792 -36503.8 -4.48792 4.48792 4.82 0.0811124 0.0649828 10.9111 9.15332 -1 236945 16 2.09174e+08 5.73955e+07 1.47429e+08 21925.8 9.64 15.2365 13.034 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 1069.10 vpr 516.09 MiB 22.19 331772 -1 -1 10 298.39 -1 -1 111816 -1 -1 1450 402 0 -1 success d1480fe release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.4.0-148-generic x86_64 2023-12-13T12:18:30 mustang /homes/koios 528476 402 150 39533 35581 1 18187 2010 44 44 1936 clb auto 325.6 MiB 573.81 131926 1308050 432849 828619 46582 452.6 MiB 50.04 0.43 7.80443 -23537.6 -7.80443 7.80443 0.99 0.116128 0.101568 13.8532 11.602 -1 214227 15 5.86452e+07 4.24916e+07 4.16874e+07 21532.7 10.21 20.577 17.7298 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 1104.28 vpr 2.74 GiB 8.74 244108 -1 -1 5 297.77 -1 -1 157688 -1 -1 1178 355 32 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2878052 355 289 49464 41111 2 23907 2130 136 136 18496 dsp_top auto 281.5 MiB 311.65 435995 1714505 687626 949597 77282 2810.6 MiB 27.83 0.21 7.35242 -116388 -7.35242 2.95155 0.10 0.0834697 0.0680869 11.0641 9.1222 -1 549370 16 5.92627e+08 1.0732e+08 4.08527e+08 22087.3 8.77 15.1062 12.6676 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 946.59 vpr 2.73 GiB 45.54 310812 -1 -1 6 239.52 -1 -1 130016 -1 -1 1360 357 58 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2858436 357 289 42535 35250 2 20674 2341 136 136 18496 dsp_top auto 263.7 MiB 81.22 258365 2503798 912690 1363844 227264 2791.4 MiB 39.95 0.25 9.41317 -93875.2 -9.41317 3.62083 0.11 0.0885806 0.077004 15.1656 12.8314 -1 352592 15 5.92627e+08 1.16231e+08 4.08527e+08 22087.3 7.12 19.1834 16.3728 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3217.39 vpr 2.18 GiB 28.60 695084 -1 -1 5 1560.40 -1 -1 610904 -1 -1 5655 206 120 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2282904 206 13 227613 180877 1 96129 6122 90 90 8100 dsp_top auto 1187.9 MiB 1109.94 702117 7283522 2749583 4223771 310168 2056.0 MiB 220.80 1.60 8.302 -169079 -8.302 8.302 0.06 0.341171 0.278004 46.9752 39.1979 -1 1004001 20 2.56465e+08 2.06801e+08 1.77260e+08 21883.9 28.39 66.1255 55.7608 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 1047.76 vpr 2.10 GiB 28.88 498080 -1 -1 3 140.62 -1 -1 495040 -1 -1 5693 260 0 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2205640 260 122 231647 179602 1 86860 6138 83 83 6889 clb auto 1178.3 MiB 300.36 908164 6522438 2525997 3694260 302181 1905.0 MiB 230.15 1.64 7.71077 -154889 -7.71077 7.71077 0.06 0.377722 0.328092 49.8268 40.9656 -1 1204095 18 2.13666e+08 1.74846e+08 1.51189e+08 21946.4 34.10 69.5248 57.8328 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 1979.21 vpr 5.52 GiB 9.31 622444 -1 -1 8 52.62 -1 -1 296696 -1 -1 2585 1048 1166 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5787156 1048 32 64005 53342 1 37416 4967 196 196 38416 memory auto 399.5 MiB 726.19 576620 7121615 3271863 3293671 556081 5651.5 MiB 80.75 0.52 9.33408 -152227 -9.33408 9.33408 0.41 0.140445 0.113396 24.2142 20.0817 -1 762815 13 1.23531e+09 2.67163e+08 8.45266e+08 22003.0 13.94 29.7133 24.9109 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 843.36 odin 3.93 GiB 126.10 4122888 -1 -1 7 45.84 -1 -1 1641428 -1 -1 1890 1016 21 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1776404 1016 2283 16425 17373 1 9249 5212 106 106 11236 io auto 146.6 MiB 83.53 74673 6193502 3147425 2242332 803745 1734.8 MiB 37.16 0.36 13.5303 -24849.4 -13.5303 13.5303 0.06 0.122239 0.118475 17.0221 16.3404 -1 107886 17 3.5748e+08 5.61376e+07 2.46822e+08 21967.1 6.15 22.279 21.3779 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 613.28 vpr 997.71 MiB 7.57 229260 -1 -1 4 300.66 -1 -1 135308 -1 -1 1377 91 56 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1021656 91 65 51897 44206 2 22450 1673 72 72 5184 dsp_top auto 308.4 MiB 72.85 233523 1103570 376406 686486 40678 997.7 MiB 37.99 0.31 5.75091 -95999.9 -5.75091 3.49463 0.03 0.116483 0.0978631 13.6034 11.5102 -1 328320 15 1.63139e+08 6.74509e+07 1.13044e+08 21806.4 8.55 18.6242 15.9639 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 719.12 vpr 606.31 MiB 19.99 354312 -1 -1 5 168.14 -1 -1 123840 -1 -1 1413 152 72 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 620864 152 97 41796 36054 2 19766 1740 50 50 2500 memory auto 279.1 MiB 388.21 177823 1413975 463973 858189 91813 606.3 MiB 37.09 0.26 5.657 -34829.9 -5.657 3.0521 0.01 0.0907473 0.0792665 13.8393 11.6985 -1 266013 16 7.5303e+07 5.08635e+07 5.42358e+07 21694.3 7.83 18.3398 15.6629 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 567.27 vpr 607.77 MiB 175.53 368912 -1 -1 6 52.01 -1 -1 159520 -1 -1 1317 3 96 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 622360 3 384 32137 30217 1 16402 1818 52 52 2704 memory auto 242.0 MiB 212.45 148363 1144191 372510 692675 79006 607.8 MiB 27.66 0.25 6.51487 -55563.8 -6.51487 6.51487 0.01 0.0761583 0.0664108 8.73148 7.46125 -1 239481 19 8.30642e+07 5.45339e+07 5.85728e+07 21661.5 7.63 13.2929 11.446 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 119.83 vpr 364.86 MiB 1.86 89348 -1 -1 6 32.78 -1 -1 76648 -1 -1 919 37 52 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 373620 37 17 22150 19905 1 11787 1025 38 38 1444 memory auto 172.0 MiB 17.32 120610 393641 104195 282596 6850 364.9 MiB 14.84 0.17 6.51763 -51469.8 -6.51763 6.51763 0.01 0.0574513 0.0504628 5.08309 4.2737 -1 190779 15 4.31434e+07 3.28029e+07 3.09543e+07 21436.5 5.44 7.96348 6.8241 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 604.10 vpr 1.08 GiB 24.27 719340 -1 -1 6 34.78 -1 -1 262612 -1 -1 795 61 198 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1130640 61 17 22163 20259 1 12984 1103 82 82 6724 memory auto 171.1 MiB 342.05 164941 770063 247069 479249 43745 1104.1 MiB 14.47 0.10 5.93366 -38288.7 -5.93366 5.93366 0.04 0.0461013 0.039822 6.95092 5.71641 -1 219396 14 2.09174e+08 5.75629e+07 1.47429e+08 21925.8 4.08 9.24081 7.71683 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 420.46 vpr 507.89 MiB 9.71 331692 -1 -1 10 97.61 -1 -1 108204 -1 -1 1452 402 0 -1 success v8.0.0-11333-g2a1703ace-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-19T16:40:57 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 520080 402 150 39533 35581 1 18244 2012 44 44 1936 clb auto 266.4 MiB 221.27 128967 1271612 435167 794322 42123 501.0 MiB 25.69 0.24 9.7645 -28088.4 -9.7645 9.7645 0.01 0.0759782 0.0621098 8.12017 6.77196 -1 211193 15 5.86452e+07 4.25474e+07 4.16874e+07 21532.7 5.88 11.9476 10.1852 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_auto_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_auto_bb/config/golden_results.txt index 7151543a7ef..866c693e208 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_auto_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_auto_bb/config/golden_results.txt @@ -1,24 +1,24 @@ - 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 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 405.24 vpr 1.60 GiB 274 964 36 59 0 2 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1675644 22 252 53001 29054 7 24705 1335 54 40 4320 DSP auto 1249.4 MiB 34.61 205488 794919 209813 478019 107087 1595.4 MiB 128.40 1.04 7.21269 -35874.2 -6.21269 2.91858 30.60 0.143171 0.129711 17.1873 14.683 305956 12.3999 70368 2.85191 74131 150983 308000476 55699994 0 0 9.32958e+07 21596.2 49 1265168 16900788 -1 7.53884 3.1047 -39761.6 -6.53884 0 0 22.80 -1 -1 1620.4 MiB 82.57 34.1356 29.8447 1595.4 MiB -1 80.18 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 398.35 vpr 1.50 GiB 36 1577 10 10 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1575016 3 33 48977 39238 1 26166 1633 40 30 2400 LAB auto 1283.8 MiB 77.36 243322 914773 260767 614341 39665 1386.9 MiB 167.51 1.76 74.7044 -66694.2 -73.7044 74.7044 18.73 0.139712 0.124603 15.6402 12.7447 333906 12.7630 80752 3.08661 83817 216755 287577239 22362482 0 0 5.14259e+07 21427.5 22 702232 9285402 -1 67.9156 67.9156 -92665.4 -66.9156 0 0 12.52 -1 -1 1485.5 MiB 51.50 24.586 20.4929 1386.9 MiB -1 43.34 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 812.32 vpr 1.96 GiB 211 2260 3 210 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2057248 38 173 62892 59064 3 36091 2684 60 44 5280 M9K auto 1503.2 MiB 165.74 536798 1848539 624787 1187162 36590 1818.5 MiB 318.61 2.95 11.7873 -306153 -10.7873 6.77664 47.57 0.302342 0.230247 32.9899 25.2344 753867 20.8920 175340 4.85922 135051 475487 540598145 37506681 0 0 1.14232e+08 21634.8 53 1553068 20719330 -1 12.3836 7.21134 -340268 -11.3836 0 0 28.34 -1 -1 1909.5 MiB 115.38 66.8996 53.4799 1818.5 MiB -1 97.83 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 807.29 vpr 1.93 GiB 574 2798 16 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2020684 4 570 66175 54803 2 39719 3388 51 38 3876 LAB auto 1546.6 MiB 153.95 548937 2419713 797278 1536070 86365 1704.5 MiB 338.63 3.10 27.4657 -101563 -26.4657 6.35626 29.92 0.278865 0.245881 31.0746 24.4988 785340 19.7749 178689 4.49940 171823 666507 919846216 69706525 0 0 8.35534e+07 21556.6 20 1135740 15117508 -1 28.4534 6.7029 -110728 -27.4534 0 0 22.05 -1 -1 1872.3 MiB 152.38 47.7337 38.7988 1704.5 MiB -1 71.11 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 1579.68 vpr 4.14 GiB 40 3678 172 1 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 4337952 19 21 171111 96274 1 73794 3891 129 96 24768 DSP auto 2035.0 MiB 119.76 724101 3583038 1367291 2199498 16249 4236.3 MiB 167.55 1.81 5.07484 -96672.1 -4.07484 3.39367 410.57 0.250709 0.217102 30.8398 26.721 855437 11.5927 182524 2.47353 149918 182523 449314359 80615221 0 0 5.40280e+08 21813.6 14 7186500 97666830 -1 5.36548 3.55762 -137900 -4.36548 0 0 124.93 -1 -1 4236.3 MiB 68.13 42.802 37.7632 4236.3 MiB -1 641.11 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 514.45 vpr 1.63 GiB 536 1962 7 4 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1712880 227 309 49176 40422 1 28220 2509 47 35 3290 io auto 1349.7 MiB 101.15 269714 1843045 628881 1166910 47254 1523.5 MiB 235.51 2.39 189.671 -110534 -188.671 189.671 19.75 0.174809 0.141753 21.2522 17.297 367886 13.0382 88591 3.13974 84005 264820 293023773 15172548 0 0 7.07120e+07 21493.0 19 956596 12777064 -1 179.724 179.724 -122557 -178.724 0 0 17.98 -1 -1 1606.0 MiB 48.00 30.9721 25.7182 1523.5 MiB -1 61.43 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 473.39 vpr 1.68 GiB 36 1338 8 149 2 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1761652 3 33 52402 39411 1 28023 1533 57 42 4788 M9K auto 1307.1 MiB 83.73 283992 743673 196836 521250 25587 1665.1 MiB 133.31 1.59 15.8776 -289230 -14.8776 15.8776 38.24 0.158474 0.122611 14.5233 11.596 404539 14.4401 94461 3.37180 93961 248823 338771130 33003500 0 0 1.03322e+08 21579.3 39 1396452 18717124 -1 16.9349 16.9349 -312090 -15.9349 0 0 25.62 -1 -1 1668.0 MiB 70.52 29.7384 24.5156 1665.1 MiB -1 92.87 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 160.85 vpr 1.24 GiB 251 954 1 17 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1297064 55 196 20131 19956 1 8402 1223 32 24 1536 LAB auto 1119.9 MiB 45.72 104642 537257 160230 351830 25197 1207.0 MiB 32.99 0.40 7.03068 -72203.9 -6.03068 7.03068 1.34 0.0529391 0.0462047 5.81398 4.50031 153106 18.2291 37636 4.48101 27790 128121 174265722 8457484 0 0 3.29330e+07 21440.7 30 447460 5953838 -1 7.47389 7.47389 -78941.7 -6.47389 0 0 8.05 -1 -1 1228.5 MiB 25.92 10.6251 8.57111 1207.0 MiB -1 26.53 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 353.22 vpr 1.54 GiB 255 2097 1 28 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1613540 84 171 36458 36247 3 20325 2381 45 33 2970 LAB auto 1291.5 MiB 92.70 253881 1432661 479932 883665 69064 1455.2 MiB 104.33 1.01 10.9262 -76682.6 -9.92617 3.98839 25.07 0.145757 0.10954 15.417 11.8893 362082 17.8269 83471 4.10964 55178 187312 185586812 10693698 0 0 6.38316e+07 21492.1 13 866116 11535668 -1 11.9284 4.36498 -85432.1 -10.9284 0 0 15.75 -1 -1 1510.5 MiB 28.78 21.5802 17.1616 1455.2 MiB -1 58.99 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 762.67 vpr 2.16 GiB 69 2109 10 295 16 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2265052 36 33 57796 49182 1 20302 2499 79 59 9322 M144K auto 1431.1 MiB 84.76 217516 2223080 853123 1328458 41499 2212.0 MiB 166.72 1.38 9.46871 -78923.4 -8.46871 9.46871 144.86 0.188337 0.146777 25.3609 20.0488 368276 18.1444 86165 4.24521 66284 206314 297592872 44909236 0 0 2.01416e+08 21606.5 39 2701980 36494954 -1 9.54016 9.54016 -123285 -8.54016 0 0 51.15 -1 -1 2212.0 MiB 93.39 42.5863 34.1924 2212.0 MiB -1 189.81 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 522.66 vpr 1.91 GiB 478 1236 1 300 4 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1997684 202 276 35125 30509 3 21529 2019 73 54 7884 M9K auto 1235.5 MiB 71.22 219620 1379559 442436 857289 79834 1950.9 MiB 94.12 0.76 8.87456 -29608.2 -7.87456 3.15447 66.50 0.130211 0.0994172 16.0356 12.3961 348817 16.2067 79116 3.67588 62495 180837 304162543 37422861 0 0 1.70850e+08 21670.5 18 2296616 31018276 -1 9.14901 3.53939 -40918.9 -8.14901 0 0 42.10 -1 -1 1950.9 MiB 62.72 23.64 19.0087 1950.9 MiB -1 159.01 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 192.78 vpr 1.36 GiB 5 331 31 105 0 2 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1421560 3 2 14862 10304 26 7485 474 49 36 3528 DSP auto 1053.5 MiB 32.44 98871 146387 33195 97269 15923 1388.2 MiB 12.46 0.15 5.51054 -28688.4 -4.51054 3.51882 27.98 0.0553717 0.0465491 4.97674 4.15951 156223 20.9442 34070 4.56764 20833 46235 76938011 10977184 0 0 7.61282e+07 21578.3 15 1038076 13775176 -1 5.57945 3.82985 -39004.7 -4.57945 0 0 17.59 -1 -1 1388.2 MiB 17.00 7.68889 6.60232 1388.2 MiB -1 67.24 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 501.57 vpr 1.74 GiB 693 1763 25 16 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1821256 35 658 51416 37539 1 27797 2497 58 43 4988 io auto 1341.7 MiB 79.77 224609 1882060 595899 1153115 133046 1713.1 MiB 174.57 1.55 35.6957 -55557.5 -34.6957 35.6957 35.81 0.173959 0.156658 22.167 18.2689 314577 11.9675 75485 2.87168 78653 233424 332970695 30574672 0 0 1.07590e+08 21569.7 22 1452444 19489584 -1 36.8541 36.8541 -59817.6 -35.8541 0 0 25.87 -1 -1 1724.4 MiB 57.59 33.3938 28.0834 1713.1 MiB -1 98.07 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 356.90 vpr 1.67 GiB 753 1119 5 32 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1746456 13 740 25173 25306 1 12707 1909 63 47 5922 io auto 1171.6 MiB 54.61 128373 1138261 382950 706443 48868 1705.5 MiB 58.38 0.51 8.7936 -26752.4 -7.7936 7.56645 52.60 0.0827753 0.072752 9.72828 7.85048 176489 13.8968 41888 3.29827 31973 120630 122541304 6927821 0 0 1.28010e+08 21616.1 26 1733724 23219606 -1 9.43055 7.92994 -32290.4 -8.43055 0 0 30.10 -1 -1 1705.5 MiB 21.77 15.692 12.9907 1705.5 MiB -1 115.93 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 461.93 vpr 1.70 GiB 117 2147 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1781088 79 38 66795 54922 1 36234 2264 46 34 3128 LAB auto 1414.9 MiB 86.32 234134 1369384 375797 948110 45477 1534.7 MiB 193.19 1.74 9.78496 -165712 -8.78496 9.78496 22.49 0.168242 0.132555 18.4509 14.6713 309105 8.53151 74653 2.06047 112851 245775 284001537 13376027 0 0 6.72077e+07 21485.8 38 910800 12142484 -1 9.99816 9.99816 -181019 -8.99816 0 0 15.84 -1 -1 1656.6 MiB 50.17 34.1519 27.8567 1534.7 MiB -1 63.49 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 353.36 vpr 1.65 GiB 213 1559 26 4 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1732420 139 74 57121 41054 1 24028 1802 49 36 3528 DSP auto 1349.7 MiB 72.03 151499 1119824 341947 711597 66280 1557.0 MiB 101.60 0.92 5.69597 -17182 -4.69597 5.69597 29.43 0.158604 0.129299 17.3909 14.3303 218388 9.09041 53045 2.20800 52301 95471 166809296 24079289 0 0 7.61282e+07 21578.3 17 1038076 13775176 -1 6.13413 6.13413 -29574.2 -5.13413 0 0 17.99 -1 -1 1632.5 MiB 36.40 25.1397 21.207 1557.0 MiB -1 67.33 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 153.66 vpr 1.22 GiB 54 667 0 40 0 1 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1275696 2 52 16673 16662 2 12034 762 32 24 1536 M9K auto 1095.3 MiB 41.36 150159 251250 60999 172793 17458 1193.3 MiB 26.60 0.35 5.33675 -17321.7 -4.33675 4.69139 1.31 0.0805113 0.0624584 5.82325 4.54384 198081 16.4656 47914 3.98288 44681 134993 180856276 10810891 0 0 3.29330e+07 21440.7 18 447460 5953838 -1 5.59423 5.00062 -21891.5 -4.59423 0 0 8.98 -1 -1 1227.2 MiB 28.87 10.1381 8.28592 1193.3 MiB -1 25.21 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 569.08 vpr 1.78 GiB 445 2165 19 51 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1865788 131 314 57881 45152 1 32949 2680 49 36 3528 DSP auto 1443.3 MiB 94.04 289875 1937912 630016 1216247 91649 1612.9 MiB 263.56 2.60 185.105 -63305.1 -184.105 185.105 29.53 0.250067 0.20699 28.0664 23.0361 401133 12.2018 98740 3.00350 96999 294429 349176296 20580999 0 0 7.61282e+07 21578.3 26 1038076 13775176 -1 178.685 178.685 -74534.9 -177.685 0 0 18.24 -1 -1 1744.2 MiB 60.59 43.715 36.6591 1612.9 MiB -1 69.49 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 85.16 vpr 1.18 GiB 42 750 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1241156 13 29 26295 20086 1 12166 792 29 21 1218 LAB auto 1088.4 MiB 14.76 67068 202257 28659 157846 15752 1163.5 MiB 17.32 0.30 4.73562 -3961.48 -3.73562 2.43816 1.15 0.0365219 0.029369 2.19832 1.82049 72828 5.98718 18119 1.48956 27085 40282 49171341 2507501 0 0 2.60090e+07 21353.8 18 354380 4695504 -1 4.98447 2.5611 -4518.72 -3.98447 0 0 6.47 -1 -1 1176.5 MiB 7.69 4.20063 3.60368 1163.5 MiB -1 18.87 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 646.66 vpr 2.01 GiB 964 975 19 34 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2108676 542 422 37277 26038 1 20638 1992 78 58 9048 io auto 1189.5 MiB 50.38 183733 1455240 538662 841109 75469 2059.3 MiB 204.08 2.07 7.11394 -33300.6 -6.11394 7.11394 78.27 0.118378 0.0954 14.7295 11.9476 263603 12.7746 62388 3.02341 74830 169343 265739869 35035257 0 0 1.96212e+08 21685.7 51 2627776 35616532 -1 7.3721 7.31983 -37450.7 -6.3721 0 0 49.09 -1 -1 2059.3 MiB 57.69 27.4574 23.056 2059.3 MiB -1 183.20 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 608.82 vpr 2.20 GiB 1107 721 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2304368 403 704 15490 16194 1 8416 1828 88 65 11440 io auto 1087.8 MiB 38.56 128057 1197232 445931 718466 32835 2250.4 MiB 36.94 0.34 11.4037 -17377.9 -10.4037 5.42126 208.81 0.049669 0.0437255 6.12486 5.06849 167098 19.8572 33947 4.03411 25427 100320 76704205 4453943 0 0 2.47902e+08 21669.8 15 3325632 44950250 -1 11.8715 5.63934 -21784.8 -10.8715 0 0 58.06 -1 -1 2250.4 MiB 12.64 8.78825 7.42833 2250.4 MiB -1 233.09 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 122.88 vpr 1.18 GiB 35 735 0 6 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1233884 18 17 16969 16357 1 6386 776 28 21 1176 LAB auto 1082.8 MiB 43.86 75549 228872 54280 168966 5626 1157.5 MiB 17.89 0.32 6.60738 -36254.3 -5.60738 6.60738 1.05 0.0469959 0.035429 3.37905 2.65724 103855 16.2731 25316 3.96678 20723 104983 116548250 4930946 0 0 2.50919e+07 21336.6 21 342304 4528390 -1 7.13515 7.13515 -40176.6 -6.13515 0 0 6.71 -1 -1 1177.1 MiB 16.59 6.15189 5.0488 1157.5 MiB -1 18.28 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 25.24 vpr 996.15 MiB 35 73 0 8 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1020056 18 17 2291 2142 1 1503 116 13 10 260 LAB auto 957.8 MiB 5.38 9850 10268 1184 7920 1164 996.1 MiB 0.72 0.02 5.2447 -3308.74 -4.2447 3.92582 0.14 0.00619123 0.00540262 0.299019 0.254712 13030 8.68667 3508 2.33867 3762 8867 12238071 762238 0 0 5.17734e+06 19912.8 36 69776 911850 -1 5.35381 4.2585 -3574.5 -4.35381 0 0 1.58 -1 -1 996.1 MiB 2.04 0.86532 0.762223 996.1 MiB -1 1.09 +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 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 274.33 vpr 1.67 GiB 274 985 36 59 0 2 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1751192 22 252 53001 29054 7 24677 1356 54 40 4320 DSP auto 1201.8 MiB 28.44 198488 834078 239833 486415 107830 1710.1 MiB 88.73 0.78 8.127 -42238.8 -7.127 3.2908 0.05 0.148271 0.135522 17.8333 15.744 303702 12.3231 69783 2.83153 76575 155086 208007906 42739495 0 0 9.32956e+07 21596.2 49 1265168 16900788 -1 7.96436 3.11258 -39350.1 -6.96436 0 0 34.26 -1 -1 1710.1 MiB 51.56 34.213 30.4698 1710.1 MiB -1 43.95 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 296.95 vpr 1.49 GiB 36 1571 10 10 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1563664 3 33 48977 39238 1 26076 1627 40 30 2400 LAB auto 1224.0 MiB 83.28 250134 891172 251362 591782 48028 1464.2 MiB 98.25 1.08 87.5913 -75627.6 -86.5913 87.5913 0.03 0.140059 0.117071 13.9808 11.7641 353172 13.5460 85385 3.27497 91868 262292 232587773 20188528 0 0 5.14259e+07 21427.5 25 702232 9285402 -1 70.3434 70.3434 -102369 -69.3434 0 0 20.65 -1 -1 1473.9 MiB 40.32 22.6641 19.2534 1464.2 MiB -1 25.22 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 540.47 vpr 1.94 GiB 211 2249 3 210 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2037288 38 173 62892 59064 3 35496 2673 60 44 5280 M9K auto 1409.9 MiB 164.18 513289 1894059 668419 1184159 41481 1947.0 MiB 157.35 1.33 12.7653 -343569 -11.7653 7.81152 0.09 0.201176 0.172816 23.896 19.1006 758516 21.3727 174487 4.91651 141948 514258 405055792 35852760 0 0 1.14231e+08 21634.7 42 1553068 20719330 -1 12.8411 7.499 -358312 -11.8411 0 0 42.47 -1 -1 1947.0 MiB 76.52 43.9588 36.0061 1947.0 MiB -1 60.49 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 589.60 vpr 1.91 GiB 574 2798 16 0 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2001236 4 570 66175 54803 2 39284 3388 51 38 3876 LAB auto 1447.8 MiB 155.95 533232 2623193 932253 1598194 92746 1812.4 MiB 215.96 2.10 29.0161 -116653 -28.0161 5.92061 0.05 0.301191 0.249063 27.4926 23.1837 797250 20.2971 181009 4.60829 189541 741081 672554457 66715174 0 0 8.35534e+07 21556.6 23 1135740 15117508 -1 28.3644 5.82916 -115705 -27.3644 0 0 31.70 -1 -1 1852.4 MiB 103.69 41.8108 35.66 1812.4 MiB -1 42.77 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 879.41 vpr 4.60 GiB 40 3678 172 1 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4821304 19 21 171111 96274 1 73403 3891 129 96 24768 DSP auto 1885.6 MiB 93.92 721191 3674811 1447266 2207023 20522 4708.3 MiB 191.83 2.10 5.44913 -108505 -4.44913 3.44439 0.30 0.526647 0.471555 66.588 59.5032 881865 12.0145 184489 2.51347 150520 182670 234363430 44750877 0 0 5.40280e+08 21813.6 13 7186500 97666830 -1 5.79735 3.69904 -144189 -4.79735 0 0 166.10 -1 -1 4708.3 MiB 53.67 86.4089 77.8263 4708.3 MiB -1 309.65 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 387.64 vpr 1.62 GiB 536 1956 7 4 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1698516 227 309 49176 40422 1 28426 2503 47 35 3290 io auto 1277.7 MiB 115.93 279212 1871073 681710 1146897 42466 1619.6 MiB 141.43 1.46 220.281 -130165 -219.281 220.281 0.05 0.156959 0.140643 19.2134 16.2775 383257 13.4845 91998 3.23686 89251 274866 198215434 14104875 0 0 7.07118e+07 21493.0 22 956596 12777064 -1 189.286 189.286 -132315 -188.286 0 0 27.59 -1 -1 1619.6 MiB 35.18 28.1739 24.035 1619.6 MiB -1 33.35 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 334.23 vpr 1.74 GiB 36 1347 8 149 2 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1829712 3 33 52402 39411 1 28031 1542 57 42 4788 M9K auto 1243.3 MiB 81.75 269061 794087 222144 547106 24837 1786.8 MiB 85.70 0.92 16.8025 -321039 -15.8025 16.8025 0.06 0.131773 0.114692 13.684 11.2443 393810 14.0531 91878 3.27866 89612 222483 209363774 24035955 0 0 1.03322e+08 21579.3 34 1396452 18717124 -1 16.2742 16.2742 -308699 -15.2742 0 0 38.74 -1 -1 1786.8 MiB 41.89 24.8436 20.77 1786.8 MiB -1 56.23 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 141.94 vpr 1.22 GiB 251 959 1 17 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1284400 55 196 20131 19956 1 8238 1228 32 24 1536 LAB auto 1087.8 MiB 51.76 106547 546787 169017 351098 26672 1247.7 MiB 22.51 0.30 7.72587 -80541.9 -6.72587 7.72587 0.02 0.0556984 0.0432543 4.95048 3.96917 157962 19.1818 38364 4.65865 27958 115822 102952693 6453524 0 0 3.29329e+07 21440.7 26 447460 5953838 -1 7.76502 7.76502 -76752.8 -6.76502 0 0 13.98 -1 -1 1247.7 MiB 16.55 8.54212 7.00641 1247.7 MiB -1 14.25 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 307.64 vpr 1.53 GiB 255 2119 1 28 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1599632 84 171 36458 36247 3 20421 2403 45 33 2970 LAB auto 1229.6 MiB 130.60 246212 1546851 526543 938055 82253 1541.6 MiB 65.16 0.60 12.2403 -88738.7 -11.2403 4.36175 0.04 0.116376 0.0931767 12.3944 10.0298 357058 17.4968 82610 4.04812 60399 213300 141034379 9656315 0 0 6.38315e+07 21492.1 14 866116 11535668 -1 12.7186 4.16286 -89711.6 -11.7186 0 0 25.09 -1 -1 1541.6 MiB 22.93 17.5255 14.4302 1541.6 MiB -1 33.71 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 470.58 vpr 2.36 GiB 69 2114 10 295 16 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2470152 36 33 57796 49182 1 20337 2504 79 59 9322 M144K auto 1354.6 MiB 85.77 205265 2144000 827011 1276956 40033 2412.3 MiB 94.84 0.93 9.65485 -100924 -8.65485 9.65485 0.11 0.150672 0.123174 20.5518 16.6041 367275 18.0639 85353 4.19796 70083 232879 265855113 44214167 0 0 2.01416e+08 21606.5 52 2701980 36494954 -1 8.76102 8.76102 -132874 -7.76101 0 0 71.18 -1 -1 2412.3 MiB 67.10 37.8786 31.2963 2412.3 MiB -1 115.76 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 391.06 vpr 2.09 GiB 478 1247 1 300 4 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2188132 202 276 35125 30509 3 21749 2030 73 54 7884 M9K auto 1186.4 MiB 73.74 221378 1569486 548232 952211 69043 2136.8 MiB 77.87 0.71 9.53958 -41048.7 -8.53958 3.31916 0.10 0.151638 0.120593 17.0032 13.4065 364165 16.7486 80494 3.70206 62140 176161 232555496 34194472 0 0 1.70850e+08 21670.5 20 2296616 31018276 -1 9.79176 3.40488 -46180.4 -8.79176 0 0 61.95 -1 -1 2136.8 MiB 43.39 23.8091 19.2594 2136.8 MiB -1 102.79 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 163.52 vpr 1.46 GiB 5 331 31 105 0 2 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1527772 3 2 14862 10304 26 7580 474 49 36 3528 DSP auto 1033.2 MiB 51.70 95818 148234 34152 99460 14622 1492.0 MiB 11.14 0.14 5.55984 -27274.6 -4.55984 4.14445 0.04 0.0617795 0.0521385 5.2454 4.39406 156536 20.7223 33524 4.43791 20947 45968 55626498 9336465 0 0 7.61281e+07 21578.3 23 1038076 13775176 -1 5.79369 3.93658 -33540.9 -4.79369 0 0 29.59 -1 -1 1492.0 MiB 12.85 8.75915 7.48131 1492.0 MiB -1 35.88 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 408.57 vpr 1.80 GiB 693 1782 25 16 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1888044 35 658 51416 37539 1 27489 2516 58 43 4988 io auto 1282.7 MiB 76.00 216309 2038011 687485 1209212 141314 1843.8 MiB 135.29 1.06 42.0315 -66114 -41.0315 42.0315 0.07 0.171555 0.156497 23.2991 20.2208 321452 12.3735 76783 2.95558 114923 382082 318119015 38418240 0 0 1.07590e+08 21569.8 39 1452444 19489584 -1 38.5011 38.5011 -63047.1 -37.5011 0 0 40.87 -1 -1 1843.8 MiB 59.20 38.3058 33.3987 1843.8 MiB -1 63.43 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 260.97 vpr 1.81 GiB 753 1117 5 32 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1893608 13 740 25173 25306 1 12677 1907 63 47 5922 io auto 1131.6 MiB 56.05 128747 1160365 402937 707353 50075 1849.2 MiB 40.92 0.40 8.69027 -30900.3 -7.69027 8.6558 0.08 0.0759033 0.0656661 8.39033 6.95766 179924 14.2008 42106 3.32328 33603 128195 94671698 7105328 0 0 1.28010e+08 21616.1 21 1733724 23219606 -1 9.09465 7.96414 -32259.8 -8.09465 0 0 46.01 -1 -1 1849.2 MiB 16.49 13.0355 10.9451 1849.2 MiB -1 74.68 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 370.56 vpr 1.68 GiB 117 2163 0 0 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1764916 79 38 66795 54922 1 36434 2280 46 34 3128 LAB auto 1327.0 MiB 86.21 231456 1457280 421023 990394 45863 1622.4 MiB 147.87 1.36 10.8967 -186378 -9.89669 10.8967 0.04 0.16553 0.132801 17.3694 14.0314 313091 8.59408 76236 2.09261 117263 269049 175937396 12236378 0 0 6.72076e+07 21485.8 48 910800 12142484 -1 10.6699 10.6699 -190052 -9.66991 0 0 26.13 -1 -1 1640.8 MiB 40.62 34.8186 28.4667 1622.4 MiB -1 35.27 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 283.75 vpr 1.64 GiB 213 1563 26 4 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1720704 139 74 57121 41054 1 24182 1806 49 36 3528 DSP auto 1290.0 MiB 67.05 148135 1200043 383208 762441 54394 1660.0 MiB 91.80 0.89 5.61142 -22112.7 -4.61142 5.61142 0.05 0.150933 0.131986 18.3872 15.6468 211300 8.73935 51166 2.11622 54828 100007 96197713 14849416 0 0 7.61281e+07 21578.3 17 1038076 13775176 -1 5.94716 5.94716 -28353.2 -4.94716 0 0 29.40 -1 -1 1660.0 MiB 21.14 25.7453 22.203 1660.0 MiB -1 41.49 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 129.35 vpr 1.21 GiB 54 661 0 40 0 1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1270044 2 52 16673 16662 2 12103 756 32 24 1536 M9K auto 1064.9 MiB 39.89 153381 265790 70637 175126 20027 1240.3 MiB 17.64 0.20 6.19477 -20444.7 -5.19477 5.09574 0.02 0.0561591 0.0446344 4.81577 3.87232 212880 17.5948 50624 4.18415 56557 173671 156728092 12768792 0 0 3.29329e+07 21440.7 17 447460 5953838 -1 6.33066 5.09425 -22748.4 -5.33066 0 0 13.71 -1 -1 1240.3 MiB 23.44 8.0033 6.5916 1240.3 MiB -1 12.36 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 416.55 vpr 1.76 GiB 445 2147 19 52 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1844148 131 314 57881 45152 1 32917 2663 49 36 3528 DSP auto 1362.5 MiB 86.85 289814 1976813 693410 1212996 70407 1709.7 MiB 176.27 1.72 218.423 -74978.2 -217.423 218.423 0.04 0.221041 0.187284 24.7923 21.1712 406108 12.3651 98471 2.99823 104154 327607 243738959 17645361 0 0 7.61281e+07 21578.3 31 1038076 13775176 -1 186.552 186.552 -77902.7 -185.552 0 0 29.48 -1 -1 1723.9 MiB 46.29 39.5945 34.0514 1709.7 MiB -1 40.60 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 72.45 vpr 1.18 GiB 42 752 0 0 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1240412 13 29 26295 20086 1 12536 794 29 21 1218 LAB auto 1061.5 MiB 12.01 63060 221294 37233 166811 17250 1211.3 MiB 13.99 0.21 4.9718 -5064.95 -3.9718 2.73193 0.02 0.0324766 0.0279228 2.25118 1.86401 74221 5.92157 18723 1.49378 27286 38567 29499580 2105965 0 0 2.60089e+07 21353.8 14 354380 4695504 -1 5.052 2.76895 -5085.43 -4.052 0 0 11.26 -1 -1 1211.3 MiB 4.96 3.68252 3.10887 1211.3 MiB -1 8.84 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 440.41 vpr 2.21 GiB 964 976 19 34 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2312848 542 422 37277 26038 1 20609 1993 78 58 9048 io auto 1147.2 MiB 53.94 204070 1443748 530591 842183 70974 2258.6 MiB 132.26 1.73 8.57113 -40060.5 -7.57113 8.57113 0.11 0.114346 0.0970879 14.4519 12.3212 298656 14.4936 68121 3.30588 78221 175730 190639053 28196714 0 0 1.96212e+08 21685.7 51 2627776 35616532 -1 7.6521 7.58988 -39168.5 -6.6521 0 0 69.57 -1 -1 2258.6 MiB 42.38 26.6138 23.1015 2258.6 MiB -1 112.64 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 352.19 vpr 2.44 GiB 1107 719 0 0 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2555856 403 704 15490 16194 1 8578 1826 88 65 11440 io auto 1059.1 MiB 45.27 130173 1273610 483501 754176 35933 2496.0 MiB 30.42 0.29 11.3244 -19683.2 -10.3244 5.27122 0.13 0.0543145 0.0483033 6.97282 5.8855 175112 20.4165 34706 4.04640 26241 103606 64495906 4320076 0 0 2.47902e+08 21669.7 14 3325632 44950250 -1 11.2948 5.14637 -21763.2 -10.2948 0 0 86.50 -1 -1 2496.0 MiB 10.71 9.42628 8.05816 2496.0 MiB -1 152.07 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 119.36 vpr 1.18 GiB 35 731 0 6 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1237480 18 17 16969 16357 1 6316 772 28 21 1176 LAB auto 1056.0 MiB 53.08 73005 241492 57735 179097 4660 1208.5 MiB 12.33 0.20 7.38599 -42310.7 -6.38599 7.38599 0.01 0.0365964 0.0308518 2.95968 2.35615 105687 16.7438 26315 4.16904 22845 117376 78439264 4259070 0 0 2.50919e+07 21336.6 34 342304 4528390 -1 7.17733 7.17733 -42131.3 -6.17733 0 0 10.78 -1 -1 1208.5 MiB 12.71 6.12373 5.01949 1208.5 MiB -1 8.71 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 28.18 vpr 990.12 MiB 35 78 0 8 0 0 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1013880 18 17 2291 2142 1 1502 121 13 10 260 LAB auto 951.4 MiB 5.55 9397 11184 1383 8541 1260 990.1 MiB 0.75 0.02 5.30894 -4071.84 -4.30894 4.56748 0.00 0.00643353 0.00532022 0.291101 0.250794 12844 8.56838 3461 2.30887 3750 8551 7007914 560366 0 0 5.17728e+06 19912.6 23 69776 911850 -1 5.37735 4.27489 -3719.74 -4.37735 0 0 2.93 -1 -1 990.1 MiB 1.23 0.669307 0.584049 990.1 MiB -1 0.74 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_cube_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_cube_bb/config/golden_results.txt index d64a36713e8..c82ecd830c2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_cube_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_titan_other_full_opin_cube_bb/config/golden_results.txt @@ -1,24 +1,24 @@ - 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 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 358.96 vpr 1.60 GiB 274 964 36 59 0 2 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1676224 22 252 53001 29054 7 24705 1335 54 40 4320 DSP auto 1249.4 MiB 33.34 201584 802267 219554 446523 136190 1595.6 MiB 75.11 0.61 6.98806 -36166.2 -5.98806 3.11516 30.75 0.176662 0.149147 19.8248 16.8068 322694 13.0783 74049 3.00109 75584 153076 332564625 56392048 0 0 9.32958e+07 21596.2 55 1265168 16900788 -1 7.55665 3.40692 -40215.8 -6.55665 0 0 21.54 -1 -1 1622.5 MiB 90.10 38.8083 33.6068 1595.6 MiB -1 82.73 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 357.25 vpr 1.50 GiB 36 1577 10 10 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1575688 3 33 48977 39238 1 26166 1633 40 30 2400 LAB auto 1283.8 MiB 80.67 220922 953221 283934 631676 37611 1387.2 MiB 107.96 1.04 74.9193 -64821.9 -73.9193 74.9193 19.87 0.153956 0.137151 17.7355 14.5196 354710 13.5582 85996 3.28706 102612 275394 395380742 27870269 0 0 5.14259e+07 21427.5 22 702232 9285402 -1 68.4791 68.4791 -88811.5 -67.4791 0 0 13.72 -1 -1 1486.9 MiB 64.29 26.7322 22.2888 1387.2 MiB -1 42.96 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 672.27 vpr 1.96 GiB 211 2260 3 210 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2056860 38 173 62892 59064 3 36091 2684 60 44 5280 M9K auto 1503.3 MiB 160.43 494205 1904474 661814 1210562 32098 1817.4 MiB 191.37 1.73 11.5605 -316331 -10.5605 6.69651 45.17 0.300332 0.230644 31.9537 24.9977 778640 21.5785 179584 4.97683 135623 478525 575188534 38023854 0 0 1.14232e+08 21634.8 37 1553068 20719330 -1 12.2298 7.26906 -354722 -11.2298 0 0 28.90 -1 -1 1908.6 MiB 107.32 56.2845 45.4564 1817.4 MiB -1 99.62 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 735.01 vpr 1.93 GiB 574 2798 16 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2022704 4 570 66175 54803 2 39719 3388 51 38 3876 LAB auto 1547.2 MiB 152.96 493047 2470583 828263 1553069 89251 1704.7 MiB 207.12 1.84 26.8703 -100707 -25.8703 6.23868 29.82 0.282918 0.22215 31.0787 24.8192 856270 21.5609 194208 4.89016 212879 856979 1289950377 100232862 0 0 8.35534e+07 21556.6 25 1135740 15117508 -1 28.2044 6.40726 -112405 -27.2044 0 0 20.04 -1 -1 1872.4 MiB 211.93 48.4203 39.5739 1704.7 MiB -1 73.61 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 1859.23 vpr 4.14 GiB 40 3678 172 1 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 4338552 19 21 171111 96274 1 73794 3891 129 96 24768 DSP auto 2035.2 MiB 124.44 694601 3674811 1423495 2234806 16510 4236.9 MiB 182.15 1.39 5.43683 -95501.6 -4.43683 3.51518 709.52 0.278048 0.242691 57.1556 50.2448 848309 11.4961 183432 2.48583 145818 176450 446273136 75896725 0 0 5.40280e+08 21813.6 12 7186500 97666830 -1 5.6527 3.80989 -129331 -4.6527 0 0 124.86 -1 -1 4236.9 MiB 67.55 67.8176 60.0723 4236.9 MiB -1 602.87 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 428.31 vpr 1.63 GiB 536 1962 7 4 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1713780 227 309 49176 40422 1 28220 2509 47 35 3290 io auto 1350.0 MiB 101.52 240550 1791919 613632 1122940 55347 1523.9 MiB 139.29 1.32 189.853 -109201 -188.853 189.853 21.22 0.169742 0.153319 20.8273 17.3179 390249 13.8308 93504 3.31386 83437 263443 325288886 15320378 0 0 7.07120e+07 21493.0 33 956596 12777064 -1 179.912 179.912 -122645 -178.912 0 0 16.92 -1 -1 1606.6 MiB 54.94 34.1906 28.7774 1523.9 MiB -1 64.21 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 427.90 vpr 1.68 GiB 36 1338 8 149 2 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1761756 3 33 52402 39411 1 28023 1533 57 42 4788 M9K auto 1307.0 MiB 82.87 256648 779013 210154 543074 25785 1665.0 MiB 85.48 0.93 16.5106 -293167 -15.5106 16.5106 37.93 0.181392 0.147398 16.4208 13.4278 415255 14.8226 96820 3.45601 89117 230099 344377335 30915598 0 0 1.03322e+08 21579.3 49 1396452 18717124 -1 17.0854 17.0854 -313041 -16.0854 0 0 24.61 -1 -1 1668.4 MiB 75.68 34.6482 28.9101 1665.0 MiB -1 92.85 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 150.64 vpr 1.24 GiB 251 954 1 17 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1297340 55 196 20131 19956 1 8402 1223 32 24 1536 LAB auto 1120.2 MiB 47.70 93361 537257 166142 345980 25135 1207.2 MiB 18.20 0.23 7.02352 -68002.7 -6.02352 7.02352 1.22 0.0616341 0.0474329 5.0263 3.92403 160115 19.0636 39158 4.66222 26855 124763 175673871 7811616 0 0 3.29330e+07 21440.7 37 447460 5953838 -1 7.43957 7.43957 -74620.8 -6.43957 0 0 8.87 -1 -1 1228.5 MiB 26.70 10.7064 8.72463 1207.2 MiB -1 22.98 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 337.42 vpr 1.54 GiB 255 2097 1 28 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1613292 84 171 36458 36247 3 20325 2381 45 33 2970 LAB auto 1291.6 MiB 95.93 225437 1464445 487543 905204 71698 1455.1 MiB 72.52 0.71 10.6445 -74808 -9.64452 4.0454 25.31 0.163351 0.123959 16.1119 12.4539 366260 18.0326 84659 4.16814 58046 207367 227235099 12576581 0 0 6.38316e+07 21492.1 15 866116 11535668 -1 11.6247 4.42547 -83668.5 -10.6247 0 0 17.30 -1 -1 1510.5 MiB 35.84 23.1493 18.4287 1455.1 MiB -1 58.13 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 711.11 vpr 2.16 GiB 69 2109 10 295 16 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2265228 36 33 57796 49182 1 20302 2499 79 59 9322 M144K auto 1431.1 MiB 90.57 201801 2256982 888693 1321722 46567 2212.1 MiB 97.85 0.69 8.88595 -77132 -7.88595 8.88595 150.88 0.149111 0.121071 23.6439 18.9127 381670 18.8043 88246 4.34774 65059 208136 328870746 44591324 0 0 2.01416e+08 21606.5 40 2701980 36494954 -1 8.98358 8.98358 -128753 -7.98358 0 0 50.56 -1 -1 2212.1 MiB 95.35 40.9305 33.091 2212.1 MiB -1 188.66 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 498.29 vpr 1.91 GiB 478 1236 1 300 4 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1997928 202 276 35125 30509 3 21529 2019 73 54 7884 M9K auto 1235.5 MiB 75.07 204451 1405069 470512 856165 78392 1951.1 MiB 61.32 0.52 8.8053 -38686 -7.8053 3.14928 65.19 0.155401 0.121302 16.5889 13.0596 375156 17.4305 83698 3.88877 61300 176534 331688302 36642746 0 0 1.70850e+08 21670.5 17 2296616 31018276 -1 9.32142 3.60577 -40801.9 -8.32142 0 0 42.52 -1 -1 1951.1 MiB 67.28 23.9792 19.4589 1951.1 MiB -1 155.33 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 196.88 vpr 1.36 GiB 5 331 31 105 0 2 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1421188 3 2 14862 10304 26 7485 474 49 36 3528 DSP auto 1053.5 MiB 35.88 91591 151928 35572 99432 16924 1387.9 MiB 10.60 0.12 5.5539 -26426.1 -4.5539 3.50424 27.64 0.0672641 0.0563458 6.02561 5.03862 164076 21.9971 35488 4.75774 19971 44899 82934218 11395929 0 0 7.61282e+07 21578.3 15 1038076 13775176 -1 5.76084 3.73397 -36526.2 -4.76084 0 0 20.03 -1 -1 1387.9 MiB 19.86 9.06912 7.7402 1387.9 MiB -1 60.28 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 456.62 vpr 1.74 GiB 693 1763 25 16 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1821640 35 658 51416 37539 1 27797 2497 58 43 4988 io auto 1341.9 MiB 82.05 196333 1831261 584121 1108616 138524 1713.3 MiB 112.15 0.98 36.0286 -55687 -35.0286 36.0286 35.44 0.186539 0.168971 23.8538 19.9585 327831 12.4717 78848 2.99962 76028 226840 368805629 32240779 0 0 1.07590e+08 21569.7 20 1452444 19489584 -1 37.1041 37.1041 -60317.5 -36.1041 0 0 27.63 -1 -1 1725.8 MiB 63.69 34.425 29.2614 1713.3 MiB -1 101.07 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 352.04 vpr 1.67 GiB 753 1119 5 32 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1746416 13 740 25173 25306 1 12707 1909 63 47 5922 io auto 1171.6 MiB 56.37 110755 1150098 387030 714459 48609 1705.5 MiB 39.81 0.36 8.17393 -25863 -7.17393 7.38137 55.15 0.0931374 0.081933 10.1623 8.2677 177301 13.9607 42412 3.33953 30625 114511 137992955 6402961 0 0 1.28010e+08 21616.1 15 1733724 23219606 -1 9.04249 7.93176 -30651.4 -8.04249 0 0 33.61 -1 -1 1705.5 MiB 21.17 14.8649 12.3832 1705.5 MiB -1 118.08 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 414.77 vpr 1.70 GiB 117 2147 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1781416 79 38 66795 54922 1 36234 2264 46 34 3128 LAB auto 1415.0 MiB 93.80 206226 1384244 378251 961721 44272 1534.7 MiB 129.13 1.27 9.04449 -157241 -8.04449 9.04449 24.54 0.213706 0.170365 20.733 16.6578 310627 8.57351 75355 2.07985 106461 223873 264603198 11930594 0 0 6.72077e+07 21485.8 41 910800 12142484 -1 9.66153 9.66153 -183091 -8.66153 0 0 17.67 -1 -1 1654.8 MiB 49.98 39.3579 32.5047 1534.7 MiB -1 63.90 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 327.19 vpr 1.65 GiB 213 1559 26 4 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1732528 139 74 57121 41054 1 24028 1802 49 36 3528 DSP auto 1349.7 MiB 71.57 137679 1152707 355192 734251 63264 1557.0 MiB 70.15 0.62 5.47598 -17038.4 -4.47598 5.47598 27.66 0.179422 0.149947 19.8449 16.5208 217364 9.04779 53069 2.20900 53018 97371 183704225 25027958 0 0 7.61282e+07 21578.3 18 1038076 13775176 -1 5.98324 5.98324 -25733.3 -4.98324 0 0 20.00 -1 -1 1632.9 MiB 41.15 28.2087 23.7689 1557.0 MiB -1 64.90 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 151.39 vpr 1.22 GiB 54 667 0 40 0 1 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1275916 2 52 16673 16662 2 12034 762 32 24 1536 M9K auto 1095.1 MiB 41.32 142278 279082 76445 184550 18087 1193.1 MiB 17.75 0.20 5.30884 -17855.7 -4.30884 4.33593 1.33 0.0735501 0.0579606 6.62481 5.24303 211627 17.5916 50812 4.22377 49973 151842 222286922 12729911 0 0 3.29330e+07 21440.7 19 447460 5953838 -1 5.77446 4.80853 -22669.4 -4.77446 0 0 8.79 -1 -1 1227.7 MiB 33.76 10.6107 8.66627 1193.1 MiB -1 23.65 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 475.33 vpr 1.78 GiB 445 2165 19 51 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1867260 131 314 57881 45152 1 32949 2680 49 36 3528 DSP auto 1444.3 MiB 97.72 253057 1937912 644186 1202912 90814 1613.7 MiB 155.35 1.44 185.795 -63547 -184.795 185.795 28.84 0.236058 0.197456 27.6222 22.9006 421043 12.8074 103674 3.15358 98142 298744 388207146 21501392 0 0 7.61282e+07 21578.3 26 1038076 13775176 -1 178.787 178.787 -75128.6 -177.787 0 0 19.46 -1 -1 1745.9 MiB 64.55 42.6189 35.9259 1613.7 MiB -1 70.04 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 77.85 vpr 1.18 GiB 42 750 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1241744 13 29 26295 20086 1 12166 792 29 21 1218 LAB auto 1088.8 MiB 14.76 64483 220572 36183 168578 15811 1164.0 MiB 9.54 0.17 4.85863 -4133.95 -3.85863 2.51343 1.11 0.0419095 0.0344299 2.53121 2.13165 74496 6.12430 18559 1.52573 27068 39315 50836541 2541349 0 0 2.60090e+07 21353.8 17 354380 4695504 -1 5.04217 2.61307 -4746.42 -4.04217 0 0 7.07 -1 -1 1177.1 MiB 7.60 4.29573 3.69988 1164.0 MiB -1 16.06 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 561.37 vpr 2.01 GiB 964 975 19 34 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2109824 542 422 37277 26038 1 20638 1992 78 58 9048 io auto 1190.6 MiB 53.10 184881 1430184 516664 843290 70230 2060.4 MiB 102.51 1.01 7.19267 -33412.7 -6.19267 7.15445 73.66 0.113292 0.094201 15.1094 12.4418 292105 14.1558 67000 3.24691 75771 170386 298913140 37822489 0 0 1.96212e+08 21685.7 54 2627776 35616532 -1 7.64453 7.12121 -37752.6 -6.64453 0 0 50.63 -1 -1 2060.4 MiB 66.13 28.9915 24.5158 2060.4 MiB -1 186.54 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 616.31 vpr 2.20 GiB 1107 721 0 0 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2304440 403 704 15490 16194 1 8416 1828 88 65 11440 io auto 1087.8 MiB 40.32 116739 1152544 429004 690529 33011 2250.4 MiB 25.12 0.24 10.8953 -17066.8 -9.89533 4.99847 208.27 0.06255 0.0559394 6.90135 5.60908 185989 22.1021 37225 4.42365 24304 95700 106497122 4263109 0 0 2.47902e+08 21669.8 15 3325632 44950250 -1 11.1747 5.32379 -21323.6 -10.1747 0 0 62.97 -1 -1 2250.4 MiB 16.20 9.88571 8.20135 2250.4 MiB -1 237.90 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 122.52 vpr 1.18 GiB 35 735 0 6 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1234352 18 17 16969 16357 1 6386 776 28 21 1176 LAB auto 1082.7 MiB 46.20 66667 221744 49126 165602 7016 1157.3 MiB 10.25 0.18 6.36808 -36551.4 -5.36808 6.36808 1.06 0.0514993 0.0402405 3.42711 2.72101 108423 16.9889 26477 4.14870 21514 108158 119885227 5301421 0 0 2.50919e+07 21336.6 31 342304 4528390 -1 6.74319 6.74319 -40382.4 -5.74319 0 0 6.69 -1 -1 1176.3 MiB 17.92 7.01627 5.78311 1157.3 MiB -1 17.11 - 3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 28.99 vpr 996.17 MiB 35 73 0 8 0 0 success 41a8f97-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-01-23T00:23:05 gh-actions-runner-vtr-auto-spawned73 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1020076 18 17 2291 2142 1 1503 116 13 10 260 LAB auto 957.8 MiB 5.44 8888 8858 986 6921 951 996.2 MiB 0.48 0.01 5.2447 -3352.66 -4.2447 4.07581 0.14 0.0062397 0.0053943 0.24816 0.21251 13320 8.88000 3592 2.39467 3747 9192 13035291 758036 0 0 5.17734e+06 19912.8 22 69776 911850 -1 5.24491 4.52627 -3762.02 -4.24491 0 0 1.56 -1 -1 996.2 MiB 1.91 0.640505 0.565498 996.2 MiB -1 1.07 +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 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 262.54 vpr 1.67 GiB 274 985 36 59 0 2 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1751260 22 252 53001 29054 7 24677 1356 54 40 4320 DSP auto 1201.6 MiB 29.07 193351 856584 241304 515166 100114 1710.2 MiB 57.40 0.47 7.85588 -42871.3 -6.85589 3.25066 0.05 0.164012 0.144346 20.1769 17.6827 321085 13.0284 73107 2.96640 77217 159907 244975232 47657761 0 0 9.32956e+07 21596.2 51 1265168 16900788 -1 7.71858 3.05436 -39723.1 -6.71858 0 0 35.16 -1 -1 1710.2 MiB 58.56 36.785 32.606 1710.2 MiB -1 53.64 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 266.43 vpr 1.49 GiB 36 1571 10 10 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1563992 3 33 48977 39238 1 26076 1627 40 30 2400 LAB auto 1224.2 MiB 84.53 219644 900737 262240 597791 40706 1464.3 MiB 59.40 0.56 87.2663 -78342.6 -86.2663 87.2663 0.03 0.136963 0.113622 14.4066 12.1423 358074 13.7340 86107 3.30266 114584 318694 268050281 21927928 0 0 5.14259e+07 21427.5 25 702232 9285402 -1 70.0405 70.0405 -100596 -69.0405 0 0 20.03 -1 -1 1474.7 MiB 45.67 22.9811 19.484 1464.3 MiB -1 26.55 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 502.31 vpr 1.94 GiB 211 2249 3 210 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2037436 38 173 62892 59064 3 35496 2673 60 44 5280 M9K auto 1410.0 MiB 165.24 469808 1875516 643371 1181456 50689 1947.1 MiB 111.84 1.00 12.7266 -347397 -11.7266 7.76695 0.06 0.21795 0.188479 25.7283 20.759 761318 21.4516 174875 4.92744 146514 536546 425254345 33830656 0 0 1.14231e+08 21634.7 42 1553068 20719330 -1 12.751 7.43563 -359178 -11.751 0 0 42.27 -1 -1 1947.1 MiB 79.84 46.0754 37.7929 1947.1 MiB -1 61.86 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 510.28 vpr 1.91 GiB 574 2798 16 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2002052 4 570 66175 54803 2 39284 3388 51 38 3876 LAB auto 1448.3 MiB 155.18 480842 2546888 886276 1563516 97096 1812.7 MiB 134.18 1.24 29.1982 -116620 -28.1982 5.72994 0.05 0.279475 0.249568 28.0608 23.8653 835653 21.2748 189102 4.81433 189134 743856 723324517 67486197 0 0 8.35534e+07 21556.6 23 1135740 15117508 -1 29.3026 5.84212 -116980 -28.3026 0 0 30.38 -1 -1 1852.8 MiB 112.28 42.3369 36.2977 1812.7 MiB -1 38.66 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 867.83 vpr 4.60 GiB 40 3678 172 1 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4821640 19 21 171111 96274 1 73403 3891 129 96 24768 DSP auto 1885.8 MiB 97.55 673610 3766584 1489345 2249664 27575 4708.6 MiB 146.85 1.66 6.29597 -125028 -5.29597 3.97866 0.29 0.540165 0.485534 68.9859 61.9344 848230 11.5563 178165 2.42732 147804 178663 227513169 41591039 0 0 5.40280e+08 21813.6 12 7186500 97666830 -1 6.65084 4.08305 -163510 -5.65084 0 0 181.11 -1 -1 4708.6 MiB 50.62 87.2479 78.818 4708.6 MiB -1 325.55 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 343.21 vpr 1.62 GiB 536 1956 7 4 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1698584 227 309 49176 40422 1 28426 2503 47 35 3290 io auto 1277.4 MiB 116.96 233056 1803125 631727 1120429 50969 1619.5 MiB 88.74 0.85 220.939 -126998 -219.939 220.939 0.04 0.166742 0.142156 19.3794 16.4143 379748 13.3611 92233 3.24513 99103 311914 224583690 13083987 0 0 7.07118e+07 21493.0 21 956596 12777064 -1 187.057 187.057 -123104 -186.057 0 0 27.10 -1 -1 1619.5 MiB 37.22 28.2116 24.0272 1619.5 MiB -1 38.39 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 315.38 vpr 1.74 GiB 36 1347 8 149 2 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1829548 3 33 52402 39411 1 28031 1542 57 42 4788 M9K auto 1243.2 MiB 86.72 244124 776277 216128 536517 23632 1786.7 MiB 52.34 0.52 17.0483 -326259 -16.0483 17.0483 0.07 0.138809 0.121469 14.0009 11.569 405781 14.4803 94699 3.37933 90589 226981 215520672 23742240 0 0 1.03322e+08 21579.3 36 1396452 18717124 -1 16.875 16.875 -325058 -15.875 0 0 36.75 -1 -1 1786.7 MiB 43.28 25.6581 21.481 1786.7 MiB -1 63.41 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 139.86 vpr 1.23 GiB 251 959 1 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1284536 55 196 20131 19956 1 8238 1228 32 24 1536 LAB auto 1088.0 MiB 53.11 91486 559933 175888 358521 25524 1248.2 MiB 15.79 0.19 7.71763 -76349.3 -6.71763 7.71763 0.02 0.0584194 0.0454426 4.977 3.97164 157473 19.1224 38477 4.67237 27101 111117 94606130 5424659 0 0 3.29329e+07 21440.7 19 447460 5953838 -1 7.80396 7.80396 -71355.4 -6.80396 0 0 13.93 -1 -1 1248.2 MiB 15.44 8.35859 6.82859 1248.2 MiB -1 17.66 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 300.15 vpr 1.53 GiB 255 2119 1 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1600832 84 171 36458 36247 3 20421 2403 45 33 2970 LAB auto 1230.0 MiB 133.46 215779 1514675 513849 921288 79538 1542.2 MiB 47.82 0.40 11.6637 -82784.4 -10.6637 4.35909 0.04 0.125998 0.101813 12.8855 10.4713 378250 18.5353 86311 4.22948 61190 222462 160896872 10489022 0 0 6.38315e+07 21492.1 15 866116 11535668 -1 11.6634 4.19224 -80813.6 -10.6634 0 0 24.48 -1 -1 1542.2 MiB 25.88 18.604 15.307 1542.2 MiB -1 38.36 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 472.60 vpr 2.36 GiB 69 2114 10 295 16 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2470104 36 33 57796 49182 1 20337 2504 79 59 9322 M144K auto 1354.5 MiB 91.79 191623 2160996 836970 1284726 39300 2412.2 MiB 67.21 0.56 10.2495 -98516.5 -9.24953 10.2495 0.13 0.16167 0.129858 22.2193 18.021 377038 18.5441 87648 4.31084 62293 205655 243946544 38601764 0 0 2.01416e+08 21606.5 38 2701980 36494954 -1 9.70689 9.70689 -141067 -8.70689 0 0 76.07 -1 -1 2412.2 MiB 63.06 36.3348 29.836 2412.2 MiB -1 137.99 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 375.96 vpr 2.09 GiB 478 1247 1 300 4 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2188816 202 276 35125 30509 3 21749 2030 73 54 7884 M9K auto 1186.9 MiB 74.59 200331 1492398 532004 896669 63725 2137.5 MiB 51.05 0.44 9.45976 -41482.6 -8.45976 3.2749 0.09 0.135831 0.107322 16.6052 13.1563 375108 17.2519 83232 3.82799 60066 170786 232358226 31331523 0 0 1.70850e+08 21670.5 20 2296616 31018276 -1 9.62531 3.4756 -46305.7 -8.62531 0 0 58.71 -1 -1 2137.5 MiB 44.12 23.4723 19.0421 2137.5 MiB -1 117.39 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 165.46 vpr 1.46 GiB 5 331 31 105 0 2 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1528192 3 2 14862 10304 26 7580 474 49 36 3528 DSP auto 1034.0 MiB 51.87 92247 138999 31235 92996 14768 1492.4 MiB 8.22 0.10 5.55984 -29264.2 -4.55984 4.06397 0.05 0.0616422 0.0541806 5.24622 4.45456 167173 22.1304 35397 4.68586 21123 46432 61105341 9679027 0 0 7.61281e+07 21578.3 17 1038076 13775176 -1 5.6924 4.02951 -34017.5 -4.6924 0 0 28.53 -1 -1 1492.4 MiB 13.65 8.213 7.0777 1492.4 MiB -1 40.94 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 370.32 vpr 1.80 GiB 693 1782 25 16 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1888728 35 658 51416 37539 1 27489 2516 58 43 4988 io auto 1284.0 MiB 80.62 202458 2020906 668206 1210645 142055 1844.5 MiB 95.39 0.76 42.8072 -66021.2 -41.8072 42.8072 0.06 0.184101 0.168476 24.308 21.081 341782 13.1561 81070 3.12060 79542 238219 239578869 26140480 0 0 1.07590e+08 21569.8 25 1452444 19489584 -1 38.1488 38.1488 -62990.2 -37.1488 0 0 39.93 -1 -1 1844.5 MiB 44.87 35.4251 30.8897 1844.5 MiB -1 77.01 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 276.67 vpr 1.81 GiB 753 1117 5 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1893960 13 740 25173 25306 1 12677 1907 63 47 5922 io auto 1132.7 MiB 61.57 116849 1243112 426353 762445 54314 1849.6 MiB 37.85 0.37 8.96103 -32048.3 -7.96103 8.34217 0.07 0.10083 0.0872721 10.5665 8.76523 184402 14.5542 43397 3.42518 32969 126042 98688201 5803557 0 0 1.28010e+08 21616.1 27 1733724 23219606 -1 9.60149 8.09958 -33981.4 -8.60149 0 0 41.46 -1 -1 1849.6 MiB 19.05 16.7544 14.0352 1849.6 MiB -1 87.87 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 345.00 vpr 1.68 GiB 117 2163 0 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1764996 79 38 66795 54922 1 36434 2280 46 34 3128 LAB auto 1327.7 MiB 94.53 193506 1442280 408990 987732 45558 1622.8 MiB 107.09 0.96 10.4896 -189466 -9.48956 10.4896 0.04 0.181193 0.143388 18.7619 15.1531 299015 8.20771 73882 2.02800 103402 216097 142829772 7784557 0 0 6.72076e+07 21485.8 60 910800 12142484 -1 10.3837 10.3837 -194478 -9.38372 0 0 26.33 -1 -1 1638.8 MiB 42.30 42.291 34.5762 1622.8 MiB -1 40.72 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 266.83 vpr 1.64 GiB 213 1563 26 4 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1720856 139 74 57121 41054 1 24182 1806 49 36 3528 DSP auto 1290.8 MiB 69.88 133172 1156071 367259 725408 63404 1660.2 MiB 60.43 0.52 5.48428 -22113.5 -4.48428 5.48428 0.07 0.162898 0.142928 18.879 16.1269 215960 8.93209 52660 2.17801 54038 98442 96215821 13796889 0 0 7.61281e+07 21578.3 19 1038076 13775176 -1 5.51133 5.51133 -29956.1 -4.51133 0 0 27.36 -1 -1 1660.2 MiB 22.78 27.9037 23.9882 1660.2 MiB -1 55.48 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 140.48 vpr 1.21 GiB 54 661 0 40 0 1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1270440 2 52 16673 16662 2 12103 756 32 24 1536 M9K auto 1065.9 MiB 43.92 141628 265790 71308 176456 18026 1240.7 MiB 18.22 0.17 5.85549 -20415.2 -4.85549 5.01595 0.02 0.0692838 0.0555555 6.68946 5.25155 217051 17.9396 51922 4.29143 56196 175509 165452147 11846487 0 0 3.29329e+07 21440.7 21 447460 5953838 -1 6.15846 5.09265 -23156.7 -5.15846 0 0 11.54 -1 -1 1240.7 MiB 26.16 10.769 8.67679 1240.7 MiB -1 18.71 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 392.75 vpr 1.76 GiB 445 2147 19 52 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1844900 131 314 57881 45152 1 32917 2663 49 36 3528 DSP auto 1363.2 MiB 95.61 255034 1921463 673114 1175616 72733 1710.1 MiB 134.37 1.22 221.573 -74398.9 -220.573 221.573 0.04 0.233591 0.200131 27.0035 23.0742 426446 12.9844 103551 3.15291 100955 302123 227188716 15114891 0 0 7.61281e+07 21578.3 29 1038076 13775176 -1 189.583 189.583 -75056.7 -188.583 0 0 29.67 -1 -1 1722.5 MiB 44.73 42.2754 36.2423 1710.1 MiB -1 50.80 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 72.91 vpr 1.18 GiB 42 752 0 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1240564 13 29 26295 20086 1 12536 794 29 21 1218 LAB auto 1062.3 MiB 12.25 60938 224969 39079 169148 16742 1211.5 MiB 8.86 0.14 4.98143 -5213.57 -3.98143 2.67558 0.02 0.0416776 0.0341297 2.6038 2.15581 76160 6.07627 19086 1.52274 27055 37715 33235953 2126435 0 0 2.60089e+07 21353.8 15 354380 4695504 -1 5.12425 2.73808 -5240.77 -4.12425 0 0 10.15 -1 -1 1211.5 MiB 5.50 4.50745 3.80146 1211.5 MiB -1 13.00 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 419.11 vpr 2.21 GiB 964 976 19 34 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2314204 542 422 37277 26038 1 20609 1993 78 58 9048 io auto 1148.8 MiB 54.92 195960 1431211 527491 836231 67489 2260.0 MiB 75.94 0.81 8.64801 -40234.9 -7.64801 8.64801 0.16 0.123859 0.105031 15.0886 12.8374 307874 14.9410 69309 3.36353 75615 168495 192889124 28407970 0 0 1.96212e+08 21685.7 49 2627776 35616532 -1 7.7876 7.7876 -39277.6 -6.7876 0 0 70.32 -1 -1 2260.0 MiB 47.47 28.8645 24.8552 2260.0 MiB -1 140.28 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 372.90 vpr 2.44 GiB 1107 719 0 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2556376 403 704 15490 16194 1 8578 1826 88 65 11440 io auto 1059.8 MiB 48.57 116298 1217830 465874 718697 33259 2496.5 MiB 20.86 0.20 11.5693 -19709.2 -10.5693 5.54149 0.13 0.0565761 0.0505453 6.76822 5.74259 179325 20.9077 35835 4.17803 25660 100498 66404931 3332967 0 0 2.47902e+08 21669.7 16 3325632 44950250 -1 11.8553 5.68629 -23200.6 -10.8553 0 0 77.52 -1 -1 2496.5 MiB 11.29 9.56088 8.18797 2496.5 MiB -1 184.05 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 128.05 vpr 1.18 GiB 35 731 0 6 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1237600 18 17 16969 16357 1 6316 772 28 21 1176 LAB auto 1057.0 MiB 55.40 63754 237952 58783 174226 4943 1208.6 MiB 10.72 0.17 7.30797 -43944.1 -6.30797 7.30797 0.02 0.0456687 0.0331407 3.49879 2.66407 106285 16.8386 26325 4.17063 23086 119829 86137327 4609946 0 0 2.50919e+07 21336.6 33 342304 4528390 -1 7.17133 7.17133 -42643.8 -6.17133 0 0 11.42 -1 -1 1208.6 MiB 14.17 7.0988 5.66309 1208.6 MiB -1 14.18 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 28.52 vpr 991.08 MiB 35 78 0 8 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1014864 18 17 2291 2142 1 1502 121 13 10 260 LAB auto 952.7 MiB 5.67 8316 9091 920 7166 1005 991.1 MiB 0.60 0.02 5.30894 -4125.69 -4.30894 4.62264 0.00 0.0081588 0.00656763 0.325292 0.274447 13019 8.68512 3524 2.35090 3667 8486 7074412 569840 0 0 5.17728e+06 19912.6 32 69776 911850 -1 5.3319 4.58316 -3880.08 -4.3319 0 0 2.75 -1 -1 991.1 MiB 1.52 0.921023 0.802184 991.1 MiB -1 1.13 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/titan_other_run_flat/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/titan_other_run_flat/config/golden_results.txt index adf7f19d5f3..a425bc681fa 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/titan_other_run_flat/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/titan_other_run_flat/config/golden_results.txt @@ -1,17 +1,17 @@ -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 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 total_internal_heap_pushes total_internal_heap_pops total_external_heap_pushes total_external_heap_pops total_external_SOURCE_pushes total_external_SOURCE_pops total_internal_SOURCE_pushes total_internal_SOURCE_pops total_external_SINK_pushes total_external_SINK_pops total_internal_SINK_pushes total_internal_SINK_pops total_external_IPIN_pushes total_external_IPIN_pops total_internal_IPIN_pushes total_internal_IPIN_pops total_external_OPIN_pushes total_external_OPIN_pops total_internal_OPIN_pushes total_internal_OPIN_pops total_external_CHANX_pushes total_external_CHANX_pops total_internal_CHANX_pushes total_internal_CHANX_pops total_external_CHANY_pushes total_external_CHANY_pops total_internal_CHANY_pushes total_internal_CHANY_pops rt_node_SOURCE_pushes rt_node_SINK_pushes rt_node_IPIN_pushes rt_node_OPIN_pushes rt_node_CHANX_pushes rt_node_CHANY_pushes rt_node_SOURCE_high_fanout_pushes rt_node_SINK_high_fanout_pushes rt_node_IPIN_high_fanout_pushes rt_node_OPIN_high_fanout_pushes rt_node_CHANX_high_fanout_pushes rt_node_CHANY_high_fanout_pushes rt_node_SOURCE_entire_tree_pushes rt_node_SINK_entire_tree_pushes rt_node_IPIN_entire_tree_pushes rt_node_OPIN_entire_tree_pushes rt_node_CHANX_entire_tree_pushes rt_node_CHANY_entire_tree_pushes adding_all_rt adding_high_fanout_rt total_number_of_adding_all_rt_from_calling_high_fanout_rt 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 carpat_stratixiv_arch_timing.blif common 613.11 vpr 5.70 GiB 274 964 36 59 0 2 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5972436 22 252 53001 29054 7 24705 1335 89 66 5874 DSP auto 1516.1 MiB 37.02 270604 1963.0 MiB 79.69 0.59 7.51948 -39463.8 -6.51948 3.08082 116.03 0.136151 0.114617 18.5295 15.5742 367538 6.93861 80111 1.51238 126065 299395 326873530 52514623 23734707 2835516 303138823 49679107 0 0 275957 219798 187739 187739 299395 299395 17466088 189853 20997324 843213 16959508 11238575 2162031 1473110 131265712 20781045 0 0 137259776 17281895 0 0 275957 0 1945661 693680 648224 732871 14588 0 1092004 78552 215953 284056 261369 0 853657 615128 432271 448815 2916996 38300 5865 0 0 1.48105e+08 25213.7 43 3157876 31702500 48537 7.50537 3.06292 -43885.4 -6.50537 0 0 31.94 37.58 19.20 5832.2 MiB 209.41 31.3265 26.8043 1963.0 MiB 70.54 111.27 -stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 432.37 vpr 5.31 GiB 36 1577 10 10 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5563168 3 33 48977 39238 1 26166 1633 54 40 2160 LAB auto 1550.2 MiB 78.90 293178 1720.9 MiB 92.79 0.84 76.4898 -85096.3 -75.4898 76.4898 13.08 0.129138 0.113191 14.8691 12.0109 380614 7.77191 89471 1.82695 137748 443751 231034492 28523668 42721891 4327212 188312601 24196456 0 0 380735 263139 307860 307860 443751 443751 4258385 307928 38462229 1312960 19686438 14448400 3435176 2307362 80876073 5336681 0 0 83183845 3795587 0 0 380735 0 1520191 1187586 1355737 1806793 17577 0 491308 92987 353841 436817 363158 0 1028883 1094599 1001896 1369976 5185088 81521 25159 0 0 5.45450e+07 25252.3 23 2487572 26413249 65185 71.3786 71.3786 -148083 -70.3786 0 0 11.36 25.95 15.84 5432.8 MiB 159.51 21.1531 17.147 1584.0 MiB 72.72 48.84 -stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 1137.42 vpr 6.00 GiB 574 2798 16 0 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6295900 4 570 66175 54803 2 39719 3388 91 67 6097 io auto 1814.5 MiB 152.81 659105 2150.9 MiB 203.22 1.65 27.9549 -108129 -26.9549 6.60481 110.04 0.265018 0.208157 30.0057 23.3304 928965 14.0391 205561 3.10656 318061 1713262 1309020715 198867477 165385685 19411668 1143635030 179455809 0 0 1606409 1132054 1200190 1200190 1713262 1713262 11109841 1200553 145492948 5120573 82954893 67299733 16573066 11445779 515388678 60869406 0 0 532981428 48885927 0 0 1606409 0 4251904 6365499 5501435 6214972 16513 0 475037 102831 576267 702481 1589896 0 3776867 6262668 4925168 5512491 23192501 124029 31693 0 0 1.53690e+08 25207.4 26 4532884 54099067 129419 28.8746 7.07712 -120356 -27.8746 0 0 30.14 55.11 28.11 6148.3 MiB 482.40 43.7738 34.7197 2150.9 MiB 69.51 120.45 -stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 491.86 vpr 5.92 GiB 36 1338 8 149 2 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6207704 3 33 52402 39411 1 28023 1533 73 54 3942 M9K auto 1573.3 MiB 82.70 338946 1840.0 MiB 88.23 0.74 16.6959 -307104 -15.6959 16.6959 32.85 0.14467 0.111336 16.2972 12.7743 421173 8.03857 96171 1.83553 139206 529190 212860000 25231305 44167996 4469518 168692004 20761787 0 0 414427 274001 303970 303970 529190 529190 2493253 304111 39578720 1442934 18325065 12798038 3645659 2223393 73520139 4289961 0 0 74049577 3065707 0 0 414427 0 3857786 1300556 1404548 1708349 52233 0 2451477 239907 479373 636788 362194 0 1406309 1060649 925175 1071561 5584934 168432 23179 0 0 9.96430e+07 25277.3 34 3037750 30141692 81349 17.8179 17.8179 -331477 -16.8179 0 0 19.93 38.49 23.74 6062.2 MiB 166.89 25.1046 19.9907 1785.5 MiB 69.35 71.72 -stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 241.79 vpr 4.85 GiB 251 954 1 17 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5081652 55 196 20131 19956 1 8402 1223 44 33 1452 io auto 1387.5 MiB 45.75 122203 1548.3 MiB 20.21 0.22 7.45116 -75262 -6.45116 7.45116 8.45 0.0585202 0.0434269 5.63729 4.32211 169635 8.42781 39586 1.96671 53358 234674 76267559 7992265 22622735 1817746 53644824 6174519 0 0 154198 105434 162906 162906 234674 234674 311722 162906 20886917 696920 5842523 4244502 1346946 780718 23499477 1074270 0 0 23828196 529935 0 0 154198 0 1033870 486810 703478 840462 10329 0 757241 50167 361130 434639 143869 0 276629 436643 342348 405823 1693100 91644 14265 0 0 3.65488e+07 25171.3 28 1360736 16121963 53571 8.15417 8.15417 -83167.3 -7.15417 0 0 7.64 16.02 9.95 4962.6 MiB 111.31 9.00327 7.08734 1422.7 MiB 72.47 27.26 -stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 437.95 vpr 5.47 GiB 255 2097 1 28 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5737060 84 171 36458 36247 3 20325 2381 62 46 2852 LAB auto 1558.7 MiB 93.27 297719 1765.9 MiB 70.87 0.60 11.8295 -83637.5 -10.8295 4.15308 23.09 0.143424 0.109358 15.9535 12.1927 391686 10.7476 86849 2.38308 125508 598448 176572429 18767989 56989900 4329627 119582529 14438362 0 0 321488 243072 387320 387320 598448 598448 729596 388062 53179581 1773169 13605190 9294322 2890383 1714938 51883666 2763115 0 0 52976757 1605543 0 0 321488 0 3233365 948310 2524354 3092049 16532 0 2808024 79915 1288536 1576664 304956 0 425341 868395 1235818 1515385 4406118 295792 112609 0 0 7.20371e+07 25258.4 15 2648834 32075053 67963 12.6145 4.26424 -93963.1 -11.6145 0 0 14.12 33.11 19.68 5602.6 MiB 156.50 20.7684 16.0249 1669.6 MiB 75.28 52.39 -stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 738.24 vpr 6.19 GiB 478 1236 1 300 4 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6488112 202 276 35125 30509 3 21529 2019 106 79 8374 M9K auto 1502.7 MiB 73.51 272765 2207.4 MiB 60.53 0.48 9.19202 -37842.6 -8.19202 3.20486 182.37 0.136898 0.103736 16.4493 12.685 320956 9.13910 66352 1.88935 100167 415115 157993319 23482405 34323808 3445578 123669511 20036827 0 0 381066 234878 227243 227243 415115 415115 642224 227351 30610104 1127641 23077196 16096941 2917523 1667944 49697291 2100860 0 0 50025557 1384432 0 0 381066 0 2227139 1268941 918473 1226694 17433 0 743446 82428 157685 229301 363633 0 1483693 1186513 760788 997393 5526842 51844 12315 0 0 2.11299e+08 25232.8 20 3958220 42984491 64532 7.91139 3.47755 -67229.6 -6.91139 0 0 39.80 57.95 29.64 6336.0 MiB 171.53 21.4318 16.6995 2207.4 MiB 72.19 182.81 -stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 453.19 vpr 5.36 GiB 5 331 31 105 0 2 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5624880 3 2 14862 10304 26 7485 474 89 66 5874 DSP auto 1320.4 MiB 34.47 125450 1843.3 MiB 10.94 0.11 5.8049 -30200.5 -4.8049 3.81023 118.15 0.0607072 0.0495509 5.99461 4.9777 149819 10.0983 29897 2.01517 42261 171257 55596455 6297388 13474202 1014981 42122253 5282407 0 0 82491 63008 57241 57241 171257 171257 1336653 57241 12612743 431764 3714083 2370064 607711 348952 18453794 1550735 0 0 18560482 1247126 0 0 82491 0 3038453 167652 365739 468667 2750 0 2838075 13146 204158 311224 79741 0 200378 154506 161581 157443 842142 91976 7787 0 0 1.48105e+08 25213.7 13 2294013 23927517 37921 4.65543 3.70404 -39170.9 -3.65543 0 0 28.14 27.33 13.44 5493.0 MiB 119.75 7.84913 6.5749 1843.3 MiB 75.94 121.31 -stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 830.95 vpr 5.89 GiB 693 1763 25 16 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6178032 35 658 51416 37539 1 27797 2497 108 80 8640 io auto 1608.9 MiB 76.67 253700 2300.4 MiB 108.89 0.80 36.6178 -57981.3 -35.6178 36.6178 171.91 0.158204 0.12925 22.1759 17.8341 342733 6.86771 79937 1.60178 141214 573898 344874414 48577102 53252645 6506672 291621769 42070430 0 0 538278 391276 360228 360228 573898 573898 7081017 360265 46490833 1687480 31676243 23376052 5649636 3854018 124496081 10461477 0 0 128008200 7512408 0 0 538278 0 2119611 1913570 745327 1186799 18990 0 631202 95269 152008 238977 519288 0 1488409 1818301 593319 947822 5873469 54852 3680 0 0 2.18145e+08 25248.3 26 4400944 49964640 86213 36.9093 36.9093 -62252.5 -35.9093 0 0 39.64 51.65 21.96 6033.2 MiB 216.24 30.927 25.2045 2300.4 MiB 73.56 188.58 -stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 766.05 vpr 5.51 GiB 753 1119 5 32 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5782540 13 740 25173 25306 1 12707 1909 117 87 10179 io auto 1437.3 MiB 59.18 158034 2351.1 MiB 40.46 0.31 9.0794 -29604.5 -8.0794 7.71568 193.63 0.0805726 0.0704518 10.3821 8.39077 193023 7.66999 42155 1.67508 67723 316841 110094427 12492137 30525922 2684272 79568505 9807865 0 0 262116 180684 198341 198341 316841 316841 495413 198377 27700196 926544 11964014 7741355 2246769 1260203 33325147 1126514 0 0 33585590 543278 0 0 262116 0 965199 881583 635973 843315 9466 0 311246 41223 259881 322038 252650 0 653953 840360 376092 521277 2888017 64488 4750 0 0 2.57091e+08 25257.0 19 4146327 46175295 62070 8.10698 7.61424 -41671.4 -7.10698 0 0 51.25 47.23 13.69 5647.0 MiB 151.94 14.057 11.4172 2351.1 MiB 74.52 242.82 -stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 239.62 vpr 5.17 GiB 54 667 0 40 0 1 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 5417848 2 52 16673 16662 2 12034 762 37 27 999 LAB auto 1362.5 MiB 40.22 180205 1521.9 MiB 18.15 0.19 5.54068 -21652.7 -4.54068 4.89195 4.65 0.0717041 0.0562898 6.47426 5.14154 231827 13.9077 53255 3.19485 68116 367622 159055598 19108453 34672375 3059318 124383223 16049135 0 0 285481 200249 223228 223228 367622 367622 537770 223228 31582305 1047276 11283921 8661165 2436967 1444171 55997826 3999152 0 0 56340478 2942362 0 0 285481 0 1841453 1028515 862108 1209475 4776 0 1409514 29885 265500 444129 280705 0 431939 998630 596608 765346 3197345 87150 7950 0 0 2.50432e+07 25068.2 19 1111277 11680547 35180 5.83036 5.24345 -27598.2 -4.83036 0 0 5.20 13.17 8.78 5290.9 MiB 128.35 9.38202 7.5432 1362.6 MiB 75.64 16.03 -stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 164.03 vpr 4.71 GiB 42 750 0 0 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 4934640 13 29 26295 20086 1 12166 792 39 29 1131 LAB auto 1355.7 MiB 14.50 79073 1500.5 MiB 10.23 0.14 4.99447 -4598.46 -3.99447 2.56728 7.90 0.0345151 0.0268055 2.50144 1.99306 84514 3.21432 19907 0.757122 53271 71125 35543996 4314319 7119832 718101 28424164 3596218 0 0 69624 64004 39306 39306 71125 71125 76245 39306 6383411 206696 3803297 2570461 595672 376276 12231924 577806 0 0 12273392 369339 0 0 69624 0 32314 76306 73971 84801 484 0 9456 2388 8600 9401 69140 0 22858 73918 65371 75400 314449 1998 167 0 0 2.84345e+07 25141.0 15 1246346 12342987 13974 3.67397 2.81465 -5505.51 -2.67397 0 0 5.86 9.66 5.54 4819.0 MiB 89.28 3.67814 2.97416 1358.0 MiB 70.67 17.94 -stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 1311.51 vpr 5.95 GiB 964 975 19 34 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6241032 542 422 37277 26038 1 20638 1992 147 109 16023 io auto 1457.5 MiB 52.03 265616 2972.0 MiB 108.24 0.92 9.50199 -37449.9 -8.50199 7.76547 403.54 0.100768 0.0806254 15.2083 12.1832 346126 9.28599 74414 1.99641 111598 332633 224653350 32780919 29959843 2965662 194693507 29815257 0 0 284178 214218 223746 223746 332633 332633 7808378 223794 27013393 957475 14955789 10307218 2329639 1461336 84833337 10478661 0 0 86872257 8581838 0 0 284178 0 1366644 796403 767936 968197 21123 0 829349 112845 328050 381217 263055 0 537295 683558 439886 586980 2699195 69880 5687 0 0 4.05153e+08 25285.7 48 5879056 65354821 47001 9.73561 7.96552 -51266 -8.73561 0 0 84.60 91.99 17.90 6094.8 MiB 236.21 25.2388 20.8791 2972.0 MiB 73.53 401.12 -stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 1535.02 vpr 5.78 GiB 1107 721 0 0 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 6061664 403 704 15490 16194 1 8416 1828 167 124 20708 io auto 1355.1 MiB 49.09 189937 3408.7 MiB 26.87 0.23 11.9901 -21784.8 -10.9901 5.40422 629.40 0.0607233 0.0480809 7.17479 5.77349 228474 14.7507 37908 2.44741 42194 231304 73567441 8146353 21695096 1870795 51872345 6275558 0 0 178600 126519 151747 151747 231304 231304 304999 151783 19833642 686525 7902121 4862978 1451550 826447 21591790 718777 0 0 21921688 390273 0 0 178600 0 783161 616011 485116 679882 1937 0 252342 9618 232249 278611 176663 0 530819 606393 252867 401271 2122828 55170 12244 0 0 5.23921e+08 25300.4 17 6720933 74598148 36972 11.2142 5.7031 -32750.7 -10.2142 0 0 97.15 109.46 8.97 5919.6 MiB 205.54 9.39266 7.63448 3408.7 MiB 74.35 503.67 -stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 217.36 vpr 4.73 GiB 35 735 0 6 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 4957700 18 17 16969 16357 1 6386 776 39 29 1131 LAB auto 1350.1 MiB 45.21 83840 1498.7 MiB 9.11 0.13 6.69002 -41482 -5.69002 6.69002 7.29 0.0329439 0.0249959 2.72854 2.16481 116609 6.87350 27569 1.62505 49810 263564 88698888 10211286 25294017 2152197 63404871 8059089 0 0 156263 110796 194462 194462 263564 263564 339975 195157 23310055 782065 7176427 5432894 1564135 995772 27669612 1438557 0 0 28024395 798019 0 0 156263 0 1148787 494004 1066644 1219674 5816 0 879456 28726 433164 511308 150447 0 269331 465278 633480 708366 2315472 114033 31198 0 0 2.84345e+07 25141.0 42 1091507 12261694 43464 6.84887 6.84887 -47681.8 -5.84887 0 0 6.66 11.68 6.83 4841.5 MiB 112.17 6.53399 5.3424 1354.1 MiB 74.98 17.19 -stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 103.86 vpr 4.39 GiB 35 73 0 8 0 0 success 46b9987-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-07-03T21:14:06 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 4608068 18 17 2291 2142 1 1503 116 16 12 192 LAB M9K auto 1225.8 MiB 5.49 10808 1365.3 MiB 0.94 0.01 5.25051 -3435.86 -4.25051 3.99423 0.13 0.00605524 0.00493609 0.267528 0.226197 13997 6.11757 3635 1.58872 7890 29854 10761012 1268842 2657138 256907 8103874 1011935 0 0 26185 18375 14254 14254 29854 29854 36615 14254 2380851 83280 1242024 822552 220248 125398 3374556 126276 0 0 3436425 34599 0 0 26185 0 156638 82530 40368 52509 1851 0 69535 9390 18202 20582 24334 0 87103 73140 22166 31927 285419 5552 110 0 0 4.72128e+06 24590.0 20 153885 1496224 4500 4.15507 4.15507 -3832.57 -3.15507 0 0 1.16 1.77 1.22 4500.1 MiB 79.71 0.535418 0.455236 1264.1 MiB 75.21 0.90 +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 carpat_stratixiv_arch_timing.blif common 428.95 vpr 5.69 GiB 274 985 36 59 0 2 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5971508 22 252 53001 29054 7 24677 1356 89 66 5874 DSP auto 1467.0 MiB 29.42 248371 954110 285143 562881 106086 2057.9 MiB 74.97 0.48 8.02184 -42397.1 -7.02184 3.20007 0.04 0.161633 0.140714 21.3998 18.8902 338955 6.39912 75485 1.42508 121441 289695 240594743 33482528 0 0 1.48105e+08 25213.7 39 3159283 31787115 49857 7.80104 2.93519 -40292.1 -6.80104 0 0 39.35 35.55 25.88 5831.3 MiB 166.75 33.3779 29.4514 2057.9 MiB 63.99 86.71 +stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 401.08 vpr 5.30 GiB 36 1571 10 10 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5555168 3 33 48977 39238 1 26076 1627 54 40 2160 LAB auto 1487.4 MiB 85.08 281537 996387 310061 662006 24320 1647.3 MiB 84.09 0.88 87.0532 -85683.9 -86.0532 87.0532 0.01 0.151493 0.124576 16.6171 13.9393 385197 7.86550 91415 1.86664 153329 523861 226612296 21114418 0 0 5.45450e+07 25252.3 30 2487515 26398364 64837 71.1883 71.1883 -141728 -70.1883 0 0 13.44 30.23 21.58 5424.9 MiB 159.09 25.8834 21.5141 1647.3 MiB 63.84 27.53 +stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 815.75 vpr 5.98 GiB 574 2798 16 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6267952 4 570 66175 54803 2 39284 3388 91 67 6097 io auto 1706.5 MiB 160.61 638374 2775803 1006957 1681672 87174 2241.8 MiB 163.90 1.29 30.5835 -120026 -29.5835 6.7874 0.04 0.263073 0.221418 30.5747 25.8293 932098 14.0864 206865 3.12627 313209 1690318 954117063 123613138 0 0 1.53690e+08 25207.4 27 4525410 53890031 131493 29.7513 6.85838 -125627 -28.7513 0 0 33.31 54.47 38.26 6120.8 MiB 327.83 43.1256 36.2726 2241.8 MiB 62.26 88.69 +stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 434.21 vpr 5.92 GiB 36 1347 8 149 2 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6203740 3 33 52402 39411 1 28031 1542 73 54 3942 M9K auto 1506.8 MiB 95.28 323184 838612 237748 580980 19884 1853.6 MiB 66.53 0.68 17.7952 -334079 -16.7952 17.7952 0.03 0.154745 0.126064 15.9138 12.957 406168 7.75219 92691 1.76911 132469 475520 169127598 17802510 0 0 9.96430e+07 25277.3 38 3040453 30196243 80077 17.4909 17.4909 -335232 -16.4909 0 0 22.40 42.41 31.76 6058.3 MiB 168.17 27.0613 22.1224 1853.6 MiB 67.97 48.05 +stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 223.68 vpr 4.84 GiB 251 959 1 17 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5078096 55 196 20131 19956 1 8238 1228 44 33 1452 io auto 1355.0 MiB 51.43 120172 619090 201214 397879 19997 1469.9 MiB 15.63 0.17 8.13439 -80298.9 -7.13439 8.13439 0.01 0.0497327 0.0426725 5.13046 4.11514 171217 8.50641 39945 1.98455 53315 231814 61625526 5048493 0 0 3.65488e+07 25171.3 31 1360323 16115684 53903 8.22633 8.22633 -82640.4 -7.22633 0 0 10.79 18.71 13.33 4958.8 MiB 105.23 8.36643 6.63879 1463.0 MiB 66.70 15.62 +stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 431.82 vpr 5.47 GiB 255 2119 1 28 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5732792 84 171 36458 36247 3 20421 2403 62 46 2852 LAB auto 1495.6 MiB 121.86 290701 1595115 570423 937667 87025 1731.5 MiB 59.06 0.88 12.9798 -90874.5 -11.9798 4.66054 0.02 0.17766 0.134007 15.0676 12.1411 404601 11.1020 89060 2.44375 122881 589071 155442818 13359079 0 0 7.20371e+07 25258.4 18 2648236 32071807 68561 13.0244 4.46105 -93007.9 -12.0244 0 0 20.45 38.56 26.05 5598.4 MiB 152.24 20.3374 16.3586 1731.5 MiB 67.96 44.69 +stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 539.67 vpr 6.16 GiB 478 1247 1 300 4 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6457104 202 276 35125 30509 3 21749 2030 106 79 8374 M9K auto 1451.1 MiB 75.73 260809 1697966 584525 1053901 59540 2326.5 MiB 69.69 0.42 9.41173 -47933.7 -8.41173 3.39967 0.05 0.134641 0.105417 19.7532 15.4741 313986 8.94063 65931 1.87736 96858 402480 121760850 21350695 0 0 2.11299e+08 25232.8 22 3960251 43027550 63662 8.19797 3.68858 -71562.1 -7.19797 0 0 54.52 55.09 40.21 6305.8 MiB 161.98 25.3227 19.9869 2326.5 MiB 66.34 144.43 +stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 321.41 vpr 5.38 GiB 5 331 31 105 0 2 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5636340 3 2 14862 10304 26 7580 474 89 66 5874 DSP auto 1300.6 MiB 52.12 119481 175939 46938 124613 4388 1941.1 MiB 10.79 0.10 5.88056 -30914.8 -4.88056 4.13266 0.03 0.0612334 0.0539792 6.49277 5.46245 146943 9.90449 29299 1.97486 42949 181573 51132764 5390460 0 0 1.48105e+08 25213.7 14 2293428 23912154 38101 4.50499 3.70819 -37430.5 -3.50499 0 0 39.27 24.81 17.74 5504.2 MiB 114.27 8.41206 7.05794 1941.1 MiB 73.15 80.30 +stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 604.42 vpr 5.88 GiB 693 1782 25 16 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6163500 35 658 51416 37539 1 27489 2516 108 80 8640 io auto 1545.4 MiB 78.23 235688 2328796 788065 1390229 150502 2425.2 MiB 108.94 0.73 41.8548 -65336.7 -40.8548 41.8548 0.05 0.182563 0.166931 27.3116 23.6666 331843 6.64936 78001 1.56296 165823 675315 288495127 31315475 0 0 2.18145e+08 25248.3 25 4406446 50088530 83951 38.7687 38.7687 -62631.6 -37.7687 0 0 56.64 43.29 29.65 6019.0 MiB 179.17 35.858 30.9207 2425.2 MiB 66.65 145.87 +stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 490.19 vpr 5.49 GiB 753 1117 5 32 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5761892 13 740 25173 25306 1 12677 1907 117 87 10179 io auto 1397.7 MiB 56.69 158532 1337680 499407 780615 57658 2495.4 MiB 38.42 0.23 9.04712 -33408.1 -8.04712 8.7062 0.06 0.0593076 0.0526541 10.3875 8.4919 194524 7.72964 42258 1.67917 67248 314264 80325919 6195706 0 0 2.57091e+08 25257.0 16 4145714 46103256 60712 9.44565 8.02164 -41382.5 -8.44565 0 0 57.13 29.02 17.50 5626.8 MiB 125.09 13.501 10.9774 2495.4 MiB 68.37 185.29 +stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 207.70 vpr 5.16 GiB 54 661 0 40 0 1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 5413568 2 52 16673 16662 2 12103 756 37 27 999 LAB auto 1332.8 MiB 39.94 182960 252022 64860 179647 7515 1435.5 MiB 11.93 0.15 6.11901 -21401.8 -5.11901 5.08095 0.01 0.0565371 0.0449556 4.69769 3.76454 240240 14.4124 55528 3.33121 73264 390943 149921058 16354331 0 0 2.50432e+07 25068.2 20 1108499 11576081 35204 6.84174 5.56247 -26781.1 -5.84174 0 0 7.65 15.28 11.31 5286.7 MiB 116.23 7.63028 6.11936 1392.9 MiB 61.87 7.85 +stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 145.06 vpr 4.71 GiB 42 752 0 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4934812 13 29 26295 20086 1 12536 794 39 29 1131 LAB auto 1329.3 MiB 12.27 76015 258044 53765 191160 13119 1421.9 MiB 8.56 0.11 4.99496 -5275.28 -3.99496 2.88115 0.01 0.0346645 0.0283209 2.62579 2.18191 86766 3.29997 21050 0.800593 54834 71341 33867829 3195419 0 0 2.84345e+07 25141.0 17 1246323 12347232 14132 3.54641 2.89399 -5805.4 -2.54641 0 0 8.60 11.69 7.86 4819.2 MiB 83.22 3.9986 3.31593 1386.6 MiB 62.52 10.13 +stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 915.69 vpr 5.93 GiB 964 976 19 34 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6215724 542 422 37277 26038 1 20609 1993 147 109 16023 io auto 1415.0 MiB 64.39 248974 1619266 607103 947945 64218 3187.8 MiB 75.54 0.68 8.38795 -43141.1 -7.38795 8.38795 0.09 0.115964 0.0986763 16.0502 13.7598 328246 8.80630 70845 1.90065 110233 335979 524318827 154462291 0 0 4.05153e+08 25285.7 64 5882994 65429817 45007 8.03999 7.98626 -51092.4 -7.03999 0 0 103.28 39.29 23.30 6070.0 MiB 349.45 29.8141 25.6449 3187.8 MiB 59.96 287.52 +stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 748.11 vpr 5.79 GiB 1107 719 0 0 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 6066732 403 704 15490 16194 1 8578 1826 167 124 20708 io auto 1326.2 MiB 59.68 191872 1351702 518260 795694 37748 3664.4 MiB 22.00 0.18 12.747 -23348.6 -11.747 5.87647 0.22 0.055378 0.0492417 7.51842 6.33745 234362 15.1309 39654 2.56014 41635 226559 55203082 4251380 0 0 5.23921e+08 25300.4 18 6720982 74598209 36896 11.745 5.81823 -32706.7 -10.745 0 0 136.86 30.11 13.54 5924.5 MiB 113.58 9.62012 8.10804 3664.4 MiB 61.24 384.70 +stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 199.44 vpr 4.72 GiB 35 731 0 6 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4951472 18 17 16969 16357 1 6316 772 39 29 1131 LAB auto 1324.1 MiB 53.52 86613 255652 66755 185847 3050 1424.2 MiB 8.79 0.13 7.13037 -40670.7 -6.13037 7.13037 0.01 0.0390029 0.0309978 3.15152 2.51856 121385 7.15503 28025 1.65193 47865 258456 72672688 6504539 0 0 2.84345e+07 25141.0 37 1091666 12266607 43440 7.12455 7.12455 -43536.9 -6.12455 0 0 8.32 12.62 8.86 4835.4 MiB 93.40 6.0413 4.8334 1380.2 MiB 61.27 11.59 +stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 94.11 vpr 4.39 GiB 35 78 0 8 0 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 4605040 18 17 2291 2142 1 1502 121 16 12 192 LAB M9K auto 1221.1 MiB 5.74 10236 9390 1004 7372 1014 1290.4 MiB 0.82 0.01 5.31114 -4105.51 -4.31114 4.53509 0.00 0.00620249 0.00535395 0.259352 0.226533 13262 5.79633 3436 1.50175 7580 28332 7737888 644646 0 0 4.72128e+06 24590.0 42 153746 1493427 4612 4.44499 4.44499 -3952.72 -3.44499 0 0 1.88 2.19 1.68 4497.1 MiB 65.56 0.783495 0.672064 1259.5 MiB 60.88 0.58 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt index 2c43b56eb77..b3badd093b7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/golden_results.txt @@ -1,3 +1,3 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 3.59 vpr 61.01 MiB -1 -1 0.11 16896 1 0.63 -1 -1 29740 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62476 9 8 75 70 1 37 20 5 5 25 clb auto 22.4 MiB 0.47 82 533 165 363 5 61.0 MiB 0.01 0.00 2.68643 -29.137 -2.68643 2.68643 0.02 0.000188348 0.000174205 0.00474572 0.0044363 26 182 18 151211 75605.7 37105.9 1484.24 0.15 0.0423228 0.0352957 1908 5841 -1 155 11 111 124 5133 2870 2.88739 2.88739 -34.0156 -2.88739 0 0 45067.1 1802.68 0.00 0.01 0.01 -1 -1 0.00 0.00698364 0.00619778 14 18 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 6.04 vpr 62.27 MiB -1 -1 0.19 17208 1 0.64 -1 -1 30124 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 19 18 308 249 1 147 46 6 6 36 clb auto 23.8 MiB 2.01 502 2916 768 2087 61 62.3 MiB 0.05 0.00 4.80297 -98.0082 -4.80297 4.80297 0.05 0.000629548 0.000584294 0.0259583 0.0242455 48 1077 40 403230 226817 104013. 2889.24 0.79 0.275306 0.234615 3910 18599 -1 770 17 746 1059 42320 17076 4.66916 4.66916 -105.494 -4.66916 0 0 131137. 3642.71 0.01 0.04 0.02 -1 -1 0.01 0.026422 0.0235947 63 83 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.47 vpr 61.68 MiB -1 -1 0.14 17412 1 0.02 -1 -1 30092 -1 -1 3 9 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 9 8 75 70 1 34 20 5 5 25 clb auto 23.0 MiB 0.48 71 587 167 407 13 61.7 MiB 0.01 0.00 2.64007 -28.8002 -2.64007 2.64007 0.02 0.00018874 0.0001749 0.00515172 0.00481814 26 158 12 151211 75605.7 37105.9 1484.24 0.07 0.0263968 0.0224852 1908 5841 -1 154 11 104 116 4129 2171 2.87707 2.87707 -34.6861 -2.87707 0 0 45067.1 1802.68 0.00 0.01 0.01 -1 -1 0.00 0.00661492 0.00590698 13 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 5.70 vpr 62.75 MiB -1 -1 0.19 17840 1 0.03 -1 -1 30428 -1 -1 7 19 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 19 18 308 249 1 142 44 6 6 36 clb auto 24.5 MiB 3.72 448 3740 1050 2663 27 62.8 MiB 0.06 0.00 4.88121 -99.2245 -4.88121 4.88121 0.05 0.00062533 0.000580812 0.0338073 0.0315436 52 1067 23 403230 176413 110337. 3064.92 0.72 0.238972 0.204378 4014 20275 -1 806 25 799 1471 58539 21843 5.26432 5.26432 -115.767 -5.26432 0 0 143382. 3982.83 0.01 0.06 0.02 -1 -1 0.01 0.0338988 0.0298411 55 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/apex2_block_locations.place b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/apex2_block_locations.place index 2b9d43ac328..39932395859 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/apex2_block_locations.place +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/apex2_block_locations.place @@ -1,183 +1,180 @@ -#block name x y subblk block number -#---------- -- -- ------ ------------ -o_1_ 5 2 5 #0 -o_2_ 2 1 1 #1 -o_0_ 3 4 4 #2 -n_n1827 2 2 5 #3 -n_n1829 3 1 2 #4 -n_n1812 1 1 5 #5 -n_n1866 1 2 2 #6 -n_n1865 1 2 1 #7 -[493] 4 4 0 #8 -n_n544 4 4 4 #9 -n_n416 3 1 3 #10 -n_n394 2 1 5 #11 -n_n391 2 1 2 #12 -n_n300 2 2 1 #13 -[260] 3 5 3 #14 -n_n437 3 3 5 #15 -[223] 3 3 2 #16 -[79] 2 5 4 #17 -[410] 3 4 2 #18 -[516] 3 5 4 #19 -[245] 3 5 1 #20 -[340] 2 4 1 #21 -[432] 3 5 0 #22 -[80] 4 4 3 #23 -[541] 4 3 5 #24 -n_n309 2 1 0 #25 -[8] 4 5 5 #26 -[546] 4 4 2 #27 -n_n706 1 2 5 #28 -[261] 3 2 5 #29 -[463] 4 2 3 #30 -n_n1575 4 4 5 #31 -n_n1571 3 4 3 #32 -[132] 4 5 3 #33 -[355] 3 4 0 #34 -[214] 3 3 4 #35 -[267] 4 3 2 #36 -n_n329 3 2 0 #37 -[420] 5 4 5 #38 -n_n849 3 2 2 #39 -[478] 3 4 5 #40 -[578] 4 1 5 #41 -[253] 3 2 1 #42 -[4] 4 1 0 #43 -[56] 1 2 3 #44 -[226] 1 1 4 #45 -[282] 1 4 1 #46 -[377] 1 1 1 #47 -[71] 3 1 1 #48 -[319] 4 2 0 #49 -[233] 5 3 5 #50 -[246] 4 3 1 #51 -[301] 2 5 5 #52 -[608] 3 3 3 #53 -[21] 2 1 4 #54 -[311] 2 3 3 #55 -[344] 2 2 3 #56 -[310] 2 2 0 #57 -[315] 1 3 0 #58 -[29] 3 3 0 #59 -[273] 2 4 3 #60 -n_n1690 5 3 3 #61 -[383] 5 2 0 #62 -[390] 2 2 2 #63 -[705] 3 3 1 #64 -[41] 4 3 3 #65 -[351] 4 1 1 #66 -[484] 4 2 1 #67 -[437] 4 2 4 #68 -[349] 1 3 4 #69 -[65] 5 4 3 #70 -[402] 5 4 1 #71 -[521] 4 1 4 #72 -[767] 5 2 4 #73 -[129] 2 5 3 #74 -[133] 2 3 1 #75 -[234] 5 3 1 #76 -[427] 4 5 0 #77 -[868] 3 5 2 #78 -[906] 5 3 0 #79 -[919] 2 3 0 #80 -[1253] 1 2 4 #81 -[1283] 1 3 5 #82 -[1340] 3 1 0 #83 -[1382] 2 1 3 #84 -[1404] 2 2 4 #85 -[1417] 3 1 5 #86 -[1534] 5 2 2 #87 -[1542] 4 5 4 #88 -[1615] 5 4 0 #89 -[6947] 1 4 3 #90 -[7159] 4 2 2 #91 -[7165] 5 5 5 #92 -[7191] 5 3 4 #93 -[7319] 2 4 2 #94 -[7321] 1 4 2 #95 -[7352] 1 2 0 #96 -[7388] 3 2 3 #97 -[7423] 3 2 4 #98 -[7428] 3 1 4 #99 -[7466] 1 5 4 #100 -[7782] 5 5 1 #101 -[7822] 4 2 5 #102 -[7885] 3 4 1 #103 -[7888] 3 5 5 #104 -[7942] 4 4 1 #105 -[7997] 4 3 4 #106 -[50] 2 3 4 #107 -[288] 5 2 1 #108 -[539] 1 4 4 #109 -[275] 5 4 4 #110 -[503] 1 1 2 #111 -n_n1582 2 4 5 #112 -[252] 5 4 2 #113 -[196] 1 4 0 #114 -[365] 2 3 2 #115 -[492] 4 3 0 #116 -[616] 1 5 3 #117 -[614] 1 5 0 #118 -[55] 5 3 2 #119 -[75] 2 3 5 #120 -[663] 2 4 0 #121 -[708] 5 5 2 #122 -n_n1816 1 1 3 #123 -[745] 1 3 2 #124 -[771] 4 1 3 #125 -[788] 1 3 3 #126 -[802] 4 5 1 #127 -[345] 1 4 5 #128 -[635] 4 1 2 #129 -[759] 2 4 4 #130 -[7031] 5 5 3 #131 -[7969] 2 5 2 #132 -[446] 1 5 5 #133 -[634] 5 5 4 #134 -[1137] 5 1 4 #135 -[1152] 1 1 0 #136 -[7750] 5 2 3 #137 -[7317] 5 1 2 #138 -[6910] 5 1 1 #139 -out:o_1_ 6 2 1 #140 -out:o_2_ 1 0 6 #141 -out:o_0_ 4 6 7 #142 -i_30_ 0 3 1 #143 -i_20_ 6 4 4 #144 -i_9_ 2 0 6 #145 -i_10_ 2 6 3 #146 -i_7_ 3 6 5 #147 -i_8_ 2 0 5 #148 -i_5_ 2 0 0 #149 -i_6_ 4 0 2 #150 -i_27_ 3 6 7 #151 -i_14_ 4 6 0 #152 -i_3_ 3 0 5 #153 -i_28_ 3 0 7 #154 -i_13_ 3 0 1 #155 -i_4_ 3 0 0 #156 -i_25_ 2 0 4 #157 -i_12_ 2 6 0 #158 -i_1_ 3 0 2 #159 -i_26_ 0 4 3 #160 -i_11_ 4 0 7 #161 -i_2_ 3 0 6 #162 -i_23_ 4 6 5 #163 -i_18_ 2 0 3 #164 -i_24_ 0 3 7 #165 -i_17_ 6 4 7 #166 -i_0_ 4 0 6 #167 -i_21_ 2 6 4 #168 -i_16_ 4 6 1 #169 -i_22_ 0 2 3 #170 -i_32_ 2 0 1 #171 -i_31_ 3 6 1 #172 -i_34_ 3 6 3 #173 -i_33_ 2 6 7 #174 -i_19_ 3 0 4 #175 -i_36_ 3 6 0 #176 -i_35_ 3 0 3 #177 -i_38_ 0 2 5 #178 -i_29_ 2 6 5 #179 -i_37_ 4 0 0 #180 +#block name x y subblk layer block number +#---------- -- -- ------ ----- ------------ +o_1_ 3 3 5 0 #0 +o_2_ 4 4 5 0 #1 +o_0_ 2 4 2 0 #2 +n_n1827 5 4 3 0 #3 +n_n1829 5 3 0 0 #4 +n_n1812 3 5 2 0 #5 +n_n1866 5 2 3 0 #6 +n_n1865 5 4 2 0 #7 +[493] 3 2 5 0 #8 +n_n544 3 1 0 0 #9 +n_n416 4 4 3 0 #10 +n_n394 4 5 0 0 #11 +n_n391 4 5 5 0 #12 +n_n300 4 5 3 0 #13 +[260] 2 3 0 0 #14 +n_n437 4 2 4 0 #15 +[223] 1 1 4 0 #16 +[79] 1 3 5 0 #17 +[410] 1 1 2 0 #18 +[516] 1 3 3 0 #19 +[245] 1 1 0 0 #20 +[340] 2 4 0 0 #21 +[432] 2 3 2 0 #22 +[80] 2 1 4 0 #23 +[541] 1 1 1 0 #24 +n_n309 3 5 0 0 #25 +[8] 1 3 1 0 #26 +[546] 2 2 0 0 #27 +n_n706 5 4 4 0 #28 +[261] 5 4 0 0 #29 +[463] 3 3 0 0 #30 +n_n1575 1 2 0 0 #31 +n_n1571 2 1 0 0 #32 +[132] 1 4 2 0 #33 +[355] 2 1 1 0 #34 +[214] 2 2 2 0 #35 +[267] 2 2 1 0 #36 +n_n329 5 2 4 0 #37 +[420] 1 2 1 0 #38 +n_n849 5 4 1 0 #39 +[478] 1 1 3 0 #40 +[578] 5 5 3 0 #41 +[253] 4 3 3 0 #42 +[4] 3 4 5 0 #43 +[56] 4 4 1 0 #44 +[226] 4 4 0 0 #45 +[282] 4 3 1 0 #46 +[71] 3 5 4 0 #47 +[319] 3 4 1 0 #48 +[233] 3 1 3 0 #49 +[246] 3 1 2 0 #50 +[301] 1 3 2 0 #51 +[608] 2 2 3 0 #52 +[21] 5 5 2 0 #53 +[311] 4 2 1 0 #54 +[344] 5 3 1 0 #55 +[310] 5 4 5 0 #56 +[315] 4 3 2 0 #57 +[29] 2 4 3 0 #58 +[273] 2 1 5 0 #59 +n_n1690 3 3 2 0 #60 +[383] 3 2 3 0 #61 +[390] 4 3 5 0 #62 +[705] 2 2 5 0 #63 +[41] 3 2 4 0 #64 +[351] 3 4 2 0 #65 +[262] 5 5 0 0 #66 +[484] 3 4 0 0 #67 +[437] 1 1 5 0 #68 +[65] 1 2 2 0 #69 +[221] 2 2 4 0 #70 +[402] 2 1 3 0 #71 +[521] 3 5 1 0 #72 +[767] 3 2 0 0 #73 +[129] 1 4 5 0 #74 +[133] 2 4 5 0 #75 +[234] 2 4 4 0 #76 +[868] 3 5 5 0 #77 +[904] 2 3 4 0 #78 +[906] 4 2 5 0 #79 +[919] 1 2 4 0 #80 +[1283] 4 5 4 0 #81 +[1340] 5 2 1 0 #82 +[1382] 4 5 1 0 #83 +[1404] 5 3 4 0 #84 +[1417] 5 5 4 0 #85 +[1534] 3 3 3 0 #86 +[1615] 1 4 3 0 #87 +[6947] 2 4 1 0 #88 +[7082] 3 1 4 0 #89 +[7159] 2 3 1 0 #90 +[7191] 3 2 1 0 #91 +[7224] 4 2 3 0 #92 +[7319] 4 1 1 0 #93 +[7321] 4 4 2 0 #94 +[7351] 4 3 4 0 #95 +[7388] 4 3 0 0 #96 +[7423] 4 5 2 0 #97 +[7466] 2 3 5 0 #98 +[7782] 3 1 1 0 #99 +[7822] 5 2 5 0 #100 +[7885] 2 5 0 0 #101 +[7888] 1 2 3 0 #102 +[7997] 1 4 4 0 #103 +[8027] 3 1 5 0 #104 +[529] 5 3 5 0 #105 +[503] 5 3 3 0 #106 +n_n1582 1 4 0 0 #107 +[252] 1 2 5 0 #108 +[585] 4 1 4 0 #109 +[365] 3 2 2 0 #110 +[492] 3 3 4 0 #111 +[616] 4 1 5 0 #112 +n_n1870 2 1 2 0 #113 +n_n1716 1 3 4 0 #114 +[254] 3 5 3 0 #115 +[429] 3 4 3 0 #116 +[700] 4 2 2 0 #117 +[739] 3 4 4 0 #118 +[745] 5 3 2 0 #119 +[771] 3 3 1 0 #120 +[18] 5 5 1 0 #121 +[95] 4 1 0 0 #122 +[96] 4 4 4 0 #123 +[356] 1 4 1 0 #124 +[606] 4 2 0 0 #125 +[1015] 5 5 5 0 #126 +[1032] 5 2 2 0 #127 +[1066] 2 5 2 0 #128 +[1419] 5 2 0 0 #129 +[1622] 1 3 0 0 #130 +[7046] 2 3 3 0 #131 +[7211] 4 1 3 0 #132 +[7931] 2 5 5 0 #133 +[7004] 2 5 4 0 #134 +[7559] 2 5 3 0 #135 +[6979] 1 5 0 0 #136 +out:o_1_ 3 6 1 0 #137 +out:o_2_ 4 6 3 0 #138 +out:o_0_ 2 6 4 0 #139 +i_30_ 3 0 3 0 #140 +i_20_ 3 0 6 0 #141 +i_9_ 4 6 6 0 #142 +i_10_ 3 6 5 0 #143 +i_7_ 1 0 1 0 #144 +i_8_ 4 6 0 0 #145 +i_5_ 3 6 4 0 #146 +i_6_ 5 6 6 0 #147 +i_27_ 2 0 6 0 #148 +i_14_ 2 0 7 0 #149 +i_3_ 5 6 5 0 #150 +i_28_ 3 0 5 0 #151 +i_13_ 2 0 1 0 #152 +i_4_ 3 6 7 0 #153 +i_25_ 4 6 5 0 #154 +i_12_ 2 0 5 0 #155 +i_1_ 6 5 6 0 #156 +i_26_ 4 0 4 0 #157 +i_11_ 4 6 1 0 #158 +i_2_ 3 6 0 0 #159 +i_23_ 2 0 4 0 #160 +i_18_ 4 6 4 0 #161 +i_24_ 0 3 1 0 #162 +i_17_ 2 0 0 0 #163 +i_0_ 0 4 5 0 #164 +i_21_ 3 0 0 0 #165 +i_16_ 2 0 3 0 #166 +i_22_ 4 0 5 0 #167 +i_32_ 3 0 4 0 #168 +i_31_ 4 0 7 0 #169 +i_34_ 3 0 1 0 #170 +i_33_ 2 6 0 0 #171 +i_19_ 4 6 7 0 #172 +i_36_ 1 0 6 0 #173 +i_35_ 3 0 2 0 #174 +i_38_ 4 6 2 0 #175 +i_29_ 2 0 2 0 #176 +i_37_ 4 0 2 0 #177 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/config/golden_results.txt index 71d7e6d79b9..9d3085b67ac 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_clusters/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fix_clusters_test_arch.xml apex2.blif common 8.99 vpr 73.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 140 38 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 74820 38 3 1916 1919 0 1063 181 7 7 49 clb auto 35.6 MiB 2.66 5527 73.1 MiB 0.07 0.01 4.6133 -13.7748 -4.6133 nan 0.16 0.00214083 0.00185442 0.0309128 0.0297039 158 7515 49 1.34735e+06 7.54516e+06 924312. 18863.5 4.31 0.929206 0.809098 7175 18 6150 24757 1252052 378316 5.39096 nan -15.9926 -5.39096 0 0 1.15416e+06 23554.3 0.15 0.40 0.160086 0.147634 +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 +fix_clusters_test_arch.xml apex2.blif common 10.78 vpr 71.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 137 38 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73360 38 3 1916 1919 0 1045 178 7 7 49 clb auto 31.0 MiB 3.84 5376 1178 0 0 1178 71.6 MiB 0.06 0.00 5.09511 -14.9435 -5.09511 nan 0.18 0.00358743 0.00317856 0.03786 0.0361157 158 7378 33 1.34735e+06 7.38348e+06 924312. 18863.5 4.37 1.13539 0.962241 18354 286522 -1 7086 16 5502 22089 1016144 327872 5.60881 nan -16.3788 -5.60881 0 0 1.15416e+06 23554.3 0.15 0.38 0.18 -1 -1 0.15 0.185772 0.16773 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt index 764dc6c146e..66168627a8f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt @@ -1,5 +1,5 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 31.68 vpr 976.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999828 10 10 168 178 1 62 30 11 8 88 io auto 952.7 MiB 0.49 368 766 91 620 55 976.4 MiB 0.07 0.00 6.32355 -69.2597 -6.32355 6.32355 3.03 0.000606959 0.000542424 0.0138306 0.0128873 28 702 21 0 0 134428. 1527.59 0.57 0.101778 0.0894085 11590 29630 -1 622 11 230 891 89731 31995 6.89935 6.89935 -73.8866 -6.89935 0 0 173354. 1969.93 0.03 0.06 0.10 -1 -1 0.03 0.0214102 0.0193672 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 32.09 vpr 976.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999936 10 10 168 178 1 62 30 11 8 88 io auto 952.8 MiB 0.49 344 720 82 581 57 976.5 MiB 0.07 0.00 6.39032 -69.1435 -6.39032 6.39032 3.04 0.000600169 0.000551234 0.0130613 0.0122073 18 839 22 0 0 88979.3 1011.13 0.65 0.101009 0.0885949 11100 22242 -1 762 18 447 1915 168871 66281 7.03645 7.03645 -77.8983 -7.03645 0 0 114778. 1304.29 0.02 0.08 0.09 -1 -1 0.02 0.0279206 0.0247821 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 34.28 vpr 976.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999896 10 10 168 178 1 62 30 11 8 88 io auto 952.8 MiB 0.49 334 766 75 633 58 976.5 MiB 0.10 0.00 6.24004 -68.8638 -6.24004 6.24004 4.07 0.000634706 0.000586765 0.0149754 0.0140212 18 899 39 0 0 88979.3 1011.13 0.73 0.110608 0.0954776 11100 22242 -1 696 22 510 2363 198597 78898 6.62875 6.62875 -75.2001 -6.62875 0 0 114778. 1304.29 0.02 0.10 0.09 -1 -1 0.02 0.0320727 0.028307 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 34.15 vpr 976.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999816 10 10 168 178 1 62 30 11 8 88 io auto 952.7 MiB 0.50 339 720 76 599 45 976.4 MiB 0.08 0.00 6.3798 -68.6604 -6.3798 6.3798 4.15 0.000660135 0.000609847 0.0138725 0.0129932 18 811 22 0 0 88979.3 1011.13 0.62 0.0967468 0.0834932 11100 22242 -1 677 19 362 1443 129672 53439 6.93449 6.93449 -74.8141 -6.93449 0 0 114778. 1304.29 0.02 0.08 0.09 -1 -1 0.02 0.0289955 0.0256269 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 34.84 vpr 975.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998768 10 10 168 178 1 68 30 11 8 88 io auto 952.5 MiB 0.50 358 812 97 660 55 975.4 MiB 0.07 0.00 6.44563 -69.2664 -6.44563 6.44563 3.31 0.000633306 0.000584828 0.014981 0.013961 26 784 31 0 0 125464. 1425.72 1.77 0.217747 0.184211 11500 28430 -1 625 17 282 1013 95514 35394 6.59221 6.59221 -74.0805 -6.59221 0 0 163463. 1857.53 0.03 0.07 0.09 -1 -1 0.03 0.0275927 0.0245705 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 34.42 vpr 975.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998944 10 10 168 178 1 68 30 11 8 88 io auto 952.6 MiB 0.50 365 812 101 651 60 975.5 MiB 0.10 0.00 6.37156 -69.5088 -6.37156 6.37156 3.32 0.000634379 0.000586337 0.015972 0.0149437 24 851 26 0 0 114778. 1304.29 1.37 0.179349 0.152804 11416 27150 -1 691 14 354 1388 135595 52969 6.82221 6.82221 -75.6812 -6.82221 0 0 153433. 1743.56 0.03 0.07 0.09 -1 -1 0.03 0.024931 0.0223273 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 35.84 vpr 975.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998788 10 10 168 178 1 68 30 11 8 88 io auto 952.4 MiB 0.50 367 812 86 668 58 975.4 MiB 0.15 0.00 6.39336 -69.4912 -6.39336 6.39336 4.34 0.000639177 0.000587378 0.017224 0.0162017 22 875 22 0 0 110609. 1256.92 1.66 0.199683 0.169442 11258 24748 -1 730 18 335 1182 109582 46429 6.92426 6.92426 -76.9247 -6.92426 0 0 134428. 1527.59 0.02 0.07 0.09 -1 -1 0.02 0.0283942 0.0252052 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 35.35 vpr 975.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998932 10 10 168 178 1 68 30 11 8 88 io auto 952.8 MiB 0.50 368 812 78 675 59 975.5 MiB 0.07 0.00 6.26392 -68.4373 -6.26392 6.26392 4.33 0.000637702 0.000588521 0.0149562 0.0139792 28 776 45 0 0 134428. 1527.59 1.48 0.227998 0.19302 11590 29630 -1 595 13 254 987 91515 32222 6.61176 6.61176 -72.652 -6.61176 0 0 173354. 1969.93 0.03 0.07 0.10 -1 -1 0.03 0.0241301 0.021664 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt index 6e001879de7..cc882260f8f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 25.01 vpr 937.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960084 10 10 168 178 1 62 30 11 8 88 io auto 914.4 MiB 0.45 362 937.6 MiB 0.04 0.00 6.36466 -69.0007 -6.36466 6.36466 2.04 0.000161939 0.000132652 0.00575617 0.00517076 20 944 26 0 0 100248. 1139.18 0.47 0.0425465 0.0376248 676 14 301 1085 104267 42354 6.94928 6.94928 -76.3954 -6.94928 0 0 125464. 1425.72 0.02 0.04 0.0141222 0.0132932 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 25.32 vpr 937.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960140 10 10 168 178 1 62 30 11 8 88 io auto 914.5 MiB 0.45 343 937.6 MiB 0.04 0.00 6.4007 -69.1003 -6.4007 6.4007 2.02 0.00016735 0.000134458 0.00650074 0.00586112 22 746 17 0 0 110609. 1256.92 0.37 0.0413622 0.036897 701 13 294 1183 107132 43375 6.82899 6.82899 -76.2234 -6.82899 0 0 134428. 1527.59 0.02 0.04 0.0138566 0.0130606 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 35.93 vpr 975.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 998976 10 10 168 178 1 68 30 11 8 88 io auto 952.8 MiB 0.54 420 582 82 470 30 975.6 MiB 0.07 0.00 6.38568 -70.463 -6.38568 6.38568 3.45 0.000645075 0.000592785 0.0119866 0.0112148 20 909 46 0 0 100248. 1139.18 0.84 0.12912 0.111352 11180 23751 -1 803 20 495 1987 182273 69910 6.92851 6.92851 -75.9518 -6.92851 0 0 125464. 1425.72 0.02 0.10 0.09 -1 -1 0.02 0.0328754 0.0291737 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 37.04 vpr 975.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g1d3eb07f5 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T23:07:52 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999148 10 10 168 178 1 68 30 11 8 88 io auto 952.6 MiB 0.60 395 582 95 453 34 975.7 MiB 0.07 0.00 6.37094 -69.85 -6.37094 6.37094 3.47 0.000638173 0.000588606 0.012516 0.0117144 30 698 21 0 0 144567. 1642.81 1.56 0.195052 0.165386 11730 32605 -1 613 13 256 907 102553 34444 6.74537 6.74537 -72.8995 -6.74537 0 0 194014. 2204.70 0.03 0.07 0.11 -1 -1 0.03 0.0256888 0.0231304 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_power/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_power/config/golden_results.txt index c6e28cffde3..3ff29a7a05b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_power/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_power/config/golden_results.txt @@ -1,3 +1,3 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.81 vpr 66.11 MiB -1 -1 0.26 21888 3 0.09 -1 -1 36764 -1 -1 68 99 1 0 success v8.0.0-10480-gb00638420 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-07-09T01:24:04 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67692 99 130 344 474 1 223 298 12 12 144 clb auto 27.3 MiB 0.12 585 71938 22630 36940 12368 66.1 MiB 0.14 0.00 1.6034 -105.161 -1.6034 1.6034 0.29 0.00139437 0.00135258 0.0351572 0.0316889 50 1281 9 5.66058e+06 4.21279e+06 406292. 2821.48 1.38 0.208431 0.191734 13526 77840 -1 1197 13 384 639 38731 12079 1.94763 1.94763 -135.636 -1.94763 -0.246888 -0.0618635 520805. 3616.70 0.14 0.03 0.06 -1 -1 0.14 0.0186428 0.0176628 0.01175 0.2358 0.07065 0.6936 -k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.53 vpr 69.39 MiB -1 -1 0.37 26692 15 0.34 -1 -1 38048 -1 -1 36 162 0 5 success v8.0.0-10480-gb00638420 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-07-09T01:24:04 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71060 162 96 1009 950 1 702 299 16 16 256 mult_36 auto 31.3 MiB 0.25 5482 83216 24145 51990 7081 69.4 MiB 0.33 0.01 19.9021 -1505.63 -19.9021 19.9021 0.55 0.00116941 0.00106566 0.107758 0.0971761 48 12516 28 1.21132e+07 3.92018e+06 756778. 2956.16 6.27 0.595579 0.54881 25228 149258 -1 9859 18 3192 6328 1764441 435058 22.1605 22.1605 -1742.59 -22.1605 0 0 968034. 3781.38 0.29 0.35 0.10 -1 -1 0.29 0.0780723 0.07404 0.007937 0.3531 0.01667 0.6303 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 5.18 vpr 64.54 MiB -1 -1 0.46 18288 3 0.09 -1 -1 33160 -1 -1 68 99 1 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66092 99 130 344 474 1 227 298 12 12 144 clb auto 25.4 MiB 0.19 661 70943 20722 37566 12655 64.5 MiB 0.23 0.00 1.839 -119.581 -1.839 1.839 0.27 0.00127959 0.0012119 0.0953193 0.0902128 34 1589 13 5.66058e+06 4.21279e+06 293002. 2034.74 1.83 0.517305 0.473105 12094 55633 -1 1502 8 427 618 38452 11577 2.02446 2.02446 -143.952 -2.02446 -0.463855 -0.170786 360780. 2505.42 0.08 0.04 0.06 -1 -1 0.08 0.0277569 0.0257707 0.01129 0.2417 0.06156 0.6968 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 13.38 vpr 67.62 MiB -1 -1 0.73 23380 15 0.34 -1 -1 34320 -1 -1 36 162 0 5 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69248 162 96 1009 950 1 702 299 16 16 256 mult_36 auto 28.5 MiB 0.29 5441 82217 25307 49551 7359 67.6 MiB 0.58 0.01 21.1109 -1602.21 -21.1109 21.1109 0.53 0.00332925 0.00312565 0.291767 0.273163 50 13131 39 1.21132e+07 3.92018e+06 780512. 3048.87 6.89 1.58692 1.4546 25484 153448 -1 10094 19 3330 6658 1024237 280212 22.4504 22.4504 -1708.56 -22.4504 0 0 1.00276e+06 3917.05 0.22 0.35 0.14 -1 -1 0.22 0.145546 0.135026 0.007913 0.3568 0.01624 0.6269 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_differing_modes/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_differing_modes/config/golden_results.txt index e251f183af0..ee111ce8129 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_differing_modes/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_differing_modes/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - slicem.xml carry_chain.blif common 0.43 vpr 56.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 57672 1 -1 48 34 1 31 5 4 4 16 BLK_IG-SLICEM auto 17.9 MiB 0.13 65 56.3 MiB 0.00 0.00 0.595425 -5.37295 -0.595425 0.595425 0.00 3.1223e-05 2.3395e-05 0.000393041 0.000353437 27 177 15 59253.6 59253.6 -1 -1 0.08 0.0108023 0.00874934 143 10 67 67 11459 5949 1.17738 1.17738 -12.4508 -1.17738 0 0 -1 -1 0.00 0.00 0.00142826 0.00129544 +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 +slicem.xml carry_chain.blif common 1.01 vpr 55.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 56856 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 17.1 MiB 0.18 70 85 17 60 8 55.5 MiB 0.01 0.00 0.645672 -5.8162 -0.645672 0.645672 0.00 0.000144263 0.000132656 0.00287964 0.00265788 25 269 16 133321 74067 -1 -1 0.44 0.0717801 0.0582621 1252 5405 -1 304 21 172 172 62949 28904 1.84417 1.84417 -18.3175 -1.84417 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.00658481 0.00563623 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt index 0d6c15dbf02..b7f2a2955a3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.62 vpr 61.70 MiB -1 -1 0.13 16668 1 0.02 -1 -1 29972 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 9 8 75 70 1 37 20 5 5 25 clb auto 23.2 MiB 0.48 95 74 32 40 2 61.7 MiB 0.01 0.00 2.68643 -29.5771 -2.68643 2.68643 0.02 0.000193898 0.000179351 0.00152641 0.00145955 28 196 12 151211 75605.7 38887.3 1555.49 0.15 0.0378608 0.0313115 1932 6055 -1 209 18 175 225 9837 5105 3.11407 3.11407 -40.4298 -3.11407 0 0 46719.2 1868.77 0.00 0.02 0.01 -1 -1 0.00 0.00868436 0.00758208 14 18 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 6.30 vpr 62.16 MiB -1 -1 0.14 17008 1 0.03 -1 -1 30152 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 11 10 108 97 1 45 23 4 4 16 clb auto 23.7 MiB 5.18 99 407 139 221 47 62.2 MiB 0.01 0.00 3.44595 -41.9644 -3.44595 3.44595 0.01 0.000258109 0.000239425 0.00468244 0.00440828 34 245 29 50403.8 50403.8 21558.4 1347.40 0.14 0.0594086 0.0498622 1020 3049 -1 142 12 173 207 5475 3281 3.42277 3.42277 -45.8589 -3.42277 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00898942 0.00801169 14 27 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.11 vpr 62.27 MiB -1 -1 0.12 17080 1 0.02 -1 -1 30020 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 13 12 149 129 1 73 29 5 5 25 clb auto 23.7 MiB 2.65 192 381 127 251 3 62.3 MiB 0.01 0.00 3.48998 -53.0292 -3.48998 3.48998 0.02 0.000338674 0.000314303 0.00490093 0.0046428 34 503 31 151211 100808 45067.1 1802.68 0.38 0.116405 0.0970984 2028 7167 -1 407 20 431 625 24178 11392 5.07146 5.07146 -74.1695 -5.07146 0 0 54748.7 2189.95 0.00 0.03 0.01 -1 -1 0.00 0.0158522 0.0139123 25 38 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.47 vpr 62.56 MiB -1 -1 0.13 17224 1 0.02 -1 -1 29968 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 15 14 196 165 1 95 35 5 5 25 clb auto 24.0 MiB 1.88 286 2714 768 1894 52 62.6 MiB 0.04 0.00 3.87456 -65.1837 -3.87456 3.87456 0.02 0.000509721 0.000473947 0.025612 0.0239231 44 581 22 151211 151211 54748.7 2189.95 0.40 0.154659 0.132163 2196 9177 -1 434 20 573 829 28510 12964 3.86328 3.86328 -73.8872 -3.86328 0 0 71025.7 2841.03 0.01 0.03 0.01 -1 -1 0.01 0.0199185 0.0175684 37 51 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.20 vpr 62.68 MiB -1 -1 0.15 17364 1 0.03 -1 -1 30268 -1 -1 6 17 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 17 16 251 206 1 122 39 5 5 25 clb auto 24.6 MiB 2.39 416 1887 582 1291 14 62.7 MiB 0.03 0.00 4.05904 -79.8186 -4.05904 4.05904 0.02 0.000532613 0.000494824 0.0181598 0.017006 46 735 41 151211 151211 57775.2 2311.01 0.60 0.221478 0.187165 2220 9391 -1 643 20 796 1230 51124 23938 4.73925 4.73925 -98.8727 -4.73925 0 0 73020.3 2920.81 0.01 0.05 0.01 -1 -1 0.01 0.0244756 0.0215782 50 66 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 3.77 vpr 63.00 MiB -1 -1 0.15 17580 1 0.03 -1 -1 30304 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 19 18 308 249 1 148 46 6 6 36 clb auto 24.8 MiB 2.03 445 2342 523 1770 49 63.0 MiB 0.04 0.00 4.80297 -97.7905 -4.80297 4.80297 0.05 0.000635601 0.000590543 0.021547 0.020168 48 1100 30 403230 226817 104013. 2889.24 0.40 0.154133 0.13247 3910 18599 -1 788 22 950 1415 49803 19805 6.26666 6.26666 -116.462 -6.26666 0 0 131137. 3642.71 0.01 0.05 0.02 -1 -1 0.01 0.0310375 0.0274329 63 83 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.50 vpr 61.94 MiB -1 -1 0.09 17516 1 0.02 -1 -1 30028 -1 -1 3 9 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63428 9 8 75 70 1 34 20 5 5 25 clb auto 23.3 MiB 0.50 88 74 35 39 0 61.9 MiB 0.01 0.00 2.64007 -29.3871 -2.64007 2.64007 0.02 0.000193184 0.000179032 0.00152567 0.00145934 38 209 14 151211 75605.7 48493.3 1939.73 0.19 0.0481005 0.0395297 2100 8065 -1 140 7 94 107 3384 1658 2.87707 2.87707 -33.0324 -2.87707 0 0 61632.8 2465.31 0.00 0.01 0.01 -1 -1 0.00 0.00552764 0.00502737 13 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 3.42 vpr 62.11 MiB -1 -1 0.14 17680 1 0.02 -1 -1 30212 -1 -1 2 11 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 11 10 108 97 1 49 23 4 4 16 clb auto 23.6 MiB 2.30 116 151 53 75 23 62.1 MiB 0.01 0.00 3.45122 -42.8784 -3.45122 3.45122 0.01 0.000258737 0.000240187 0.00257917 0.00245554 36 251 31 50403.8 50403.8 22423.4 1401.47 0.20 0.0729551 0.060517 1036 3262 -1 161 14 154 170 4989 2978 3.92522 3.92522 -48.6612 -3.92522 0 0 28178.5 1761.16 0.00 0.02 0.00 -1 -1 0.00 0.00971238 0.00859034 15 27 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 5.46 vpr 62.34 MiB -1 -1 0.16 17804 1 0.02 -1 -1 30060 -1 -1 6 13 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 13 12 149 129 1 69 31 5 5 25 clb auto 23.7 MiB 4.14 173 847 227 595 25 62.3 MiB 0.02 0.00 3.49758 -52.4024 -3.49758 3.49758 0.02 0.00033925 0.000315509 0.00778096 0.00731691 46 367 29 151211 151211 57775.2 2311.01 0.32 0.113445 0.0949541 2220 9391 -1 257 11 244 295 9674 4548 3.49231 3.49231 -56.1098 -3.49231 0 0 73020.3 2920.81 0.01 0.02 0.01 -1 -1 0.01 0.0112246 0.0100608 24 38 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.39 vpr 62.64 MiB -1 -1 0.14 17680 1 0.03 -1 -1 30188 -1 -1 6 15 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 15 14 196 165 1 94 35 5 5 25 clb auto 24.2 MiB 2.06 280 1973 437 1489 47 62.6 MiB 0.03 0.00 3.87456 -65.034 -3.87456 3.87456 0.02 0.000423915 0.000393946 0.0170551 0.0159481 46 568 26 151211 151211 57775.2 2311.01 0.36 0.128482 0.109181 2220 9391 -1 433 18 426 716 22285 10128 3.95872 3.95872 -74.6819 -3.95872 0 0 73020.3 2920.81 0.01 0.03 0.01 -1 -1 0.01 0.0185495 0.0164357 37 51 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 5.04 vpr 62.52 MiB -1 -1 0.17 17892 1 0.03 -1 -1 30308 -1 -1 5 17 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 17 16 251 206 1 124 38 5 5 25 clb auto 24.1 MiB 3.49 388 983 335 639 9 62.5 MiB 0.02 0.00 3.97994 -77.3306 -3.97994 3.97994 0.02 0.000533426 0.000495609 0.0112804 0.0106247 48 694 38 151211 126010 59785.0 2391.40 0.46 0.167348 0.141322 2244 9614 -1 509 21 641 958 28775 13054 4.74452 4.74452 -87.1934 -4.74452 0 0 75076.4 3003.05 0.01 0.04 0.01 -1 -1 0.01 0.0251856 0.022136 47 66 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 5.61 vpr 62.80 MiB -1 -1 0.13 17948 1 0.03 -1 -1 30364 -1 -1 7 19 0 -1 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 19 18 308 249 1 142 44 6 6 36 clb auto 24.4 MiB 3.78 448 1507 414 1087 6 62.8 MiB 0.03 0.00 4.8135 -97.4436 -4.8135 4.8135 0.05 0.000626375 0.000581574 0.0158934 0.014926 50 888 22 403230 176413 107229. 2978.57 0.66 0.195576 0.166921 3946 19047 -1 788 17 763 1295 51979 19940 5.45496 5.45496 -117.79 -5.45496 0 0 134937. 3748.26 0.01 0.05 0.02 -1 -1 0.01 0.0259613 0.0231126 55 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan_s10/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan_s10/config/golden_results.txt index db05753eea8..04284eca4ae 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan_s10/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan_s10/config/golden_results.txt @@ -1,2 +1,2 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_MLAB num_DSP num_M20K 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 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 total_internal_heap_pushes total_internal_heap_pops total_external_heap_pushes total_external_heap_pops total_external_SOURCE_pushes total_external_SOURCE_pops total_internal_SOURCE_pushes total_internal_SOURCE_pops total_external_SINK_pushes total_external_SINK_pops total_internal_SINK_pushes total_internal_SINK_pops total_external_IPIN_pushes total_external_IPIN_pops total_internal_IPIN_pushes total_internal_IPIN_pops total_external_OPIN_pushes total_external_OPIN_pops total_internal_OPIN_pushes total_internal_OPIN_pops total_external_CHANX_pushes total_external_CHANX_pops total_internal_CHANX_pushes total_internal_CHANX_pops total_external_CHANY_pushes total_external_CHANY_pops total_internal_CHANY_pushes total_internal_CHANY_pops rt_node_SOURCE_pushes rt_node_SINK_pushes rt_node_IPIN_pushes rt_node_OPIN_pushes rt_node_CHANX_pushes rt_node_CHANY_pushes rt_node_SOURCE_high_fanout_pushes rt_node_SINK_high_fanout_pushes rt_node_IPIN_high_fanout_pushes rt_node_OPIN_high_fanout_pushes rt_node_CHANX_high_fanout_pushes rt_node_CHANY_high_fanout_pushes rt_node_SOURCE_entire_tree_pushes rt_node_SINK_entire_tree_pushes rt_node_IPIN_entire_tree_pushes rt_node_OPIN_entire_tree_pushes rt_node_CHANX_entire_tree_pushes rt_node_CHANY_entire_tree_pushes adding_all_rt adding_high_fanout_rt total_number_of_adding_all_rt_from_calling_high_fanout_rt 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 -stratix10_arch.timing.xml murax_stratix10_arch_timing.blif common 14.28 vpr 381.81 MiB 35 77 0 0 8 0 success v8.0.0-8489-gee0c51efe-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-08-29T18:42:21 betzgrp-wintermute.eecg.utoronto.ca /home/talaeikh/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 390972 18 17 2338 2195 1 2050 120 17 13 221 io_cell auto 343.5 MiB 6.13 12278 381.8 MiB 0.59 0.01 3.37 -2592.48 -2.37 3.37 0.09 0.00407343 0.00272189 0.182811 0.113433 13735 6.70982 4072 1.98925 8062 18942 11712783 1396250 0 0 11712783 1396250 18942 17141 0 0 92985 86075 0 0 127614 107128 0 0 661766 495171 0 0 5901356 504481 0 0 4910120 186254 0 0 18942 0 0 21692 34855 39608 0 0 0 0 0 0 18942 0 0 21692 34855 39608 231745 0 0 0 0 3.37726e+06 15281.7 20 52540 541133 -1 3.275 3.275 -3107.18 -2.275 0 0 0.89 -1 -1 381.8 MiB 1.66 0.352687 0.24384 381.8 MiB -1 1.39 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_MLAB num_DSP num_M20K 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 +stratix10_arch.timing.xml murax_stratix10_arch_timing.blif common 18.76 vpr 381.10 MiB 35 81 0 0 8 0 success v8.0.0-11333-g6a44da44e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T20:37:10 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 390248 18 17 2338 2195 1 2048 124 17 13 221 io_cell auto 340.2 MiB 7.40 11993 12793 2027 9633 1133 381.1 MiB 0.68 0.01 3.53131 -3315.03 -2.53131 3.53131 0.00 0.0063198 0.0052349 0.319872 0.278146 13741 6.71932 4058 1.98435 8350 20021 12585105 1465964 0 0 3.37726e+06 15281.7 56 52540 541133 -1 3.067 3.067 -3019.02 -2.067 0 0 1.25 -1 -1 381.1 MiB 2.36 1.01657 0.879494 381.1 MiB -1 1.18 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_cin_tie_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_cin_tie_off/config/golden_results.txt index 752645ed852..31cfe86aeed 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_cin_tie_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_cin_tie_off/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 0.79 vpr 63.87 MiB 0.01 5888 -1 -1 1 0.01 -1 -1 35788 -1 -1 3 9 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65400 9 8 71 66 1 38 20 5 5 25 clb auto 25.5 MiB 0.37 92 533 191 336 6 63.9 MiB 0.01 0.00 2.68643 -29.137 -2.68643 2.68643 0.02 8.2144e-05 7.2856e-05 0.00237544 0.0021744 30 227 22 151211 75605.7 41321.0 1652.84 0.04 0.0126902 0.0110001 1980 6498 -1 169 16 163 206 7186 3808 3.17601 3.17601 -36.3581 -3.17601 0 0 50368.7 2014.75 0.00 0.01 0.00 -1 -1 0.00 0.00456626 0.00419889 14 16 16 6 0 0 - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 2.36 vpr 65.32 MiB 0.01 6272 -1 -1 1 0.01 -1 -1 36276 -1 -1 8 19 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 19 18 299 240 1 145 45 6 6 36 clb auto 27.1 MiB 1.55 462 2285 923 1337 25 65.3 MiB 0.02 0.00 4.80824 -97.5117 -4.80824 4.80824 0.04 0.00020293 0.000179496 0.00870172 0.00796213 52 1249 37 403230 201615 110337. 3064.92 0.25 0.0741707 0.0650344 4014 20275 -1 848 16 808 1267 49754 18920 4.8522 4.8522 -106.315 -4.8522 0 0 143382. 3982.83 0.01 0.02 0.01 -1 -1 0.01 0.0135336 0.012663 62 81 85 13 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.41 vpr 62.15 MiB 0.03 6196 -1 -1 1 0.04 -1 -1 30096 -1 -1 3 9 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 9 8 71 66 1 35 20 5 5 25 clb auto 23.6 MiB 0.40 92 155 54 99 2 62.1 MiB 0.01 0.00 2.68643 -28.5255 -2.68643 2.68643 0.03 0.000279598 0.000259267 0.00285293 0.00269635 20 257 23 151211 75605.7 29112.5 1164.50 0.18 0.0562252 0.0490659 1812 4729 -1 263 19 256 334 13283 7093 3.63443 3.63443 -46.8377 -3.63443 0 0 37105.9 1484.24 0.00 0.02 0.01 -1 -1 0.00 0.0121492 0.0108578 14 17 16 6 0 0 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 4.25 vpr 63.22 MiB 0.03 6356 -1 -1 1 0.03 -1 -1 30516 -1 -1 8 19 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 19 18 299 240 1 150 45 6 6 36 clb auto 24.8 MiB 2.60 509 3965 1656 2255 54 63.2 MiB 0.08 0.00 4.80824 -97.652 -4.80824 4.80824 0.07 0.00104469 0.00097299 0.0551095 0.0514421 50 1082 29 403230 201615 107229. 2978.57 0.47 0.240404 0.217708 3946 19047 -1 991 21 951 1468 70705 27211 5.13556 5.13556 -122.452 -5.13556 0 0 134937. 3748.26 0.01 0.08 0.03 -1 -1 0.01 0.0468224 0.0427605 62 82 85 13 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt index ffbc6a68d97..d7326037de0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt @@ -1,9 +1,9 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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_global_nets num_routed_nets -timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 2.93 vpr 373.06 MiB 0.14 20488 -1 -1 1 0.02 -1 -1 33464 -1 -1 1 2 -1 -1 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76402 2 1 3 4 1 3 4 3 3 9 -1 auto 49.4 MiB 0.02 4 9 3 5 1 184.5 MiB 0.01 0.00 0.55447 -0.91031 -0.55447 0.55447 0.00 0.000175279 0.000165491 0.000976401 0.000767979 -1 2 4 18000 18000 14049.7 1561.07 0.01 0.00449048 0.00368003 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 1.28 vpr 188.73 MiB 0.14 20620 -1 -1 1 0.02 -1 -1 33596 -1 -1 1 2 -1 -1 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77305 2 1 3 4 1 3 4 3 3 9 -1 auto 49.8 MiB 0.02 6 9 3 3 3 184.7 MiB 0.01 0.00 0.48631 -0.91031 -0.48631 0.48631 0.00 0.000179683 0.000169331 0.00104574 0.000777636 -1 4 3 18000 18000 15707.9 1745.32 0.01 0.00434022 0.00346833 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 -timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 37.69 odin 761.83 MiB 14.13 780112 -1 -1 2 1.41 -1 -1 54088 -1 -1 155 5 -1 -1 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67103 5 156 191 347 1 163 316 15 15 225 clb auto 72.2 MiB 1.21 22 86316 62090 3287 20939 314.4 MiB 0.1654 0.11 1.49664 -15.129 -1.49664 1.49664 0.00 0.00426637 0.00401077 0.352304 0.330517 -1 30 6 3.042e+06 2.79e+06 863192. 3836.41 0.18 0.426089 0.399481 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 -timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 37.85 odin 761.64 MiB 14.27 779924 -1 -1 2 1.37 -1 -1 54552 -1 -1 155 5 -1 -1 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67222 5 156 191 347 1 163 316 15 15 225 clb auto 71.9 MiB 1.14 25 86316 61881 3554 20881 315.0 MiB 0.167 0.10 1.47767 -14.8876 -1.47767 1.47767 0.00 0.00427632 0.00401248 0.356421 0.332972 -1 53 7 3.042e+06 2.79e+06 892591. 3967.07 0.20 0.438475 0.409721 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 -timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 6.72 vpr 218.05 MiB 2.19 38292 -1 -1 1 0.02 -1 -1 33576 -1 -1 1 2 0 0 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 2 1 3 4 1 3 4 3 3 9 -1 auto 76.3 MiB 0.03 4 9 3 5 1 213.1 MiB 0.01 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 0.000167702 0.000158607 0.000975812 0.00076565 -1 2 3 53894 53894 12370.0 1374.45 0.01 0.00428013 0.00347708 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 6.85 vpr 218.27 MiB 2.22 38424 -1 -1 1 0.02 -1 -1 33516 -1 -1 1 2 0 0 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67051 2 1 3 4 1 3 4 3 3 9 -1 auto 76.6 MiB 0.03 6 9 3 3 3 213.5 MiB 0.01 0.00 0.48631 -0.90831 -0.48631 0.48631 0.00 0.000179672 0.000169578 0.00106215 0.000790093 -1 4 2 53894 53894 14028.3 1558.70 0.01 0.00420473 0.00335158 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 -timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 109.92 odin 592.27 MiB 9.47 606488 -1 -1 2 0.15 -1 -1 37288 -1 -1 32 311 15 0 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110016 311 156 972 1128 1 953 514 28 28 784 memory auto 194.9 MiB 0.5255 8852 208372 78139 120196 10037 513.9 MiB 2.052 0.47 4.11307 -4320.89 -4.11307 4.11307 0.02 0.112519 0.10601 11.801 11.1176 -1 13295 15 4.25198e+07 9.94461e+06 2.96205e+06 3778.13 0.496 15.7544 14.9174 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 -timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 111.57 odin 592.08 MiB 9.49 606288 -1 -1 2 0.16 -1 -1 37464 -1 -1 32 311 15 0 success 5941692-dirty release IPO VTR_ASSERT_LEVEL=3 sanitizers GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-08-27T23:00:35 gh-actions-runner-vtr-auto-spawned3 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110642 311 156 972 1128 1 953 514 28 28 784 memory auto 195.1 MiB 0.527 8741 214546 82147 122429 9970 513.6 MiB 2.10 0.47 4.83167 -3665.82 -4.83167 4.83167 0.02 0.112604 0.106159 12.0753 11.3955 -1 13585 17 4.25198e+07 9.94461e+06 3.02951e+06 3864.17 0.536 16.4333 15.5853 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.39 vpr 55.65 MiB 0.01 5304 -1 -1 1 0.02 -1 -1 29860 -1 -1 1 2 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 56988 2 1 3 4 1 3 4 3 3 9 -1 auto 17.0 MiB 0.00 4 9 3 5 1 55.7 MiB 0.00 0.00 0.55447 -0.91031 -0.55447 0.55447 0.00 1.8112e-05 1.3932e-05 0.000106888 8.4131e-05 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00149512 0.00141287 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.38 vpr 55.80 MiB 0.01 5568 -1 -1 1 0.02 -1 -1 29836 -1 -1 1 2 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 57136 2 1 3 4 1 3 4 3 3 9 -1 auto 17.1 MiB 0.00 6 9 3 3 3 55.8 MiB 0.00 0.00 0.48631 -0.91031 -0.48631 0.48631 0.00 1.786e-05 1.3541e-05 0.000108501 8.4499e-05 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.00125946 0.00117972 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 4.57 odin 57.74 MiB 0.44 59128 -1 -1 2 1.00 -1 -1 50540 -1 -1 155 5 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 59096 5 156 191 347 1 163 316 15 15 225 clb auto 19.0 MiB 0.05 24 86316 62042 3302 20972 57.7 MiB 0.17 0.00 1.49664 -15.0848 -1.49664 1.49664 0.00 0.000746 0.000696457 0.0607321 0.0565964 -1 47 5 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0720555 0.0669855 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 5.13 odin 57.83 MiB 0.45 59220 -1 -1 2 0.99 -1 -1 50572 -1 -1 155 5 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 59132 5 156 191 347 1 163 316 15 15 225 clb auto 19.1 MiB 0.05 25 85241 61080 3527 20634 57.7 MiB 0.17 0.00 1.47767 -14.6118 -1.47767 1.47767 0.00 0.000728861 0.000679413 0.0591504 0.0549881 -1 53 7 3.042e+06 2.79e+06 892591. 3967.07 0.02 0.0725828 0.0673116 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.43 vpr 61.20 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 29764 -1 -1 1 2 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62672 2 1 3 4 1 3 4 3 3 9 -1 auto 22.7 MiB 0.00 4 9 3 5 1 61.2 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.7649e-05 1.3505e-05 0.000104171 8.1619e-05 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00133506 0.00125459 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.41 vpr 61.33 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 29968 -1 -1 1 2 0 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62800 2 1 3 4 1 3 4 3 3 9 -1 auto 22.8 MiB 0.00 6 9 3 3 3 61.3 MiB 0.00 0.00 0.48631 -0.90831 -0.48631 0.48631 0.00 1.7971e-05 1.3339e-05 0.000105105 7.9721e-05 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00124985 0.00117578 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 5.57 vpr 68.89 MiB 0.19 16692 -1 -1 2 0.14 -1 -1 33648 -1 -1 32 311 15 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70540 311 156 972 1128 1 953 514 28 28 784 memory auto 29.1 MiB 0.41 9073 200140 73604 116694 9842 68.9 MiB 1.48 0.02 4.11528 -4377.89 -4.11528 4.11528 0.00 0.00892116 0.00789175 0.893716 0.790022 -1 13615 17 4.25198e+07 9.94461e+06 2.96205e+06 3778.13 0.63 1.23919 1.10313 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 5.78 vpr 68.87 MiB 0.19 16732 -1 -1 2 0.13 -1 -1 33696 -1 -1 32 311 15 0 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70524 311 156 972 1128 1 953 514 28 28 784 memory auto 29.1 MiB 0.45 8245 202198 67541 121665 12992 68.9 MiB 1.50 0.02 3.98528 -3538.17 -3.98528 3.98528 0.00 0.00892513 0.00789066 0.899827 0.793649 -1 12975 16 4.25198e+07 9.94461e+06 3.02951e+06 3864.17 0.62 1.22959 1.0924 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/apex2_block_locations.place b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/apex2_block_locations.place index 2b9d43ac328..39932395859 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/apex2_block_locations.place +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/apex2_block_locations.place @@ -1,183 +1,180 @@ -#block name x y subblk block number -#---------- -- -- ------ ------------ -o_1_ 5 2 5 #0 -o_2_ 2 1 1 #1 -o_0_ 3 4 4 #2 -n_n1827 2 2 5 #3 -n_n1829 3 1 2 #4 -n_n1812 1 1 5 #5 -n_n1866 1 2 2 #6 -n_n1865 1 2 1 #7 -[493] 4 4 0 #8 -n_n544 4 4 4 #9 -n_n416 3 1 3 #10 -n_n394 2 1 5 #11 -n_n391 2 1 2 #12 -n_n300 2 2 1 #13 -[260] 3 5 3 #14 -n_n437 3 3 5 #15 -[223] 3 3 2 #16 -[79] 2 5 4 #17 -[410] 3 4 2 #18 -[516] 3 5 4 #19 -[245] 3 5 1 #20 -[340] 2 4 1 #21 -[432] 3 5 0 #22 -[80] 4 4 3 #23 -[541] 4 3 5 #24 -n_n309 2 1 0 #25 -[8] 4 5 5 #26 -[546] 4 4 2 #27 -n_n706 1 2 5 #28 -[261] 3 2 5 #29 -[463] 4 2 3 #30 -n_n1575 4 4 5 #31 -n_n1571 3 4 3 #32 -[132] 4 5 3 #33 -[355] 3 4 0 #34 -[214] 3 3 4 #35 -[267] 4 3 2 #36 -n_n329 3 2 0 #37 -[420] 5 4 5 #38 -n_n849 3 2 2 #39 -[478] 3 4 5 #40 -[578] 4 1 5 #41 -[253] 3 2 1 #42 -[4] 4 1 0 #43 -[56] 1 2 3 #44 -[226] 1 1 4 #45 -[282] 1 4 1 #46 -[377] 1 1 1 #47 -[71] 3 1 1 #48 -[319] 4 2 0 #49 -[233] 5 3 5 #50 -[246] 4 3 1 #51 -[301] 2 5 5 #52 -[608] 3 3 3 #53 -[21] 2 1 4 #54 -[311] 2 3 3 #55 -[344] 2 2 3 #56 -[310] 2 2 0 #57 -[315] 1 3 0 #58 -[29] 3 3 0 #59 -[273] 2 4 3 #60 -n_n1690 5 3 3 #61 -[383] 5 2 0 #62 -[390] 2 2 2 #63 -[705] 3 3 1 #64 -[41] 4 3 3 #65 -[351] 4 1 1 #66 -[484] 4 2 1 #67 -[437] 4 2 4 #68 -[349] 1 3 4 #69 -[65] 5 4 3 #70 -[402] 5 4 1 #71 -[521] 4 1 4 #72 -[767] 5 2 4 #73 -[129] 2 5 3 #74 -[133] 2 3 1 #75 -[234] 5 3 1 #76 -[427] 4 5 0 #77 -[868] 3 5 2 #78 -[906] 5 3 0 #79 -[919] 2 3 0 #80 -[1253] 1 2 4 #81 -[1283] 1 3 5 #82 -[1340] 3 1 0 #83 -[1382] 2 1 3 #84 -[1404] 2 2 4 #85 -[1417] 3 1 5 #86 -[1534] 5 2 2 #87 -[1542] 4 5 4 #88 -[1615] 5 4 0 #89 -[6947] 1 4 3 #90 -[7159] 4 2 2 #91 -[7165] 5 5 5 #92 -[7191] 5 3 4 #93 -[7319] 2 4 2 #94 -[7321] 1 4 2 #95 -[7352] 1 2 0 #96 -[7388] 3 2 3 #97 -[7423] 3 2 4 #98 -[7428] 3 1 4 #99 -[7466] 1 5 4 #100 -[7782] 5 5 1 #101 -[7822] 4 2 5 #102 -[7885] 3 4 1 #103 -[7888] 3 5 5 #104 -[7942] 4 4 1 #105 -[7997] 4 3 4 #106 -[50] 2 3 4 #107 -[288] 5 2 1 #108 -[539] 1 4 4 #109 -[275] 5 4 4 #110 -[503] 1 1 2 #111 -n_n1582 2 4 5 #112 -[252] 5 4 2 #113 -[196] 1 4 0 #114 -[365] 2 3 2 #115 -[492] 4 3 0 #116 -[616] 1 5 3 #117 -[614] 1 5 0 #118 -[55] 5 3 2 #119 -[75] 2 3 5 #120 -[663] 2 4 0 #121 -[708] 5 5 2 #122 -n_n1816 1 1 3 #123 -[745] 1 3 2 #124 -[771] 4 1 3 #125 -[788] 1 3 3 #126 -[802] 4 5 1 #127 -[345] 1 4 5 #128 -[635] 4 1 2 #129 -[759] 2 4 4 #130 -[7031] 5 5 3 #131 -[7969] 2 5 2 #132 -[446] 1 5 5 #133 -[634] 5 5 4 #134 -[1137] 5 1 4 #135 -[1152] 1 1 0 #136 -[7750] 5 2 3 #137 -[7317] 5 1 2 #138 -[6910] 5 1 1 #139 -out:o_1_ 6 2 1 #140 -out:o_2_ 1 0 6 #141 -out:o_0_ 4 6 7 #142 -i_30_ 0 3 1 #143 -i_20_ 6 4 4 #144 -i_9_ 2 0 6 #145 -i_10_ 2 6 3 #146 -i_7_ 3 6 5 #147 -i_8_ 2 0 5 #148 -i_5_ 2 0 0 #149 -i_6_ 4 0 2 #150 -i_27_ 3 6 7 #151 -i_14_ 4 6 0 #152 -i_3_ 3 0 5 #153 -i_28_ 3 0 7 #154 -i_13_ 3 0 1 #155 -i_4_ 3 0 0 #156 -i_25_ 2 0 4 #157 -i_12_ 2 6 0 #158 -i_1_ 3 0 2 #159 -i_26_ 0 4 3 #160 -i_11_ 4 0 7 #161 -i_2_ 3 0 6 #162 -i_23_ 4 6 5 #163 -i_18_ 2 0 3 #164 -i_24_ 0 3 7 #165 -i_17_ 6 4 7 #166 -i_0_ 4 0 6 #167 -i_21_ 2 6 4 #168 -i_16_ 4 6 1 #169 -i_22_ 0 2 3 #170 -i_32_ 2 0 1 #171 -i_31_ 3 6 1 #172 -i_34_ 3 6 3 #173 -i_33_ 2 6 7 #174 -i_19_ 3 0 4 #175 -i_36_ 3 6 0 #176 -i_35_ 3 0 3 #177 -i_38_ 0 2 5 #178 -i_29_ 2 6 5 #179 -i_37_ 4 0 0 #180 +#block name x y subblk layer block number +#---------- -- -- ------ ----- ------------ +o_1_ 3 3 5 0 #0 +o_2_ 4 4 5 0 #1 +o_0_ 2 4 2 0 #2 +n_n1827 5 4 3 0 #3 +n_n1829 5 3 0 0 #4 +n_n1812 3 5 2 0 #5 +n_n1866 5 2 3 0 #6 +n_n1865 5 4 2 0 #7 +[493] 3 2 5 0 #8 +n_n544 3 1 0 0 #9 +n_n416 4 4 3 0 #10 +n_n394 4 5 0 0 #11 +n_n391 4 5 5 0 #12 +n_n300 4 5 3 0 #13 +[260] 2 3 0 0 #14 +n_n437 4 2 4 0 #15 +[223] 1 1 4 0 #16 +[79] 1 3 5 0 #17 +[410] 1 1 2 0 #18 +[516] 1 3 3 0 #19 +[245] 1 1 0 0 #20 +[340] 2 4 0 0 #21 +[432] 2 3 2 0 #22 +[80] 2 1 4 0 #23 +[541] 1 1 1 0 #24 +n_n309 3 5 0 0 #25 +[8] 1 3 1 0 #26 +[546] 2 2 0 0 #27 +n_n706 5 4 4 0 #28 +[261] 5 4 0 0 #29 +[463] 3 3 0 0 #30 +n_n1575 1 2 0 0 #31 +n_n1571 2 1 0 0 #32 +[132] 1 4 2 0 #33 +[355] 2 1 1 0 #34 +[214] 2 2 2 0 #35 +[267] 2 2 1 0 #36 +n_n329 5 2 4 0 #37 +[420] 1 2 1 0 #38 +n_n849 5 4 1 0 #39 +[478] 1 1 3 0 #40 +[578] 5 5 3 0 #41 +[253] 4 3 3 0 #42 +[4] 3 4 5 0 #43 +[56] 4 4 1 0 #44 +[226] 4 4 0 0 #45 +[282] 4 3 1 0 #46 +[71] 3 5 4 0 #47 +[319] 3 4 1 0 #48 +[233] 3 1 3 0 #49 +[246] 3 1 2 0 #50 +[301] 1 3 2 0 #51 +[608] 2 2 3 0 #52 +[21] 5 5 2 0 #53 +[311] 4 2 1 0 #54 +[344] 5 3 1 0 #55 +[310] 5 4 5 0 #56 +[315] 4 3 2 0 #57 +[29] 2 4 3 0 #58 +[273] 2 1 5 0 #59 +n_n1690 3 3 2 0 #60 +[383] 3 2 3 0 #61 +[390] 4 3 5 0 #62 +[705] 2 2 5 0 #63 +[41] 3 2 4 0 #64 +[351] 3 4 2 0 #65 +[262] 5 5 0 0 #66 +[484] 3 4 0 0 #67 +[437] 1 1 5 0 #68 +[65] 1 2 2 0 #69 +[221] 2 2 4 0 #70 +[402] 2 1 3 0 #71 +[521] 3 5 1 0 #72 +[767] 3 2 0 0 #73 +[129] 1 4 5 0 #74 +[133] 2 4 5 0 #75 +[234] 2 4 4 0 #76 +[868] 3 5 5 0 #77 +[904] 2 3 4 0 #78 +[906] 4 2 5 0 #79 +[919] 1 2 4 0 #80 +[1283] 4 5 4 0 #81 +[1340] 5 2 1 0 #82 +[1382] 4 5 1 0 #83 +[1404] 5 3 4 0 #84 +[1417] 5 5 4 0 #85 +[1534] 3 3 3 0 #86 +[1615] 1 4 3 0 #87 +[6947] 2 4 1 0 #88 +[7082] 3 1 4 0 #89 +[7159] 2 3 1 0 #90 +[7191] 3 2 1 0 #91 +[7224] 4 2 3 0 #92 +[7319] 4 1 1 0 #93 +[7321] 4 4 2 0 #94 +[7351] 4 3 4 0 #95 +[7388] 4 3 0 0 #96 +[7423] 4 5 2 0 #97 +[7466] 2 3 5 0 #98 +[7782] 3 1 1 0 #99 +[7822] 5 2 5 0 #100 +[7885] 2 5 0 0 #101 +[7888] 1 2 3 0 #102 +[7997] 1 4 4 0 #103 +[8027] 3 1 5 0 #104 +[529] 5 3 5 0 #105 +[503] 5 3 3 0 #106 +n_n1582 1 4 0 0 #107 +[252] 1 2 5 0 #108 +[585] 4 1 4 0 #109 +[365] 3 2 2 0 #110 +[492] 3 3 4 0 #111 +[616] 4 1 5 0 #112 +n_n1870 2 1 2 0 #113 +n_n1716 1 3 4 0 #114 +[254] 3 5 3 0 #115 +[429] 3 4 3 0 #116 +[700] 4 2 2 0 #117 +[739] 3 4 4 0 #118 +[745] 5 3 2 0 #119 +[771] 3 3 1 0 #120 +[18] 5 5 1 0 #121 +[95] 4 1 0 0 #122 +[96] 4 4 4 0 #123 +[356] 1 4 1 0 #124 +[606] 4 2 0 0 #125 +[1015] 5 5 5 0 #126 +[1032] 5 2 2 0 #127 +[1066] 2 5 2 0 #128 +[1419] 5 2 0 0 #129 +[1622] 1 3 0 0 #130 +[7046] 2 3 3 0 #131 +[7211] 4 1 3 0 #132 +[7931] 2 5 5 0 #133 +[7004] 2 5 4 0 #134 +[7559] 2 5 3 0 #135 +[6979] 1 5 0 0 #136 +out:o_1_ 3 6 1 0 #137 +out:o_2_ 4 6 3 0 #138 +out:o_0_ 2 6 4 0 #139 +i_30_ 3 0 3 0 #140 +i_20_ 3 0 6 0 #141 +i_9_ 4 6 6 0 #142 +i_10_ 3 6 5 0 #143 +i_7_ 1 0 1 0 #144 +i_8_ 4 6 0 0 #145 +i_5_ 3 6 4 0 #146 +i_6_ 5 6 6 0 #147 +i_27_ 2 0 6 0 #148 +i_14_ 2 0 7 0 #149 +i_3_ 5 6 5 0 #150 +i_28_ 3 0 5 0 #151 +i_13_ 2 0 1 0 #152 +i_4_ 3 6 7 0 #153 +i_25_ 4 6 5 0 #154 +i_12_ 2 0 5 0 #155 +i_1_ 6 5 6 0 #156 +i_26_ 4 0 4 0 #157 +i_11_ 4 6 1 0 #158 +i_2_ 3 6 0 0 #159 +i_23_ 2 0 4 0 #160 +i_18_ 4 6 4 0 #161 +i_24_ 0 3 1 0 #162 +i_17_ 2 0 0 0 #163 +i_0_ 0 4 5 0 #164 +i_21_ 3 0 0 0 #165 +i_16_ 2 0 3 0 #166 +i_22_ 4 0 5 0 #167 +i_32_ 3 0 4 0 #168 +i_31_ 4 0 7 0 #169 +i_34_ 3 0 1 0 #170 +i_33_ 2 6 0 0 #171 +i_19_ 4 6 7 0 #172 +i_36_ 1 0 6 0 #173 +i_35_ 3 0 2 0 #174 +i_38_ 4 6 2 0 #175 +i_29_ 2 0 2 0 #176 +i_37_ 4 0 2 0 #177 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/config/golden_results.txt index 45958e994af..475d1372ae8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_clusters/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fix_clusters_test_arch.xml apex2.blif common 18.03 vpr 71.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 140 38 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72868 38 3 1916 1919 0 1063 181 7 7 49 clb auto 33.7 MiB 3.54 5527 71.2 MiB 0.14 0.02 4.6133 -13.7748 -4.6133 nan 0.25 0.00573579 0.00519393 0.0562715 0.0539004 158 7515 49 1.34735e+06 7.54516e+06 924312. 18863.5 10.74 3.13105 2.69816 7175 18 6150 24757 1252052 378316 5.39096 nan -15.9926 -5.39096 0 0 1.15416e+06 23554.3 0.21 0.84 0.349429 0.316499 +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 +fix_clusters_test_arch.xml apex2.blif common 14.68 vpr 71.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 137 38 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73604 38 3 1916 1919 0 1045 178 7 7 49 clb auto 31.3 MiB 3.98 5376 1178 0 0 1178 71.9 MiB 0.08 0.01 5.09511 -14.9435 -5.09511 nan 0.29 0.00817228 0.00750484 0.0566594 0.053921 158 7378 33 1.34735e+06 7.38348e+06 924312. 18863.5 7.38 2.64386 2.41594 18354 286522 -1 7086 16 5502 22089 1016144 327872 5.60881 nan -16.3788 -5.60881 0 0 1.15416e+06 23554.3 0.19 0.62 0.40 -1 -1 0.19 0.343536 0.319822 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_calc_method/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_calc_method/config/golden_results.txt index c3ec74ba588..5210bd22522 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_calc_method/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_calc_method/config/golden_results.txt @@ -1,5 +1,5 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 36.95 vpr 935.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958248 10 10 168 178 1 62 30 11 8 88 io auto 912.5 MiB 0.71 362 935.8 MiB 0.21 0.00 6.36466 -69.0007 -6.36466 6.36466 3.11 0.000470366 0.000411983 0.0125051 0.0113667 20 944 26 0 0 100248. 1139.18 2.02 0.151698 0.136184 676 14 301 1085 104267 42354 6.94928 6.94928 -76.3954 -6.94928 0 0 125464. 1425.72 0.02 0.04 0.0136629 0.0128446 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 36.20 vpr 935.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958032 10 10 168 178 1 62 30 11 8 88 io auto 912.6 MiB 0.81 343 935.6 MiB 0.11 0.00 6.4007 -69.1003 -6.4007 6.4007 3.05 0.000213876 0.0001801 0.0107055 0.00970349 22 746 17 0 0 110609. 1256.92 2.47 0.129168 0.115717 701 13 294 1183 107132 43375 6.82899 6.82899 -76.2234 -6.82899 0 0 134428. 1527.59 0.02 0.04 0.0130934 0.0123198 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 38.70 vpr 935.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958320 10 10 168 178 1 62 30 11 8 88 io auto 912.9 MiB 0.64 339 935.9 MiB 0.11 0.00 6.41831 -68.7664 -6.41831 6.41831 4.02 0.000282828 0.00023285 0.00987824 0.00885269 18 889 49 0 0 88979.3 1011.13 1.70 0.115792 0.10434 712 16 365 1444 125807 52826 6.72886 6.72886 -75.8629 -6.72886 0 0 114778. 1304.29 0.03 0.07 0.022707 0.0211164 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 39.70 vpr 935.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958080 10 10 168 178 1 62 30 11 8 88 io auto 912.6 MiB 0.70 339 935.6 MiB 0.14 0.00 6.41831 -68.8414 -6.41831 6.41831 4.02 0.000365284 0.000304755 0.0119072 0.0107392 18 889 49 0 0 88979.3 1011.13 3.24 0.19096 0.169734 712 16 365 1444 125807 52826 6.72886 6.72886 -75.8629 -6.72886 0 0 114778. 1304.29 0.02 0.05 0.0139178 0.013013 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 34.95 vpr 975.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999264 10 10 168 178 1 68 30 11 8 88 io auto 953.0 MiB 0.51 420 582 82 470 30 975.8 MiB 0.07 0.00 6.38568 -70.463 -6.38568 6.38568 3.83 0.0011575 0.00107635 0.0190909 0.0179312 20 909 46 0 0 100248. 1139.18 1.00 0.220943 0.20054 11180 23751 -1 803 20 495 1987 182273 69910 6.92851 6.92851 -75.9518 -6.92851 0 0 125464. 1425.72 0.03 0.12 0.10 -1 -1 0.03 0.0520487 0.047733 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 36.19 vpr 975.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999352 10 10 168 178 1 68 30 11 8 88 io auto 953.1 MiB 0.51 395 582 95 453 34 975.9 MiB 0.10 0.00 6.37094 -69.85 -6.37094 6.37094 3.90 0.00115739 0.00107675 0.0208402 0.0195903 30 698 21 0 0 144567. 1642.81 1.91 0.378306 0.34262 11730 32605 -1 613 13 256 907 102553 34444 6.74537 6.74537 -72.8995 -6.74537 0 0 194014. 2204.70 0.04 0.09 0.13 -1 -1 0.04 0.0384272 0.0355085 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 37.58 vpr 975.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999148 10 10 168 178 1 68 30 11 8 88 io auto 953.0 MiB 0.51 397 720 67 602 51 975.7 MiB 0.08 0.00 6.26392 -69.0334 -6.26392 6.26392 5.22 0.00115722 0.00107709 0.0227346 0.021333 28 756 41 0 0 134428. 1527.59 1.91 0.438049 0.396121 11590 29630 -1 630 13 314 1267 123272 45348 6.70457 6.70457 -73.6326 -6.70457 0 0 173354. 1969.93 0.03 0.09 0.11 -1 -1 0.03 0.0385845 0.0356554 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 38.17 vpr 975.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999148 10 10 168 178 1 68 30 11 8 88 io auto 953.0 MiB 0.50 389 720 68 606 46 975.7 MiB 0.08 0.00 6.38744 -69.2885 -6.38744 6.38744 5.25 0.00115672 0.00107669 0.0224942 0.0210923 30 789 25 0 0 144567. 1642.81 1.85 0.359123 0.324985 11730 32605 -1 641 13 341 1402 154982 50243 6.64135 6.64135 -73.6773 -6.64135 0 0 194014. 2204.70 0.04 0.11 0.13 -1 -1 0.04 0.0387743 0.0358249 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_model/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_model/config/golden_results.txt index 9c4c35e8cbc..b984fa79a61 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_model/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_delay_model/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 36.26 vpr 935.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958152 10 10 168 178 1 62 30 11 8 88 io auto 912.6 MiB 0.63 362 935.7 MiB 0.11 0.00 6.36466 -69.0007 -6.36466 6.36466 3.18 0.000286393 0.000239813 0.00865358 0.00773789 20 944 26 0 0 100248. 1139.18 2.14 0.126215 0.108702 676 14 301 1085 104267 42354 6.94928 6.94928 -76.3954 -6.94928 0 0 125464. 1425.72 0.02 0.05 0.013503 0.0126766 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 39.13 vpr 935.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 958304 10 10 168 178 1 62 30 11 8 88 io auto 912.9 MiB 0.64 343 935.8 MiB 0.06 0.00 6.4007 -69.1003 -6.4007 6.4007 2.85 0.000287487 0.000236593 0.00911639 0.00816787 22 746 17 0 0 110609. 1256.92 2.54 0.122086 0.108952 701 13 294 1183 107132 43375 6.82899 6.82899 -76.2234 -6.82899 0 0 134428. 1527.59 0.02 0.04 0.0129558 0.0121334 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 35.53 vpr 975.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999348 10 10 168 178 1 68 30 11 8 88 io auto 953.1 MiB 0.50 420 582 82 470 30 975.9 MiB 0.10 0.00 6.38568 -70.463 -6.38568 6.38568 3.83 0.00116152 0.0010805 0.0194281 0.0182661 20 909 46 0 0 100248. 1139.18 1.11 0.221992 0.201633 11180 23751 -1 803 20 495 1987 182273 69910 6.92851 6.92851 -75.9518 -6.92851 0 0 125464. 1425.72 0.03 0.12 0.10 -1 -1 0.03 0.0523375 0.0480481 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 36.16 vpr 975.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 999260 10 10 168 178 1 68 30 11 8 88 io auto 953.0 MiB 0.50 395 582 95 453 34 975.8 MiB 0.08 0.00 6.37094 -69.85 -6.37094 6.37094 3.91 0.00116292 0.00108314 0.0202559 0.0190173 30 698 21 0 0 144567. 1642.81 1.91 0.378554 0.342874 11730 32605 -1 613 13 256 907 102553 34444 6.74537 6.74537 -72.8995 -6.74537 0 0 194014. 2204.70 0.04 0.09 0.13 -1 -1 0.04 0.0389162 0.0359761 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_differing_modes/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_differing_modes/config/golden_results.txt index c855d371584..c069d48ad7c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_differing_modes/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_differing_modes/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - slicem.xml carry_chain.blif common 2.34 vpr 54.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 55468 1 -1 48 34 1 31 5 4 4 16 BLK_IG-SLICEM auto 15.7 MiB 0.18 65 54.2 MiB 0.05 0.00 0.595425 -5.37295 -0.595425 0.595425 0.01 6.2378e-05 4.9059e-05 0.000610414 0.000543933 27 177 15 59253.6 59253.6 -1 -1 1.13 0.0259603 0.0216552 143 10 67 67 11459 5949 1.17738 1.17738 -12.4508 -1.17738 0 0 -1 -1 0.00 0.27 0.00264873 0.00238278 +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 +slicem.xml carry_chain.blif common 1.22 vpr 55.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 57236 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 17.4 MiB 0.18 70 85 17 60 8 55.9 MiB 0.01 0.00 0.645672 -5.8162 -0.645672 0.645672 0.00 0.000202979 0.000185835 0.00398122 0.00365881 25 269 16 133321 74067 -1 -1 0.60 0.109406 0.0935311 1252 5405 -1 304 21 172 172 62949 28904 1.84417 1.84417 -18.3175 -1.84417 0 0 -1 -1 0.00 0.03 0.01 -1 -1 0.00 0.00917624 0.00807438 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt index 26460c5f0f9..b2d88760d9f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 2.41 vpr 61.02 MiB 0.02 5812 -1 -1 1 0.58 -1 -1 29656 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62488 9 8 75 70 1 35 20 5 5 25 clb auto 22.4 MiB 0.48 85 209 62 145 2 61.0 MiB 0.01 0.00 2.68643 -28.8499 -2.68643 2.68643 0.02 0.000193577 0.000179067 0.00247745 0.00233845 36 204 9 151211 75605.7 46719.2 1868.77 0.12 0.037883 0.0315939 2052 7582 -1 141 12 90 118 3703 1842 2.89265 2.89265 -32.9265 -2.89265 0 0 57775.2 2311.01 0.00 0.01 0.01 -1 -1 0.00 0.00689513 0.00614229 14 18 19 7 0 0 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 7.00 vpr 61.54 MiB 0.03 5872 -1 -1 1 0.58 -1 -1 29736 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 11 10 108 97 1 46 23 4 4 16 clb auto 22.9 MiB 4.99 105 151 48 85 18 61.5 MiB 0.01 0.00 3.44069 -41.5938 -3.44069 3.44069 0.01 0.000258982 0.000240047 0.00274971 0.00262487 34 215 23 50403.8 50403.8 21558.4 1347.40 0.14 0.0590883 0.0493231 1020 3049 -1 163 17 241 316 10449 6378 3.44069 3.44069 -46.5708 -3.44069 0 0 26343.3 1646.46 0.00 0.02 0.01 -1 -1 0.00 0.0108366 0.00950526 14 27 29 8 0 0 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.49 vpr 61.69 MiB 0.03 6024 -1 -1 1 0.58 -1 -1 30148 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63168 13 12 149 129 1 75 29 5 5 25 clb auto 22.8 MiB 2.40 195 645 192 444 9 61.7 MiB 0.02 0.00 3.48998 -52.589 -3.48998 3.48998 0.02 0.000342117 0.000318284 0.00707487 0.00666916 52 403 19 151211 100808 63348.9 2533.96 0.18 0.0737677 0.0625561 2316 10503 -1 307 14 341 420 14028 6216 3.72698 3.72698 -59.3943 -3.72698 0 0 82390.3 3295.61 0.01 0.02 0.01 -1 -1 0.01 0.0127566 0.0113516 25 38 42 9 0 0 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 4.09 vpr 62.02 MiB 0.03 5956 -1 -1 1 0.58 -1 -1 29964 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 15 14 196 165 1 95 35 5 5 25 clb auto 23.2 MiB 1.90 286 3056 860 2105 91 62.0 MiB 0.04 0.00 3.69424 -64.7847 -3.69424 3.69424 0.02 0.000424866 0.000394444 0.0252096 0.0235149 40 595 29 151211 151211 50368.7 2014.75 0.23 0.114222 0.0984262 2124 8279 -1 437 17 562 789 28085 13148 4.36345 4.36345 -80.333 -4.36345 0 0 63348.9 2533.96 0.00 0.03 0.01 -1 -1 0.00 0.0176338 0.0156167 37 51 57 11 0 0 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.09 vpr 61.86 MiB 0.03 6212 -1 -1 1 0.59 -1 -1 29860 -1 -1 5 17 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63340 17 16 251 206 1 119 38 5 5 25 clb auto 23.5 MiB 1.86 402 668 227 439 2 61.9 MiB 0.02 0.00 4.0643 -79.9796 -4.0643 4.0643 0.02 0.000534075 0.000496147 0.00859971 0.00813109 52 683 22 151211 126010 63348.9 2533.96 0.26 0.114134 0.0972372 2316 10503 -1 560 15 525 822 26107 11638 4.75212 4.75212 -93.5848 -4.75212 0 0 82390.3 3295.61 0.01 0.03 0.01 -1 -1 0.01 0.0206421 0.0184345 50 66 75 13 0 0 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 4.58 vpr 62.37 MiB 0.03 6232 -1 -1 1 0.59 -1 -1 30264 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.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 19 18 308 249 1 148 46 6 6 36 clb auto 24.0 MiB 2.03 468 4802 1503 3198 101 62.4 MiB 0.07 0.00 4.80297 -98.1146 -4.80297 4.80297 0.05 0.00063379 0.00058871 0.0407857 0.0380453 50 1242 41 403230 226817 107229. 2978.57 0.43 0.179858 0.155995 3946 19047 -1 875 23 853 1439 55414 21296 6.32056 6.32056 -123.176 -6.32056 0 0 134937. 3748.26 0.01 0.05 0.02 -1 -1 0.01 0.0316187 0.02788 63 83 93 14 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.65 vpr 62.42 MiB 0.02 6244 -1 -1 1 0.03 -1 -1 30092 -1 -1 3 9 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 9 8 75 70 1 36 20 5 5 25 clb auto 23.8 MiB 0.53 81 290 96 193 1 62.4 MiB 0.01 0.00 2.64007 -27.5319 -2.64007 2.64007 0.03 0.000286892 0.000265466 0.00417798 0.00390875 44 134 16 151211 75605.7 54748.7 2189.95 0.27 0.0802385 0.0697674 2196 9177 -1 138 14 129 140 4385 2259 2.64007 2.64007 -32.9995 -2.64007 0 0 71025.7 2841.03 0.01 0.02 0.01 -1 -1 0.01 0.0102672 0.00927022 13 18 19 7 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 3.51 vpr 62.67 MiB 0.03 6144 -1 -1 1 0.02 -1 -1 30152 -1 -1 2 11 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 11 10 108 97 1 47 23 4 4 16 clb auto 24.1 MiB 2.52 110 119 41 58 20 62.7 MiB 0.01 0.00 3.45122 -42.0432 -3.45122 3.45122 0.02 0.00040098 0.000372114 0.00301776 0.00286337 34 232 28 50403.8 50403.8 21558.4 1347.40 0.19 0.0915775 0.0804679 1020 3049 -1 176 19 195 278 7163 4170 3.67968 3.67968 -49.4902 -3.67968 0 0 26343.3 1646.46 0.00 0.03 0.01 -1 -1 0.00 0.0171347 0.0154135 15 27 29 8 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 5.69 vpr 63.01 MiB 0.02 6184 -1 -1 1 0.02 -1 -1 30504 -1 -1 6 13 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 13 12 149 129 1 70 31 5 5 25 clb auto 24.4 MiB 4.28 174 847 168 658 21 63.0 MiB 0.02 0.00 3.51316 -52.7791 -3.51316 3.51316 0.03 0.000536862 0.000499181 0.0116677 0.0109304 62 271 18 151211 151211 75076.4 3003.05 0.48 0.179803 0.159314 2460 12058 -1 233 14 285 358 11388 5337 3.27616 3.27616 -51.4022 -3.27616 0 0 92558.6 3702.35 0.01 0.03 0.02 -1 -1 0.01 0.0186299 0.0169676 24 38 42 9 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.39 vpr 63.38 MiB 0.03 6232 -1 -1 1 0.05 -1 -1 30156 -1 -1 6 15 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64900 15 14 196 165 1 95 35 5 5 25 clb auto 24.9 MiB 2.07 285 2999 874 2055 70 63.4 MiB 0.06 0.00 3.87456 -65.0363 -3.87456 3.87456 0.03 0.000687139 0.000638718 0.0389859 0.0363394 40 532 34 151211 151211 50368.7 2014.75 0.36 0.199043 0.178709 2124 8279 -1 477 17 466 627 22181 10506 4.7677 4.7677 -87.427 -4.7677 0 0 63348.9 2533.96 0.01 0.04 0.01 -1 -1 0.01 0.0271383 0.0247399 37 51 57 11 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 6.05 vpr 62.98 MiB 0.03 6368 -1 -1 1 0.03 -1 -1 30272 -1 -1 5 17 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 17 16 251 206 1 121 38 5 5 25 clb auto 24.5 MiB 4.36 379 1487 482 996 9 63.0 MiB 0.04 0.00 3.96728 -77.1356 -3.96728 3.96728 0.03 0.000871602 0.000811026 0.0241614 0.0226145 48 742 24 151211 126010 59785.0 2391.40 0.69 0.320588 0.286689 2244 9614 -1 605 18 747 1183 38449 16968 5.45026 5.45026 -98.8083 -5.45026 0 0 75076.4 3003.05 0.01 0.06 0.02 -1 -1 0.01 0.0358474 0.0326625 46 66 75 13 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 6.11 vpr 63.28 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 30640 -1 -1 7 19 0 -1 success v8.0.0-11333-g6a44da44e-dirty release VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-09-18T21:53:04 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 19 18 308 249 1 143 44 6 6 36 clb auto 24.9 MiB 3.99 474 2970 735 2221 14 63.3 MiB 0.07 0.00 4.80824 -98.35 -4.80824 4.80824 0.07 0.00103694 0.000971623 0.0446737 0.0417246 54 1050 23 403230 176413 113905. 3164.04 0.99 0.406156 0.365609 4050 20995 -1 764 20 820 1386 50371 19216 5.5169 5.5169 -114.471 -5.5169 0 0 146644. 4073.44 0.01 0.07 0.04 -1 -1 0.01 0.0463285 0.0423139 55 83 93 14 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/config.txt index 435cfd187ec..261007d55c4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/config.txt @@ -25,4 +25,4 @@ qor_parse_file=qor_rr_graph.txt # Pass requirements pass_requirements_file=pass_requirements_verify_rr_graph.txt -script_params=-starting_stage vpr -verify_rr_graph -rr_graph_ext .xml -route_chan_width 20 +script_params=-starting_stage vpr -verify_rr_graph -rr_graph_ext .xml -route_chan_width 40